linux – 从一个IP /主机名以外的所有IP地址限制root ssh

前端之家收集整理的这篇文章主要介绍了linux – 从一个IP /主机名以外的所有IP地址限制root ssh前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想限制来自除了单个IP地址之外的所有root ssh登录.

我的印象是我只需将其添加到/etc/pam.d/sshd:

  1. account required pam_access.so

这个/etc/security/access.conf:

  1. -:root:ALL EXCEPT IPADDRESS

但这似乎没有奏效.

解决方法

在/ etc / ssh / sshd_config中
  1. # Disable Root login
  2. PermitRootLogin no
  3. #
  4. # [ . . . ]
  5. #
  6. # At the end of the file,add:
  7. #
  8. # Allow Root Login via Key from Admin Bastion
  9. Match Address 10.9.8.7
  10. PermitRootLogin without-password

猜你在找的Linux相关文章