我需要将第二个 IPv6 添加到 Debian Stretch 中的单个接口。使用 IPv4 时,这很简单,因为inet static
可以使用多个定义,即:
iface enp5s0f0.10 inet static
address 10.0.0.1
netmask 20
iface enp5s0f0.10 inet static
address 10.0.0.2
netmask 32
我在单个接口上获得两个地址。
但对于 IPv6,这不起作用。
iface enp5s0f0.10 inet6 static
address 9999:9999:9999:1::1
netmask 64
iface enp5s0f0.10 inet6 static
address 9999:9999:9999:1::2
netmask 128
有人知道为什么这不起作用吗?我想我可以在接口配置中添加第二个地址up -6 ip addr ...
,但我想知道为什么会这样。