在 Debian 上配置 IPv6 - 全局临时地址

在 Debian 上配置 IPv6 - 全局临时地址

我的 Mac 每天都会生成一个临时 IPv6 供出站连接使用。

Debian 上有类似的东西吗?

答案1

您可以在以下位置指定静态地址/etc/network/interfaces

iface eth0 inet6 static
address 2001:xxx:7927::61
netmask 64
gateway 2001:xxx:7927::1

您还可以以同样的方式添加其他接口(如 eth0:0、eth0:1)。


要获取“随机”IPv6 地址,您可以使用 IPv6 隐私扩展。您可以通过设置/proc/sys/net/ipv6/conff/ethX/use_tempaddr为 2 来启用它。这在ip-sysctl.txt

echo "2">/proc/sys/net/ipv6/conff/eth0/use_tempaddr

相关内容