Windows XP 不包括选项-t使用

Windows XP 不包括选项-t使用

是否有任何连接到我的计算机端口之一的?vb script如何从命令提示符查询我的调制解调器?querymodem

答案1

Windows XP 不包括选项-t使用

netstat -aon

并且不要-t在所有命令中使用选项,或者复制到 Windows XP netstatW2K3 版本。

Windows 2003 服务器:

所有TCP+UDP连接、本地地址、外部地址、状态、PID、卸载状态

netstat -aton

先前命令的输出和应用程序名称

netstat -baton

除多播或任何地址之外的所有 TCP+UDP 连接

netstat -aton | findstr /V /L "*:*" | more

已建立的连接:

netstat -aton | findstr /V /L "*:*" | find /I "ESTABLISHED" | more

PPTP 调制解调器:

netstat -aton | find ":1723" | more

变量 2:

netstat -aton  | find ":1723" | find /I "ESTABLISHED" | more

L2TP 调制解调器:

netstat -aton | find ":1701" | more

安全部分L2TP连接:

netstat -aton -p UDP | find ":500" | more

其他VPN类型:

SSTP - TCP 443;直接访问 - TCP 443;

不是所有的端口,而是VPN连接开启后剩下的端口!

可能会有帮助……

相关内容