其他分享
首页 > 其他分享> > 服务器安全

服务器安全

作者:互联网

https://blog.csdn.net/qq_21137441/article/details/84972843  暴力防破解

 

vim /etc/hosts.deny  添加黑名单,禁止访问

sshd:19.16.18.1:deny 参数

 

/etc/hosts.allow  添加白名单,允许访问

sshd:19.16.18.1:allow

 

vim /etc/pam.d/sshd   限制错误次数

auth required pam_tally2.so deny=5 unlock_time=600 even_deny_root root_unlock_time=600

 

https://www.fcblog.cn/post/66.html  升级 OpenSSH8.5+OpenSSL1.1.1k 

vim ~/.ssh/known_hosts  解决升级openssl导致的ssh链接问题,清除该文件里面的链接信息

标签:deny,安全,sshd,vim,etc,unlock,hosts,服务器
来源: https://www.cnblogs.com/Dreamsoft/p/15787566.html