eth0
我正在尝试在 Debian Sid 上添加辅助 IPv6 地址。
我添加了以下几行/etc/network/interfaces
:
iface eth0 inet6 static
address [IPv6 address #1]
netmask 64
gateway [IPv6 gateway]
pre-up echo 0 > /proc/sys/net/ipv6/conf/eth0/autoconf
up /sbin/ifconfig eth0 inet6 add [IPv6 address #2]/64
重启后,只有一个 IPv6 地址分配给eth0
。但是,如果我手动执行命令 ( /sbin/ifconfig eth0 inet6 add [IPv6 address #2]/64
),就会有 2 个 IPv6 地址分配给eth0
,正如我想要的那样。
看起来up
命令根本没有执行。这已经改变了吗?我确实有一个/etc/network/if-up.d
目录,但我读到这些脚本可能会运行多次。
如何up
在 Debian Sid 上工作或添加第二个 IPv6 地址?
答案1
虽然这不能直接回答为什么up
不起作用,但也许可以解决您的问题:
为了保持一致性,我通常对多个 IPv4 和 IPv6 地址使用相同的配置样式。这是我的一台服务器的配置:
auto eth0
iface eth0 inet static
address 94.142.242.211
netmask 28
gateway 94.142.242.209
iface eth0 inet6 static
address 2a02:898:148::211
netmask 64
gateway 2a02:898:148::1
auto eth0:0
iface eth0:0 inet static
address 94.142.242.212
netmask 28
iface eth0:0 inet6 static
address 2a02:898:148::212
netmask 64
auto eth0:1
iface eth0:1 inet static
address 94.142.242.217
netmask 28
iface eth0:1 inet6 static
address 2a02:898:148::217
netmask 64
IPv6 地址显示在 上,eth0
而不显示在 上eth0:0
,eth0:1
当查看时ifconfig
:
eth0 Link encap:Ethernet HWaddr 00:50:56:80:96:82
inet addr:94.142.242.211 Bcast:94.142.242.223 Mask:255.255.255.240
inet6 addr: 2a02:898:148::217/64 Scope:Global
inet6 addr: 2a02:898:148::212/64 Scope:Global
inet6 addr: 2a02:898:148::211/64 Scope:Global
inet6 addr: fe80::250:56ff:fe80:9682/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
eth0:0 Link encap:Ethernet HWaddr 00:50:56:80:96:82
inet addr:94.142.242.212 Bcast:94.142.242.223 Mask:255.255.255.240
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
eth0:1 Link encap:Ethernet HWaddr 00:50:56:80:96:82
inet addr:94.142.242.217 Bcast:94.142.242.223 Mask:255.255.255.240
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
我不知道为什么你的配置不起作用,但也许这样做对你有用......