时间:2020-03-09加入收藏
输入端口确认。再打开防火墙端口:wget https://www.moerats.com/usr/down/sshport.sh
bash sshport.sh
最后重启ssh生效:#如果防火墙使用的iptables(Centos 6),修改端口为8080
iptables -I INPUT -p tcp --dport 8080 -j ACCEPT
service iptables save
service iptables restart
#如果使用的是firewall(CentOS 7)
firewall-cmd --zone=public --add-port=8080/tcp --permanent
firewall-cmd --reload
#CentOS系统
service sshd restart
#Debian/Ubuntu系统
service ssh restart
TGA: 技巧