linux netstat 快速找出连接本机最多前5个IP地址
netstat -ntu | grep -v 127.0.0.1 | tail -n +3 | awk '{ print $5}' | cut -d : -f 1 | sort | uniq -c| sort -n -r | head -n 5
本文出自 蓝鹰博客,转载时请注明出处及相应链接。
本文永久链接: http://www.lanyingblog.com/blog/2151.html
(www.lanyingblog.com)提供VPS服务器入门教程,CENTOS教程,IIS教程,WDCP安装使用,LINUX教程,KLOXO教程,PHP环境,WIN2003常规安装设置!
netstat -ntu | grep -v 127.0.0.1 | tail -n +3 | awk '{ print $5}' | cut -d : -f 1 | sort | uniq -c| sort -n -r | head -n 5
本文出自 蓝鹰博客,转载时请注明出处及相应链接。
本文永久链接: http://www.lanyingblog.com/blog/2151.html