CentOS更改ssh默认连接端口
Linux
CentOS更改ssh默认连接端口
2023-01-13 12:14
在使用linux过程中为了安全,我们有可能需要更改ssh默认端口来防止黑客的扫描。我们要知道默认的22端口是不安全的。
首先,使用ssh连接工具登录服务器输入:
vi /etc/ssh/ssh_config将文件修改保存,然后重启ssh服务。
/etc/init.d/sshd restart或
systemctl restart sshd.service第三步,查看防火墙是否开启
service iptables status在防火墙中将你修改后的端口放行
vi /etc/sysconfig/iptablesvi /etc/sysconfig/iptables第四步,在文件中添加放行规则,比如放行8888端口
-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 8888 -j ACCEPT最后,保存配置文件,重启防火墙
service iptables restart
这样ssh默认端口就更改成功了