统计各状态连接数
netstat -ano | find /c "TIME_WAIT"
netstat -ano | find /c "ESTABLISHED"
查看具体端口使用情况
netstat -ano | find "TIME_WAIT" | more
netstat -ano | find "ESTABLISHED" | more
通过pid定位程序
tasklist | find "pid"
netstat -ano | find /c "TIME_WAIT"
netstat -ano | find /c "ESTABLISHED"
netstat -ano | find "TIME_WAIT" | more
netstat -ano | find "ESTABLISHED" | more
tasklist | find "pid"