2月12015
查看Windows Server端口的连接数
查看Windows Server端口的连接数
统计通过tcp协议连接127.0.0.1的2112号端口的连接数
netstat -an -p tcp | find "127.0.0.1" | find /c "2112"
netstat
-a 显示所有连接和监听端口。
-n 以数字形式显示地址和端口号。
-p proto 显示 proto 指定的协议的连接;proto 可以是
下列协议之一: TCP、UDP、TCPv6 或 UDPv6。
如果与 -s 选项一起使用以显示按协议统计信息,proto 可以是下列协议之一:
IP、IPv6、ICMP、ICMPv6、TCP、TCPv6、UDP 或 UDPv6。
find /c 仅显示包含指定字符串的行数
以上命令在windows server 2003,windows server 2008, windows server 2008 R2下测试通过.
发表评论
木有头像就木JJ啦!还木有头像吗?点这里申请属于你的个性Gravatar头像吧!