欢迎来到电脑知识学习网,专业的电脑知识大全学习平台!

手机版

CentOS下iptables封IP的命令讲解

操作系统 发布时间:2019-03-12 15:13:40

查看当天登陆未成功的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


责任编辑:电脑知识学习网

操作系统