如何禁用 IPv6 usinf 接口文件的 autoconf 功能?

如何禁用 IPv6 usinf 接口文件的 autoconf 功能?

我使用的是linux 3.2.0。我想禁用 IPv6 的 autoconf 功能。为此,我在 /etc/network/interfaces 文件中添加了以下几行。

iface inet6 eth0 static
address <IPv6_address>
netmask 64
autoconf 0

之后我使用了“ifdown eth0”和“ifup eth0”。我仍然根据 MA​​C 地址获取 IPv6 全局地址。

答案1

您线路上的参数顺序iface错误。它正在inet6eth0协议配置接口。它应该是:

iface eth0 inet6 static
    address <IPv6_address>
    netmask 64

autoconf 0位是静态配置的默认位,因此您无需指定。

相关内容