CentOS7修改SSH端口
Posted heqiuyong
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS7修改SSH端口相关的知识,希望对你有一定的参考价值。
一、修改ssh配置文件sshd_config
[[email protected] ~]# vi /etc/ssh/sshd_config
二、防火墙放行
[[email protected] ~]# firewall-cmd --zone=public --add-port=22345/tcp --permanent
[[email protected] ~]# firewall-cmd --reload
三、向SELinux中添加修改的SSH端口
先安装SELinux的管理工具 semanage (如果已经安装了就直接到下一步) :
[[email protected] ~]# yum provides semanage
安装运行semanage所需依赖工具包 policycoreutils-python:
[[email protected] ~]# yum -y install policycoreutils-python
查询当前 ssh 服务端口:
[[email protected] ~]# semanage port -l | grep ssh
向 SELinux 中添加 ssh 端口:
[[email protected] ~]# semanage port -a -t ssh_port_t -p tcp 22345
重启 ssh 服务:
[[email protected] ~]# systemctl restart sshd.service
测试成功后,把22端口注释掉即可
以上是关于CentOS7修改SSH端口的主要内容,如果未能解决你的问题,请参考以下文章