Proto Local Address Foreign Address State TCP 10.0.0.204:1803 10.0.0.105:139 TIME_WAIT TCP 127.0.0.1:1590 127.0.0.1:6139 ESTABLISHED TCP 127.0.0.1:1787 127.0.0.1:445 TIME_WAIT TCP 127.0.0.1:6139 127.0.0.1:1590 ESTABLISHED 谁能看明白这是什么?说一下这里面的意思。 和你们说一下这是在DOS下输入的一个命令。
最新回答
一枕庭前雪
2024-11-24 05:58:23
如果你玩过路由器的话,就知道路由器里面那些很好玩的命令缩写。
例如,"sh int" 的意思是 "show interface"。
现在 Windows 2000 也有了类似界面的工具,叫做 netsh。
我们在 Windows 2000 的 cmd shell 下,输入 netsh 就出来:netsh> 提示符, 输入 int ip 就显示: interface ip>
然后输入 dump ,我们就可以看到当前系统的网络配置:
# ----------------------------------
# Interface IP Configuration
# ----------------------------------
pushd interface ip
# Interface IP Configuration for "Local Area Connection"
set address name = "Local Area Connection" source = static addr = 192.168.1.168 mask = 255.255.255.0 add address name = "Local Area Connection" addr = 192.1.1.111 mask = 255.255.255.0 set address name = "Local Area Connection" gateway = 192.168.1.100 gwmetric = 1 set dns name = "Local Area Connection" source = static addr = 202.96.209.5 set wins name = "Local Area Connection" source = static addr = none
popd # End of interface IP configuration
上面介绍的是通过交互方式操作的一种办法。 我们可以直接输入命令: "netsh interface ip add address "Local Area Connection" 10.0.0.2 255.0.0.0" 来添加 IP 地址。
C:\>tracert 172.16.0.99 -d Tracing route to 172.16.0.99 over a maximum of 30 hops 1 2s 3s 2s 10,0.0,1 2 75 ms 83 ms 88 ms 192.168.0.1 3 73 ms 79 ms 93 ms 172.16.0.99 Trace complete. 用 tracert 解决问题 可以使用 tracert 命令确定数据包在网络上的停止位置。下例中,默认网关确定 192.168.10.99 主机没有有效路径。这可能是路由器配置的问题,或者是 192.168.10.0 网络不存在(错误的 IP 地址)。
C:\>tracert 192.168.10.99
Tracing route to 192.168.10.99 over a maximum of 30 hops