linux 让ssh只允许指定的用户登录
如何让ssh只允许指定的用户登录
方法1:在/etc/pam.d/sshd文件第一行加入
1auth required pam_listfile.so item=user sense=allow file=/etc/sshusers onerr=fail
然后在/etc下建立sshusers文件,编辑这个文件,加入你允许使用ssh服务的用户名,不用重新启动sshd服务。添加2个用户
1zhangsan
2lisisi
方法2:pam规则也可以写成deny的
1auth required pam_listfile.so item=user sense=deny file=/etc/sshusers onerr=succeed
方法3:pam规则可以使用group限制
1auth required pam_listfile.so item=group sense=allow file=/etc/security/allow_groups onerr=fail
在allow_groups文件按中加入组名,主要一定要加root
方法4:在sshd_config中设置AllowUsers,格式如
1AllowUsers a b c
重启sshd服务,则只有a/b/c3个用户可以登陆
捐赠本站(Donate)
如您感觉文章有用,可扫码捐赠本站!(If the article useful, you can scan the QR code to donate))
- Author: shisekong
- Link: https://blog.361way.com/ssh-allow-appoint-user-login/4281.html
- License: This work is under a 知识共享署名-非商业性使用-禁止演绎 4.0 国际许可协议. Kindly fulfill the requirements of the aforementioned License when adapting or creating a derivative of this work.