码迷,mamicode.com
首页 > 系统相关 > 详细

shell 网络扫描

时间:2018-04-11 18:11:57      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:shell 网络监测

#!/bin/sh
[ -f tmp.txt ] && rm -fr tmp.txt

while true
do

cat /var/log/httpd/access_log | awk ‘{print $1}‘| sort | uniq -c >tmp.txt
cat tmp.txt| while read line
do
pv=echo $line | awk ‘{print $1}‘
ipaddress=echo $line | awk ‘{print $2}‘

if [ "$pv" -gt 100 ]
then
iptables -I INPUT -s ${ipaddress} -j DROP

  echo ${ipaddress}

fi

done
sleep 20
done

shell 网络扫描

标签:shell 网络监测

原文地址:http://blog.51cto.com/11381919/2097040

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!