Q1、编写脚本/root/bin/checkip.sh,每5分钟检查一次,如果发现通过ssh登录失败 次数超过10次,自动将此远程IP放入Tcp Wrapper的黑名单中予以禁止防问
[root@centos7 script]# vim /root/bin/checkip.sh
lastb | awk '!/btmp|^$/{ip[$3]++}END{for(i in ip){if(ip[i]>=3){system("echo sshd:"i">> /etc/host.deny")}}}'
[root@centos7 script]# chmod +x /root/bin/checkip.sh
[root@centos7 script]# crontab -e
*/5 * * * * /root/bin/checkip.sh
Q2、配置magedu用户的sudo权限,允许magedu用户拥有root权限
[root@centos7 ~]# vim /etc/sudoers
magedu ALL=(root) ALL
网友评论