linux下ssh登录限制ip的方法
vi/etc/hosts.allow
sshd:192.168.0.100:allow//允许IP192.168.0.100登录
sshd:192.168.0.:allow//允许IP192.168.0.网段登录
sshd:all:deny//禁止其他的所有IP登录
或者
sshd:223.227.223.*:allow//允许IP223.227.223.*网段登录
sshd:192.168.0.*:allow//允许IP192.168.0.*网段登录
sshd:all:deny//禁止其他的所有IP登录
fedora下修改后保存后生效
freeBSD限制特定ip的ssh登陆:
1.
#ee/etc/hosts.allow
在ALL:ALL:allow的前面加上
sshd:192.168.0.100:allow
sshd:223.227.223.*:allow
sshd:ALL:deny
2.
修改/etc/ssh/sshd_config
加入
Allowusersadmin@172.16.2.188
意思为
只允许admin从172.16.2.188登陆
FreeBSD改IP,不用重启电脑:
在rc.conf里改完后/etc/netstart