如何让ssh只允许指定的用户登录:
方法1:在/etc/pam.d/sshd文件 第一行 加入
auth required pam_listfile.so item=user sense=allow file=/etc/sshusers
onerr=fail
然后在/etc下建立sshusers文件,编辑这个文件,加入你允许使用ssh服务的用户名, 不用重新启动sshd服务。
添加2个用户
zhangsan
lisisi
方法2:pam规则也可以写成deny的
auth required pam_listfile.so item=user sense=deny file=/etc/sshusers
onerr=succeed
方法3:pam规则可以使用group限制
auth required pam_listfile.so item=group sense=allow file=/etc/security/allow_groups onerr=fail
在allow_groups文件按中加入组名,主要一定要加root
方法4:在sshd_config中设置AllowUsers,格式如
AllowUsers a b c
重启sshd服务,则只有a/b/c3个用户可以登陆。
Ubuntu 14.04为root帐号开启SSH登录:http://www.linuxdiyf.com/linux/17363.html
Linux下使用ssh登录局域网其他电脑的方法:http://www.linuxdiyf.com/linux/14904.html
Linux主机如何用ssh去登录docker容器的步骤:http://www.linuxdiyf.com/linux/14643.html
在Ubuntu 12.04安装和设置SSH服务:http://www.linuxdiyf.com/linux/14551.html
ubuntu允许远程ssh登录:http://www.linuxdiyf.com/linux/14055.html