例如 只让192.168.0.7通过ssh连接到服务器
1:vim /etc/hosts.allow 里加入以下:
sshd:192.168.0.7:allow #允许192.168.0.7通过ssh连接
2:vim /etc/hosts.deny 里加入以下:
sshd:ALL #禁止所有IP通过SSH连接
3:service sshd restart #重启sshd服务
本文出自 “夜读才子盼女鬼” 博客,请务必保留此出处http://more3.blog.51cto.com/9929586/1619486
原文地址:http://more3.blog.51cto.com/9929586/1619486