我使用计算机上的 tracert 命令连接到网络上的另一台计算机,它给我的 IP 是这样的,
fe81::111e:74f9:c9e3:f35b
我不知道它是什么,我只是好奇为什么我没有得到我的 IP 地址,谢谢!
答案1
该地址是 IPv6 地址。它是一个以十六进制表示的 128 位地址,分为 2 字节块。
在现代 Windows 上,如果主机启用了 IPv6,则可能需要指定要使用的 IP 版本。
为了IPv4, 使用:
tracert -4 target_host_address
这将为 IPv4 地址提供标准的点分十进制表达式(例如 192.168.0.3)。
如果你想使用IPv6, 跑步:
tracert -6 target_host_address
以下是windows10上tracert的用法:
C:\Windows\system32> tracert /?
Usage: tracert [-d] [-h maximum_hops] [-j host-list] [-w timeout]
[-R] [-S srcaddr] [-4] [-6] target_name
Options:
-d Do not resolve addresses to hostnames.
-h maximum_hops Maximum number of hops to search for target.
-j host-list Loose source route along host-list (IPv4-only).
-w timeout Wait timeout milliseconds for each reply.
-R Trace round-trip path (IPv6-only).
-S srcaddr Source address to use (IPv6-only).
-4 Force using IPv4.
-6 Force using IPv6.
PS C:\Windows\system32>