一、ipconfig /all
1、功能:显示所有网络适配器的详细配置信息,包括IP地址、子网掩码、默认网关和MAC地址等。
2、示例:ipconfig /all
3、输出:
Windows IP Configuration Host Name . . . . . . . . . . . . : example.com Primary Dns Suffix . . . . . . . : Node Type . . . . . . . . . . . . : Hybrid IP Routing Enabled. . . . . . . . : No WINS Proxy Enabled. . . . . . . . : No DNS Suffix Search List. . . . . . . : example.com Ethernet adapter Ethernet: Connection-specific DNS Suffix . : example.com Link-local IPv6 Address . . . . . : fe80::d9e7:3bff:fe2e:9c5b%12 IPv4 Address. . . . . . . . . . : 192.168.1.2 Subnet Mask . . . . . . . . . . : 255.255.255.0 Default Gateway . . . . . . . . . : 192.168.1.1 DHCP Server . . . . . . . . . . : 192.168.1.1 DNS Servers . . . . . . . . . . : 8.8.8.8 8.8.4.4 Ethernet adapter Wi-Fi: Connection-specific DNS Suffix . : example.com IPv4 Address. . . . . . . . . . : 192.168.0.3 Subnet Mask . . . . . . . . . . : 255.255.255.0 Default Gateway . . . . . . . . : 192.168.0.1 DHCP Server . . . . . . . . . . : 192.168.0.1 DNS Servers . . . . . . . . . . : 8.8.8.8 8.8.4.4
二、netstat -an
1、功能:显示所有活动的TCP连接和监听端口。
2、示例:netstat -an
3、输出:
Proto Local Address Foreign Address State TCP 0.0.0.0:80 0.0.0.0:0 LISTENING TCP 192.168.1.2:139 0.0.0.0:0 LISTENING TCP 192.168.1.2:443 10.0.0.1:54321 ESTABLISHED TCP 192.168.1.2:139 192.168.1.3:445 ESTABLISHED TCP 192.168.1.2:1025 192.168.1.4:2049 CLOSE_WAIT TCP 192.168.1.2:1026 192.168.1.4:49693 LAST_ACK TCP 192.168.1.2:2869 192.168.1.4:2870 ESTABLISHED TCP 192.168.1.2:49694 0.0.0.0:0 LISTENING TCP 192.168.1.2:49694 127.0.0.1:49694 ESTABLISHED TCP 192.168.1.2:49697 0.0.0.0:0 LISTENING TCP 192.168.1.2:49698 127.0.0.1:49698 ESTABLISHED UDP 0.0.0.0:5353 *:* UDP 0.0.0.0:5353 *:* UDP 0.0.0.0:5353 *:* UDP 0.0.0.0:5353 *:* UDP 0.0.0.0:5353 *:
三、ping
1、功能:测试网络连接状态,通过发送ICMP数据包到指定的目标地址并接收回显应答。
2、示例:ping www.google.com
3、输出:
Pinging google.com [74.125.224.72] with 32 bytes of data: Reply from 74.125.224.72: bytes=32 time=28ms TTL=54 Reply from 74.125.224.72: bytes=32 time=27ms TTL=54 Reply from 74.125.224.72: bytes=32 time=26ms TTL=54 Reply from 74.125.224.72: bytes=32 time=27ms TTL=54 Ping statistics for 74.125.224.72: Packets: Sent = 4, Received = 4, Lost = 0 (0% loss), Approximate round trip times in milli-seconds: Minimum = 26ms, Maximum = 28ms, Average = 27ms
四、tracert
1、功能:跟踪数据包到达目的地的路径。
2、示例:tracert www.google.com
3、输出(部分):
Tracing route to google.com [74.125.224.72] over a maximum of 30 hops: 1 <1 ms <1 ms <1 ms 192.168.1.1 2 3 ms 3 ms 3 ms 10.0.0.1 ...
五、pathping
1、功能:结合了Ping和Tracert的功能,提供更详细的网络延迟和丢包信息。
2、示例:pathping www.google.com
3、输出(部分):
Tracing route to google.com [74.125.224.72] over a maximum of 30 hops: 0 <1 ms <1 ms <1 ms 192.168.1.1 ...
六、arp -a
1、功能:查看IP地址与MAC地址的对应关系。
2、示例:arp -a
3、输出(部分):
Interface: 192.168.1.2 --0x3 Internet Address Physical Address Type 192.168.1.1 00-1a-2b-3c-4d-5e dynamic 192.168.0.3 00-1b-2c-3d-4e-5f dynamic
七、nslookup
1、功能:查询域名转化为IP地址的过程,有助于诊断DNS问题。
2、示例:nslookup www.google.com
3、输出:
Server: UnKnown Address: 8.8.8.8 Name: www.google.com Addresses: 74.125.224.72
八、相关问题与解答
问题1:如何查看特定网络接口的状态?
答:可以使用ipconfig
命令查看特定网络接口的状态,要查看名为"Wi-Fi"的网络接口状态,可以使用以下命令:ipconfig | findstr /C:"Wi-Fi"
,这将过滤出与"Wi-Fi"相关的网络接口信息。
问题2:如何判断当前连接的网络类型(如以太网、WiFi或蓝牙)?
答:可以使用netsh interface show interface
命令查看当前连接的网络类型,该命令会列出计算机上所有可用的网络接口,并显示每个接口的类型、连接状态和其他信息,输出结果中的"Media Type"字段会显示当前连接的网络类型,quot;Ethernet"、"Wireless LAN"或"Bluetooth"。
到此,以上就是小编对于“cmd检查网络”的问题就介绍到这了,希望介绍的几点解答对大家有用,有任何问题和不懂的,欢迎各位朋友在评论区讨论,给我留言。
文章来源网络,作者:运维,如若转载,请注明出处:https://shuyeidc.com/wp/58029.html<