在使用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/iptables
vi /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默认端口就更改成功了