小灰爱小猫 发表于 2011-10-11 22:24:35

ssh限制登录IP修改端口


***限制登录IP修改端口


在/etc/hosts.allow输入
(其中192.168.10.88是你要允许登陆***的ip,或者是一个网段192.168.10.0/24)
***d:192.168.10.88:allow
   
在/etc/hosts.deny输入(表示除了上面允许的,其他的ip   都拒绝登陆***)
***d:ALL
vi /etc/***/***d_config

比如说你只允许1.1.1.1这个IP进入,其它都禁止:
方法1、iptables。
iptables   -A   INPUT   -s   1.1.1.1   --destination-port   22   -j   ACCEPT
iptables   -A   INPUT   --destination   22   -j   DROP
方法2:
vi   /etc/***/***d_config
添加一行:
allowusers   xxx@1.1.1.1
注:xxx为你用来登入服务器的用户名。
页: [1]
查看完整版本: ssh限制登录IP修改端口