|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
欢迎大家来到仓酷云论坛!1.在/etc/hosts.allow写:
- 在/etc/hosts.allow写:sshd:1.2.3.4在/etc/hosts.deny写:sshd:ALL
复制代码
2.用iptables也行:
- iptables-IINPUT-ptcp--dport22-jDROPiptables-IINPUT-ptcp--dport22-s1.2.3.4-jACCEPT
复制代码
3.克制某个用户经由过程ssh登录
- 在/etc/ssh/sshd_conf增加AllowUsers用户名大概AllowGroups组名大概DenyUsers用户名
复制代码
4.设定登录黑名单
- vi/etc/pam.d/sshd增添authrequired/lib/security/pam_listfile.soitem=usersense=denyfile=/etc/sshd_user_deny_listonerr=succeed一切/etc/sshd_user_deny_list内里的用户被回绝ssh登录
复制代码 欢迎大家来到仓酷云论坛! |
|