编辑配置文件

1
vim /etc/ssh/sshd_config

添加一个新的端口

1
2
3
4
5
# If you want to change the port on a SELinux system, you have to tell
# SELinux about this change.
# semanage port -a -t ssh_port_t -p tcp #PORTNUMBER
Port 22
Port 10022

重启服务

1
2
systemctl restart sshd  
shutdown -r now

使用新的端口号登录 如果没有问题再注释掉22端口 如果只有22端口则不需要添加22端口 默认注释即可