这些是一些高级的netstat的使用方法 自己扩展一下思路 端口和一些命令是可变的
netstat -plan | grep :80 | wc -l
netstat -alpn | grep :80 |awk ‘{print $5}’ |cut -d: -f1|sort |uniq -c |sort -n
netstat -plan|grep :80 |awk {’print $5′}|cut -d: -f 1|sort|uniq -c|sort -nk 1
netstat -anp |grep ‘tcp\|udp’ | awk ‘{print $5}’ | cut -d: -f1 | sort | uniq -c | sort -n
netstat -apnl | awk ‘($4!~”0.0.0.0“) && ( ($4~/:80$/) || ($4~/:443$/) ) {
print $5 }’ | cut -d: -f 1 | uniq -c |sort -n
lsof -c httpd |grep cwd|grep home| awk ‘{print $9}’|cut -f3 -d\/|sort -n|
uniq -c|sort -n
netstat -n | grep :80 | grep SYN |wc -l
ps -eo pid,pcpu,comm | sort -n -k2 | grep -v “0.0″
lsof -c httpd |grep cwd|grep home| awk ‘{print $9}’|cut -f3 -d\/|sort -n| uniq -c|sort -n