查看ssh端口号_更改centos系统ssh连接端口号
1、修改ssh配置文件sshd_config
[root@VM_0_10_centos ~]# vi /etc/ssh/sshd_config
截图中红色框中的部分,建议先保留22端口号,然后新增自定义端口号
2、防火墙放行
[root@VM_0_10_centos ~]# firewall-cmd –zone=public –add-port=10010/tcp –permanent
[root@VM_0_10_centos ~]# firewall-cmd –reload
3、向SELinux中添加修改的SSH端口
3.1 先安装SELinux的管理工具 semanage (如果已经安装了就直接到下一步)
[root@VM_0_10_centos ~]# yum provides semanage
3.2 安装运行semanage所需依赖工具包 policycoreutils-python:
[root@VM_0_10_centos ~]# yum -y install policycoreutils-python
3.3 查询当前 ssh 服务端口:
[root@VM_0_10_centos ~]# semanage port -lgrep ssh
3.4 向 SELinux 中添加 ssh 端口:
[root@VM_0_10_centos ~]# semanage port -a -t ssh_port_t -p tcp 10010
3.5 重启 ssh 服务:
[root@VM_0_10_centos ~]# systemctl restart sshd.service
测试成功后,把22端口注释掉即可