更换ssh端口
1、查看默认端口:netstat -tunlp | grep "ssh"
为了安全起见,我们先备份SSH端口配置文件:
cp /etc/ssh/ssh_config /etc/ssh/ssh_config.bak
cp /etc/ssh/sshd_config /etc/ssh/sshd_config.bak
2、加入端口:vi /etc/ssh/sshd_config
查看防火墙状态
firewall-cmd --state
打开防火墙
systemctl start firewalld
开机时启动firewall
systemctl enable firewalld.service
查看放行端口
firewall-cmd --list-port
3、防火墙放行:firewall-cmd --zone=public --add-port=<端口号>/tcp --permanent
安装SELinux的管理工具 semanage
yum provides semanage
安装运行semanage所需依赖工具包 policycoreutils-python
yum -y install policycoreutils-python
4、向SELinux中添加修改的SSH端口: semanage port -a -t ssh_port_t -p tcp <端口号>
重启ssh服务
systemctl restart sshd