码迷,mamicode.com
首页 > 其他好文 > 详细

Centos 7 修改SSH端口号

时间:2014-08-13 19:08:57      阅读:262      评论:0      收藏:0      [点我收藏+]

标签:style   color   使用   os   strong   ar   art   div   

注意!这里的Centos版本是7

step1 修改/etc/ssh/sshd_config
vi /etc/ssh/sshd_config
#Port 22         //这行去掉#号
Port 20000      //下面添加这一行

step2 修改SELinux
使用以下命令查看当前SElinux 允许的ssh端口:
semanage port -l | grep ssh

添加20000端口到 SELinux
semanage port -a -t ssh_port_t -p tcp 20000

然后确认一下是否添加进去
semanage port -l | grep ssh
如果成功会输出
ssh_port_t                    tcp    20000, 22

step3 重启ssh
systemctl restart sshd.service

Centos 7 修改SSH端口号,布布扣,bubuko.com

Centos 7 修改SSH端口号

标签:style   color   使用   os   strong   ar   art   div   

原文地址:http://blog.csdn.net/jasper_success/article/details/38537049

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!