linux 查看某个端口的连接数

端口连接情况分析
netstat -n | grep ":80" | awk '/^tcp/ {++S[$NF]} END {for(a in S) print a, S[a]}'
根据ip归类
netstat -n | grep ":80 "   |  awk '{print $5}'  | cut -d: -f1 |  sort | uniq -c | sort -n

发表评论

邮箱地址不会被公开。 必填项已用*标注