Debian Stretchの単一インターフェイスに2番目のIPv6を追加する必要があります。 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
単一のインターフェイスから2つのアドレスを取得します。
ただし、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
なぜこれがうまくいかないのか知っている人はいますか?インターフェイス設定に2番目のアドレスを追加できるようですが、up -6 ip addr ...
なぜこれが起こるのかを知りたいです。