centos设置ssh安全只允许用户从指定的IP登陆

1.编辑文件 /etc/ssh/sshd_config

 vi /etc/ssh/sshd_config

2.root用户只允许在如下ip登录

AllowUsers root@203.212.4.117
AllowUsers root@124.202.206.14

3.重启ssh生效

service sshd restart

4.取消ip登录限制

如果取消ip登录限制,则删除或者#注释AllowUsers项即可

上一篇:执行脚本工具类


下一篇:如何设置ssh安全只允许用户从指定的IP登陆