web-dev-qa-db-fra.com

Comment configurer / etc / network / interface pour utiliser IPv6 statique, mais dynamique IPv4?

Je souhaite ajouter une adresse IP IPv6 statique à ma configuration IP, sinon automatique. Comment faire ça?

Actuellement j'utilise:

auto lo
iface lo inet loopback
auto eth0

Si IPv4 est configuré par DHCP, IPv6 est configuré par rtadv. Cependant, je veux avoir en plus une adresse statique IPv6? Comment faire ça?

J'ai essayé avec

iface eth0 inet6
address 2001:xxxx:yyyy:zzzz::3/64
netmask 64
gateway 2001:xxxx:yyyy:zzzz::1

Mais cela aboutit à un échec? (init-Script ne se termine pas avec le code 100)

2
IanH

Testez ceci:

auto lo
iface lo inet loopback

auto eth0
allow-hotplug eth0
iface eth0 inet dhcp

iface eth0 inet6 static
address 2001:db8::xxxx:yyyy
netmask 64
gateway 2001:db8::xxxx:yy:zzzz
7
kyodake