修改 /etc/ssh/sshd_config ,在 Port 22 下添加你的端口,并把 Port 22 注释掉
vim /etc/ssh/sshd_config
改为
#Port 22 Port YOUR_PORT
重启ssh
service sshd restart
允许特定端口通过
iptables -I INPUT -p tcp --dport YOUR_PORT -j ACCEPT service iptables save service iptables restart
完工
原文链接:https://www.f2er.com/centos/374737.html