我已经安装了 ubuntu 12.04。我听说以太网接口会自动获取链接本地地址,但在我的 ubuntu 框中它没有获取链接本地地址。
命令
ifconfig -a
输出
Link encap:Ethernet HWaddr 00:1b:38:a1:a2:50
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
Interrupt:19
当我尝试使用命令手动分配它时
ifconfig eth0 inet6 add fe80::21b:38FF:FEa1:a250/64
它被分配到接口 eth0。但是当我尝试使用
ping6 -I eth0 fe80::21b:38FF:FEa1:a250
它给
connect:cannot assign requested address ping6 ubuntu
命令
ip -6 route get fe80::21b:38FF:FEa1:a250
给出
fe80::21b:38ff:fea1:a250 from :: via fe80::21b:38ff:fea1:a250 dev eth0 metric 0
cache
这可能给某些人提供一些线索。