我希望我的一台机器获得静态 IPv6,这应该得到我的 ISP 的允许。
当我为机器配置静态 IP 时,它可以正常工作几天/几个月,然后我会被分配一个不同的 IP。
我觉得我错过了有关 IPv6 的一些基本知识。
我这样配置我的操作系统(Rasbian):
auto lo
iface lo inet loopback
iface eth0 inet dhcp
allow-hotplug wlan0
iface wlan0 inet manual
wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf
iface default inet dhcp
iface eth0 inet6 static
address 2a01:e35:2e35:e860:ba27:ebff:fe15:81e4;
netmask 64
gateway 2a01:e35:2e35:e860::1
运行 ifconfig 给出输出
{pi@raspberrypi[pi]}sudo ifconfig
eth0 Link encap:Ethernet HWaddr b8:27:eb:15:81:e4
inet addr:192.168.0.42 Bcast:192.168.0.255 Mask:255.255.255.0
inet6 addr: 2a01:e35:2e35:e860:ba27:ebff:fe15:81e4/64 Scope:Global
inet6 addr: fe80::ba27:ebff:fe15:81e4/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:2640 errors:0 dropped:0 overruns:0 frame:0
TX packets:2130 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:330543 (322.7 KiB) TX bytes:343149 (335.1 KiB)
请注意,我确实有(至少出站)IPv6 连接
如何始终保持相同的 IPv6,而不是在一段时间后分配到略有不同的 IPv6?