centos ssh端口修改
centos修改ssh端口相比ubuntu多了点步骤 记录一下
一、修改ssh配置文件sshd_config
[root@root ~]# vi /etc/ssh/sshd_config
二、防火墙放行
[root@root ~]# firewall-cmd --zone=public --add-port=22345/tcp --permanent
[root@root ~]# firewall-cmd --reload
或者关闭防火墙
[root@localhost ~]#chkconfig iptables
off
三、向SELinux中添加修改的SSH端口
先安装SELinux的管理工具 semanage (如果有则跳过) :
[root@root ~]# yum provides semanage
安装运行semanage所需依赖工具包 policycoreutils-python:
[root@root ~]# yum -y install policycoreutils-python
查询当前 ssh 服务端口:
[root@root ~]# semanage port -l | grep ssh
向 SELinux 中添加 ssh 端口:
[root@root ~]# semanage port -a -t ssh_port_t -p tcp 22345
重启 ssh 服务:
[root@root ~]# systemctl restart sshd.service
重启完成后
[root@root ~]# lsof -i:新端口号
显示端口有服务占用即可