1.在/etc/sysctl.conf
中填写以下内容,填写完成后执行sysctl -p
使之生效。
net.ipv6.conf.all.disable_ipv6 = 0
net.ipv6.conf.default.disable_ipv6 = 0
net.ipv6.conf.lo.disable_ipv6 = 0
2.在/etc/resolv.conf
填写以下内容用以解析Ipv6:
nameserver 2001:4860:4860::8888
3.把he.net 中Example Configurations,然后选择 Debian/Ubuntu。会出现几行代码
复制到/etc/network/interfaces
文件下面,如果VPS获取的私网IP地址 ,需要把 local 后面的公网改成私网IP地址,可以通过命令ip address show查询
auto he-ipv6iface he-ipv6 inet6 v4tunneauto he-ipv6
iface he-ipv6 inet6 v4tunnel
address 2001:470:1f1c:4e8::2
netmask 64
endpoint 216.66.88.98
local 10.1.1.1
ttl 255
gateway 2001:470:1f1c:4e8::1
填写完成后,执行ifup he-ipv6
确保ipv6生效,此时 ping6 -c3 google.com 是否有答复