1.修改ssh配置文件
vim /etc/ssh/sshd_config
将 #Port 22 改为 Port 10023(更改的端口号最好在1024~65535间,不和其他服务端口冲突就ok)
2.关闭防火墙
systemctl stop firewalld.service
3.重启ssh服务
systemctl restart sshd.service
4.新建ssh连接10023端口,测试能否连通
ssh -p 10023 test@xxx.xxx.xxx.xxx
5.更改防火墙配置
cp /user/lib/firewalld/service/ssh.xml /etc/firewalld/services/
vim /etc/firewalld/services/ssh.xml
将 port="22" 改为 port="10023"
6.在防火墙中开放ssh端口
firewall-cmd --permanent --add-service=ssh
7.重启防火墙
firewall-cmd --reload