我试图更好地理解IPv6。
首先,我尝试ifconfig,得到以下信息:
eth0 Link encap:Ethernet HWaddr XXXXXXX
inet addr:X.X.X.X Bcast:X.X.X.X Mask:XXXXXXXXX
inet6 addr: XXXX::XXXX:XXX:XXXX:XXX/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:138752772 errors:0 dropped:0 overruns:0 frame:0
TX packets:67894054 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:67347428211 (67.3 GB) TX bytes:168368922639 (168.3 GB)
Interrupt:43
因此,从上面我可以假定启用了IPv6(如果我在这里错了,请更正我)。
现在,如果我使用,ping localhost
我将得到:
64 bytes from localhost (127.0.0.1): icmp_req=1 ttl=64 time=0.026 ms
64 bytes from localhost (127.0.0.1): icmp_req=2 ttl=64 time=0.019 ms
64 bytes from localhost (127.0.0.1): icmp_req=3 ttl=64 time=0.025 ms
...
但是当我使用时,ping6 localhost
我得到:
unknown host
如何使用ping6
?或者更具体地说,需要进行哪些更改才能进行ping6 localhost
工作(如果可能的话)?
ifconfig
和route
–ip addr
及andip route
(它们支持更多网络功能并具有更一致的输出)。