服务器之家:专注于服务器技术及软件下载分享
分类导航

云服务器|WEB服务器|FTP服务器|邮件服务器|虚拟主机|服务器安全|DNS服务器|服务器知识|Nginx|IIS|Tomcat|

服务器之家 - 服务器技术 - 服务器知识 - sshd 限制登陆的几种方法总结

sshd 限制登陆的几种方法总结

2021-12-27 16:45oubo 服务器知识

这篇文章主要介绍了sshd 限制登陆的几种方法总结的相关资料,这里说明几种方法并附有实现命令,需要的朋友可以参考下

sshd 限制登陆的几种方法总结

1. 在 /etc/hosts.allow 写:

?
1
2
3
4
/etc/hosts.allow写:
sshd: 1.2.3.4
/etc/hosts.deny 写:
sshd: ALL

 2. 用 iptables 也行:

?
1
2
iptables -I INPUT -p tcp --dport 22 -j DROP
iptables -I INPUT -p tcp --dport 22 -s 1.2.3.4 -j ACCEPT

3. 禁止某个用户通过ssh登录

?
1
2
3
4
5
6
/etc/ssh/sshd_conf添加
AllowUsers 用户名
或者
AllowGroups 组名
或者
DenyUsers 用户名<br>

4. 设定登录黑名单

?
1
2
3
4
vi /etc/pam.d/sshd
增加
auth required /lib/security/pam_listfile.so item=user sense=deny file=/etc/sshd_user_deny_list onerr=succeed
所有/etc/sshd_user_deny_list里面的用户被拒绝ssh登录

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

原文链接:http://www.cnblogs.com/oubo/archive/2012/06/12/2546719.html

延伸 · 阅读

精彩推荐