CentOS 7下限制ip访问(白名单)
2019-12-19 本文已影响0人
liangzhici
vim /etc/hosts.allow
sshd:192.168.31.109:allow //只允许192.168.31.109登录
vim /etc/hosts.deny
sshd:ALL //开启白名单,只允许192.168.31.109登录
sshd:192.168.31.109:allow //只允许192.168.31.109登录
sshd:ALL //开启白名单,只允许192.168.31.109登录