1.编辑sshd_config
vim /etc/ssh/sshd_config
2.在文件内容中找到#Port 22默认端口,修改端口为123,比如:
# Package generated configuration file
# See the sshd_config(5) manpage for details
# What ports, IPs and protocols we listen for
Port 123 #修改端口
注:修改端口不能和已有的服务端口相同。
3.最后输入以下命令重启ssh,使修改生效。
/etc/init.d/ssh restart