码迷,mamicode.com
首页 > Web开发 > 详细

netstat统计

时间:2019-02-27 23:32:44      阅读:284      评论:0      收藏:0      [点我收藏+]

标签:span   连接   lis   awk   uniq   col   nbsp   tcp   time   

状态统计
netstat -ant | awk /tcp/ {print $6}|sort |uniq -c |sort -nr
 
前十位ESTABLISHED状态ip统计
netstat -ant | grep "ESTABLISHED"|awk /tcp/ {print $5}|cut -d ":" -f1|sort |uniq -c |sort -nr |head -10
 
前十位TIME_WAIT状态ip统计
netstat -ant | grep "TIME_WAIT"|awk /tcp/ {print $5}|cut -d ":" -f1|sort |uniq -c |sort -nr |head -10
 
服务器本地被连接的EST
netstat -ant | grep "EST"|awk /tcp/ {print $4} |sort |uniq -c |sort -nr |head -10
 
服务器本地被连接的WAIT
netstat -ant | grep "TIME_WAIT"|awk /tcp/ {print $4} |sort |uniq -c |sort -nr |head -10
 
netstat -ant |awk /^tcp/ {print $5}|cut -d ":" -f1 |sort |uniq -c|sort -nr |grep -v "10.20"

 

netstat统计

标签:span   连接   lis   awk   uniq   col   nbsp   tcp   time   

原文地址:https://www.cnblogs.com/icemonkey/p/10447714.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!