本文共 311 字,大约阅读时间需要 1 分钟。
#!/bin/bash
netstat -antup|grep SYN_RECV|awk '{print $5}'|awk -F: '{print $1}'|sort|uniq -c>/opt/tmpexec</opt/tmpwhile read linedocount=echo $line|awk '{print $1}'
ip=echo $line |awk '{print $2}'
if [ $count -gt 128 ]then iptables -I INPUT -s $ip -j DROPfidone 转载于:https://blog.51cto.com/14241151/2365808