首页 > 系统 > CentOS > 正文

CentOS下iptables封IP的命令讲解

2020-06-21 12:36:58
字体:
来源:转载
供稿:网友

查看当天登陆未成功的IP

CentOS,iptables,IP

一条命令把这些IP全部封掉:

for i in `grep "$(date +"%b %d")" /var/log/secure | grep "Failed password" | awk '{print $(NF-3)}' | sort | uniq -c | sort -nr| awk '{print $2}'` ;do iptables -A INPUT -s $i -j DROP; done

效果:

CentOS,iptables,IP


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表