云服务器:centos7添加ip黑名单禁止某个ip访问

[复制链接] |主动推送
查看33 | 回复0 | 2024-9-11 08:19:42 | 显示全部楼层 |阅读模式
云服务器 centos7用的是firewall 添加单个黑名单只需要把ip添加到 /etc/hosts.deny
格式语法:  sshdIP:deny
vi /etc/hosts.deny   添加你要禁止的ip就可以了
sshd:192.168.1.147:deny
这是允许的 /etc/hosts.allow
sshd:19.16.18.1:allowsshd:19.16.18.2:allow
找了个,多次失败登录即封掉IP,防止暴力破解的脚本 亲测有效 超过5次的就加到黑名单
1、编辑脚本  vi /usr/local/bin/secure_ssh.sh
#! /bin/bashcat /var/log/secure|awk '/Failed/{print $(NF-3)}'|sort|uniq -c|awk '{print $2"="$1;}' > /usr/local/bin/black.txtfor i in `cat  /usr/local/bin/black.txt`do  IP=`echo $i |awk -F= '{print $1}'`  NUM=`echo $i|awk -F= '{print $2}'`   if [ $NUM -gt 5 ];then      grep $IP /etc/hosts.deny > /dev/null    if [ $? -gt 0 ];then      echo "sshdIP:deny" >> /etc/hosts.deny    fi  fidone
增加执行权限
chmod +x /usr/local/bin/secure_ssh.sh
2、创建记录登录失败次数的文件  
touch /usr/local/bin/black.txt
3、添加定时 5分钟执行一次   
*/5 * * * *  sh /usr/local/bin/secure_ssh.sh
4、测试 ssh登录147
ssh 192.168.1.147
5、查看黑名单列表是否记录
cat /usr/local/bin/black.txt
6、查看黑名单列表看是否添加进去了
cat /etc/hosts.deny
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则