Linux netstat

一、简介

 

二、语法

 

三、实例

1)查看TCP连接数

netstat -n | awk '/^tcp/ {++S[$NF]} END {for (a in S) print a, S[a]}'

你可能感兴趣的:(网络,awk)