我的ISP (宪章)提供一个6 6RD中继到IPv6。我想配置Ubuntu来使用这个地址。我发现的大多数链接都是如何禁用IPv6的。所以我不知道怎么让它起作用。我在接口文件上找到了一个博客,并修改了我的博客,使其包含了IPv6:
#The loopback network interface
auto lo
iface lo inet loopback
#Initalize the main interface
auto eth0
#set the static information here
iface eth0 inet static
address 192.168.1.103
netmask 255.255.255.0
broadcast 192.168.1.255
network 192.168.1.0
dns-nameservers 192.168.1.1 8.8.8.8 8.8.4.4
gateway 192.168.1.1
#Initalize the eth0 with ipv6
iface eth0 inet6 auto我想我需要一种方法来指向第六继电器。但我不知道我能把它放哪儿。
宪章的资料:
6rd Prefix = 2602:100::/32
Border Relay Address = 68.114.165.1
6rd prefix length = 32
IPv4 mask length = 0
Primary DNS Address = 2607:f428:1::5353:1
Secondary DNS Address = 2607:f428:2::5353:1 发布于 2018-01-29 18:45:35
第六次需要来自具有全局可路由IPv4地址的路由器。无法在NAT设备上运行6rd;它需要从网络边缘运行,因为隧道编码了一个全局可路由的IPv4边界中继。这允许完全无状态隧道,但禁止使用RFC1918寻址隧道端点(边框中继)。
除非Ubuntu设备充当具有全局IPv4地址的路由器,否则这将无法工作。您需要一个在网络边缘支持6rd的路由器。
发布于 2015-03-29 01:59:38
Comecast解释了如何使用OpenWRT设置6RD。您可以尝试一下,因为它们使用的硬件与您相似,但使用的是OpenWRT固件。http://www.comcast6.net/index.php/6rd-config
https://askubuntu.com/questions/601183
复制相似问题