Linux链接情况的统计方法
来源:岁月联盟
时间:2012-03-23
(2)统计httpd协议连接数:ps -ef|grep httpd|wc -l
(3)统计链接最多的20个IP:netstat -na|grep ESTABLISHED|awk '{print $5}'|awk -F: '{print $1}'|sort|uniq -c|sort -r|head -20
(4)统计已连接上数量:netstat -na|grep ESTABLISHED|wc –l,同样可以查询其他状态的
(5)统计各状态链接情况:netstat -ant | awk '{print $NF}' | grep -v '[a-z]' | sort | uniq -c
作者 Phoenix_MVP