当前位置: > Linux服务器 > SSH >

限制IP通过SSH登陆linux服务器

时间:2014-09-18 02:07来源:linux.it.net.cn 作者:it

限制IP通过SSH登陆linux服务器

方法一:
在/etc/hosts.allow输入
(其中192.168.10.88是你要允许登陆ssh的ip,或者是一个网段192.168.10.0/24)
sshd:192.168.10.88:allow

在/etc/hosts.deny输入(表示除了上面允许的,其他的ip   都拒绝登陆ssh)
sshd:ALL

方法二:
使用iptables,例如只允许 10.10.x.10 连接ssh。

复制代码代码如下:
iptables   -A INPUT -p tcp -s 10.10.x.10  --destination-port 22  -j ACCEPT
iptables   -A   INPUT   -p   tcp   --destination-port   22   -j   DROP
(责任编辑:IT)
------分隔线----------------------------