windows统计端口连接数
时间:2017-07-06 21:44:47
收藏:0
阅读:421
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"
原文:http://www.cnblogs.com/ruiy/p/7128465.html
评论(0)