我是靠谱客的博主 靓丽香氛,最近开发中收集的这篇文章主要介绍CentOS下修改远程端口22操作步骤,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

其他参考:阿里云服务器(Linux)如何修改远程登录端口22?

CentOS下修改远程端口22操作步骤

------------------开始-------------------------
一、修改sshd文件端口
 vi /etc/ssh/sshd_config  
 Port 10232
二、防火墙放行
firewall-cmd --list-ports
firewall-cmd --permanent --zone=public --add-port=10232/tcp --permanent
firewall-cmd --permanent --zone=public --add-port= 33193/tcp --permanent

[root@bogon ~]#  

[root@bogon ~]# 更新防火墙  firewall-cmd --reload

 

三、向SELinux中添加修改的SSH端口

先安装SELinux的管理工具 semanage (如果已经安装了就直接到下一步) :

[root@bogon ~]#
yum install semanage 或者
yum provides semanage

 

安装运行semanage所需依赖工具包 policycoreutils-python:

[root@bogon ~]# yum -y install policycoreutils-python

 

查询当前 ssh 服务端口:

[root@bogon ~]# semanage port -l | grep ssh

 


向 SELinux 中添加 ssh 端口:

[root@bogon ~]# semanage port -a -t ssh_port_t -p tcp 10232

 

 重启 ssh 服务:

[root@bogon ~]# systemctl restart sshd.service

----------------结束-------------------------

查看状态:

systemctl status sshd.service

启动服务:

systemctl start sshd.service

重启服务:

systemctl restart sshd.service

开机自启:

systemctl enable sshd.service

 

最后

以上就是靓丽香氛为你收集整理的CentOS下修改远程端口22操作步骤的全部内容,希望文章能够帮你解决CentOS下修改远程端口22操作步骤所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(46)

评论列表共有 0 条评论

立即
投稿
返回
顶部