浏览次数:2948 关键词 ( 命令 CentOS iptables IP )
查看当天登陆未成功的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
效果: