Raspberry Pi IP query related knowledge

How to View Router Management Address

C:\Windows\system32>ipconfig /all

Wireless LAN adapter WLAN:

   Connection-specific DNS Suffix  . : mynet
   Description . . . . . . . . . . . : Killer(R) Wi-Fi 6 AX1650w 160MHz Wireless Network Adapter (200D2W)
   Physical Address. . . . . . . . . : B4-0E-DE-72-CE-5F
   DHCP Enabled. . . . . . . . . . . : Yes
   Autoconfiguration Enabled . . . . : Yes
   Link-local IPv6 Address . . . . . : fe80::94b9:fe7e:20eb:825e%15(Preferred)
   IPv4 Address. . . . . . . . . . . : 192.168.128.145(Preferred)
   Subnet Mask . . . . . . . . . . . : 255.255.255.0
   Lease Obtained. . . . . . . . . . : 2023年5月11日 21:35:28
   Lease Expires . . . . . . . . . . : 2023年5月12日 21:35:26
   Default Gateway . . . . . . . . . : 192.168.128.1
   DHCP Server . . . . . . . . . . . : 192.168.128.1
   DHCPv6 IAID . . . . . . . . . . . : 95686366
   DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-2A-1B-29-DC-B4-0E-DE-72-CE-5F
   DNS Servers . . . . . . . . . . . : 192.168.128.1
   NetBIOS over Tcpip. . . . . . . . : Enabled

C:\Windows\system32>tracert www.baidu.com

Tracing route to www.wshifen.com [103.235.46.40]
over a maximum of 30 hops:

  1     1 ms    <1 ms     1 ms  myhome.mynet [192.168.128.1]
  2     3 ms     1 ms     3 ms  061092043129.ctinets.com [61.92.43.129]
  3     2 ms     2 ms     2 ms  10.239.83.25
  4     3 ms     4 ms     4 ms  014199255077.ctinets.com [14.199.255.77]
  5     5 ms     3 ms     3 ms  061244225097.ctinets.com [61.244.225.97]
  6     9 ms    10 ms     7 ms  203080198194.ctinets.com [203.80.198.194]
  7    12 ms     3 ms     5 ms  180.76.0.2
  8     6 ms     5 ms     7 ms  180.76.0.5
  9     *        *        *     Request timed out.
 10     3 ms     2 ms     2 ms  103.235.46.40

Trace complete.

How to view the IP address of the Raspberry Pi without a graphical interface

C:\Windows\system32>ping raspberrypi.local

Pinging raspberrypi [192.168.128.143] with 32 bytes of data:
Reply from 192.168.128.143: bytes=32 time=1ms TTL=64
Reply from 192.168.128.143: bytes=32 time=1ms TTL=64
Reply from 192.168.128.143: bytes=32 time<1ms TTL=64
Reply from 192.168.128.143: bytes=32 time<1ms TTL=64

Ping statistics for 192.168.128.143:
    Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
    Minimum = 0ms, Maximum = 1ms, Average = 0ms
C:\Windows\system32>arp -a

Interface: 192.168.128.145 --- 0xf
  Internet Address      Physical Address      Type
  192.168.128.1         c4-68-d0-8a-96-9b     dynamic
  192.168.128.143       dc-a6-32-a2-28-13     dynamic
  192.168.128.255       ff-ff-ff-ff-ff-ff     static
  224.0.0.22            01-00-5e-00-00-16     static
  224.0.0.251           01-00-5e-00-00-fb     static
  224.0.0.252           01-00-5e-00-00-fc     static
  239.255.255.250       01-00-5e-7f-ff-fa     static
  255.255.255.255       ff-ff-ff-ff-ff-ff     static

Guess you like

Origin blog.csdn.net/xinlan3618/article/details/130631557