linux下ssh登录限制ip的方法
vi /etc/hosts.allow
sshd:192.168.0.100:allow //允许IP 192.168.0.100 登录
sshd:192.168.0.*:allow //允许IP 192.168.0. 网段登录
sshd:10.*.*.*:allow //允许10段IP地址登录
vi/etc/hosts.deny
sshd:all:deny //禁止其他的所有IP登录
转载于:https://blog.51cto.com/qingzh/1884775