如何在 Debian 11 VPS 上设置 IPv6?

如何在 Debian 11 VPS 上设置 IPv6?

我在 Linode 上有一个测试实例,并要求他们的技术支持为我提供一个 IPv6 范围。这是我获得的范围。

2600:3c03:e001:441::/64

我怎样才能根据这个范围公开 200 个全局 IPv6 地址,而不是使用诸如等本地fd42:42:42::1地址fd42:42:42::2

我做了一些研究,但我不完全确定这是否是正确的方法。

我是否正确地认为它们应该像这样设置: 2600:3c03:e001:441::12600:3c03:e001:441::2等等?

我已编辑/etc/network/interfaces。并删除了iface eth0 inet6 auto

然后补充道:

iface eth0 inet6 static
   address 2600:3c03:e001:441::1/64
   gateway fe80::1

重启后,我可以使用新的 IPv6 IP 地址通过 SSH 进入实例,该地址似乎正确地暴露给外部。

但是我该如何定义剩下的 199 个 IP?我尝试添加第二个 IP,如下所示:

iface eth0 inet6 static
  address 2600:3c03:e001:441::1/64
  gateway fe80::1
iface eth0 inet6 static
  address 2600:3c03:e001:441::2/64
  gateway fe80::1

但随后系统挂起。

答案1

iface eth0 inet6 static
  address 2600:3c03:e001:441::1/64  
  address 2600:3c03:e001:441::2/64  
  address 2600:3c03:e001:441::3/64    
  address 2600:3c03:e001:441::4/64  
  gateway fe80::1 

等等....

相关内容