1、修改配置文件
vim /etc/ssh/sshd_config #修改端口 Port 1234
2、配置防火墙
firewall-cmd --zone=public --add-port=1234/tcp --permanent
firewall-cmd --reload
3、向SELinux中添加SSH端口
#安装SELinux的管理工具 semanage: yum provides semanage #安装运行semanage依赖工具包 policycoreutils-python: yum -y install policycoreutils-python #向SELinux中添加ssh端口: semanage port -a -t ssh_port_t -p tcp 1234 #重启ssh服务: systemctl restart sshd.service #查询当前ssh服务端口: semanage port -l | grep ssh
4、使用xshell工具进行连接