需要知道特定端口上有多少个连接。
例如我在端口 80 上有 10 个连接。
可以做吗网斯塔t 或在任何程序中?
答案1
正如这里所回答的:
https://stackoverflow.com/questions/12010631/command-line-for-looking-at-specific-port
您可以使用以下命令:
netstat -np | 查找“端口号”
此外,如果您只想要连接数,您可以使用此命令:
netstat -np | find /C “端口号”
需要知道特定端口上有多少个连接。
例如我在端口 80 上有 10 个连接。
可以做吗网斯塔t 或在任何程序中?
正如这里所回答的:
https://stackoverflow.com/questions/12010631/command-line-for-looking-at-specific-port
您可以使用以下命令:
netstat -np | 查找“端口号”
此外,如果您只想要连接数,您可以使用此命令:
netstat -np | find /C “端口号”