原理很简单,就是监控80端口的连接数。
@echo off
:count
echo|set /p="Num of HTTP Connections: " & netstat -na | find /C ":80"
timeout 3 > nul
GOTO count
运行效果:
原理很简单,就是监控80端口的连接数。
@echo off
:count
echo|set /p="Num of HTTP Connections: " & netstat -na | find /C ":80"
timeout 3 > nul
GOTO count
运行效果: