CentOS 修改 ssh 端口,解决 22 端口占用问题

599人浏览 / 0人评论

参考

https://blog.csdn.net/weixin_44683938/article/details/122228877

操作

# 将 #Port 取消注释,并修改端口为2222
vim /etc/ssh/sshd_config

# 重启ssh
systemctl restart sshd

# 添加到防火墙
firewall-cmd --zone=public --add-port=2222/tcp --permanent

# 重启防火墙
systemctl restart firewalld

# 查看是否添加成功
firewall-cmd --zone=public --list-ports

全部评论