标题:Linux服务器维护 统计连接数查看外部IP 出处:沧海一粟 时间:Wed, 29 Sep 2010 13:53:05 +0000 作者:jed 地址:http://www.dzhope.com/post/704/ 内容: Linux服务器维护 统计连接数查看外部IP 服务器上的一些统计数据: 1)统计80端口连接数 netstat -nat|grep -i "80"|wc -l 2)统计httpd协议连接数 ps -ef|grep httpd|wc -l 3)、统计已连接上的,状态为“established' netstat -na|grep ESTABLISHED|wc -l 4)、查出哪个IP地址连接最多,将其封了. netstat -na|grep ESTABLISHED|awk '{print $5}'|awk -F: '{print $1}'|sort|uniq -c|sort -r netstat -na|grep SYN|awk '{print $5}'|awk -F: '{print $1}'|sort|uniq -c|sort -r Generated by Bo-blog 2.1.1 Release