使用netstat和awk命令统计下网络连接数:

tech2025-03-14  12

netstat -an | awk '/^tcp/ {++y[$NF]} END {for(w in y) print w, y[w]}'

最新回复(0)