重启时 Debian IPv6 DHCP 不起作用

重启时 Debian IPv6 DHCP 不起作用

由于某种原因,我在重新启动 Debian 8 系统时无法获得 IPv6 地址,但在重新启动网络服务时却能获得 IPv6 地址。DHCPv6 服务器已启动并正在运行(并且在使用 dhclient 或重新启动网络服务时正在应答)。

在 /etc/网络/接口:

auto lo
iface lo inet loopback
iface lo inet6 loopback

allow-hotplug eth0
iface eth0 inet6 dhcp
iface eth0 inet dhcp

我必须配置什么才能在启动时获取地址?

答案1

显然存在一些时间错误。我相信我已经在虚拟机中复制了您的问题,并通过调整配置解决了它。

allow-hotplug eth0
iface eth0 inet6 dhcp
    pre-up sleep 3
iface eth0 inet dhcp

参考链接

相关内容