Centos7 修改/新增ssh默认端口

时间:2022-09-29 06:56:38
修改/etc/ssh/sshd_config
vi /etc/ssh/sshd_config
#Port 22         //这行去掉#号
Port 1022      //下面添加这一行
修改SELinux
使用以下命令查看当前SElinux 允许的ssh端口:
semanage port -l | grep ssh
添加1022端口到 SELinux
semanage port -a -t ssh_port_t -p tcp 1022
确认是否添加成功
semanage port -l | grep ssh
成功的输出
ssh_port_t                    tcp    1022, 22
重启ssh
systemctl restart sshd