有没有有效的查看centos 流量和控制流量的软件,统计连接数 netstat,iptraf
[ 2012-11-18 12:24:36 | 作者: admin ]
ntop
iftop
tc
iptraf
安装iptraf查看流量,安装tc进行流控
服务器上的一些统计数据:
1)统计80端口连接数
netstat -nat|grep -i "80"|wc -l
netstat -pnt|grep -i "80"|wc -l
windows下可以用 netstat -ano
2)统计httpd协议连接数
ps -ef|grep httpd|wc -l
3)、统计已连接上的,状态为“established'
netstat -na|grep ESTABLISHED|wc -l
4)、查出每个IP地址连接数,不按数量排序.
5)、排序哪个IP地址连接最多,只显示前面20个
http://www.cnblogs.com/leezhxing/p/4392263.html
iftop
tc
iptraf
安装iptraf查看流量,安装tc进行流控
服务器上的一些统计数据:
1)统计80端口连接数
netstat -nat|grep -i "80"|wc -l
netstat -pnt|grep -i "80"|wc -l
windows下可以用 netstat -ano
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 > /home/www/111.txt
5)、排序哪个IP地址连接最多,只显示前面20个
netstat -nat | awk '{print $5}'|awk -F: '{print $1}'|sort|uniq -c|sort -nr|head -20
http://www.cnblogs.com/leezhxing/p/4392263.html
[最后修改由 admin, 于 2016-09-04 09:54:55]
评论Feed: http://blog.xg98.com/feed.asp?q=comment&id=1901
这篇日志没有评论。
此日志不可发表评论。