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

配置ssh

时间:2015-02-15 12:06:18      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:

 

  首先肯定要先更改ssh的端口号,比如:8899 以及安全选项

gedit /etc/ssh/sshd_config

PermitRootLogin no

MaxAuthTries 3

AllowUsers *****

更改Port参数

Port=8899

然后更改services文件ssh端口号

gedit /etc/services

更改对应ssh的tcp和udp端口 都为8899

ssh             8899/tcp                          # The Secure Shell (SSH) Protocol
ssh             8899/udp                          # The Secure Shell (SSH) Protocol

然后重启sshd服务

service sshd restart

然后防火墙中更改默认的22端口为8899端口

gedit /etc/sysconfig/iptables
-A INPUT -m state --state NEW -m tcp -p tcp --dport 8899 -j ACCEPT

重启防火墙是规则生效

service iptables restart

现在就可以用putty使用8899端口连接了。

配置ssh

标签:

原文地址:http://www.cnblogs.com/waitfate/p/4292689.html

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