1. 程式人生 > >linux 檢視訪問本機ip次數

linux 檢視訪問本機ip次數

檢視訪問本機ip次數
netstat -tn |grep :80|awk '{print $5}'|awk -F: '{print $1}'|sort|uniq -c |sort -n|grep -v Address|grep -v servers

用root身份執行
iptables -t filter -A INPUT -s 192.168.0.5 -i eth0 -j DROP

(禁止ip地址192.168.0.5從eth0訪問本機

轉載地址:http://blog.sina.com.cn/s/blog_714afb2b0102uy51.html