windows统计端口连接数

netstat -na -p tcp| findstr 80 | find /C "ESTABLISH"

netstat -an -p tcp | find "127.0.0.1" | find /c "2112"

netstat -an |find /c ":80"   

原文地址:https://www.cnblogs.com/ruiy/p/7128465.html