买了一个超级便宜的vps,由于colocrossing机房不提供ipv6导致有些情况下我没法完全使用。于是就想到了使用he.net家提供的ipv6隧穿来自己手动弄一个。

申请he.net家的ipv6

首先去https://tunnelbroker.net/注册一个账号,具体注册步骤很简单,按照里面要求的填写信息就可以了,这里不展开。
注册完账号后,点击左侧的User Functions中有个Create Regular Tunnel,会有个创建ipv6隧道的页面。在IPv4 Endpoint (Your side)填入vps的ipv4地址,在Available Tunnel Servers中选中离vps最近的那个位置。最后在下方点击创建隧道。

Debian 10设置ipv6隧道

完成上一步之后,会进入Tunnel Details页面,其中就是分配到的ipv6地址,现在仅需要绑定这个ipv6地址即可。选择example configurations页面,在下来菜单中选择debian/ubuntu选项。如下所示:

auto he-ipv6
iface he-ipv6 inet6 v4tunnel
        address 2001:470:1f04:xxxx::2
        netmask 64
        endpoint 72.52.xxx.74
        local 107.173.xxx.15
        ttl 255
        gateway 2001:470:1f04:xxxx::1

在配置之前,需要启动vps的ipv6选项和建立好nameserver。
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.在/etc/network/interfaces中,将he.net网站刚才显示的那段内容填入,内容格式大概如下:

auto he-ipv6
iface he-ipv6 inet6 v4tunnel
        address 2001:470:1f04:xxxx::2
        netmask 64
        endpoint 72.52.xxx.74
        local 107.173.xxx.15
        ttl 255
        gateway 2001:470:1f04:xxxx::1

填写完成后,执行ifup he-ipv6确保ipv6生效,此时如果ping ipv6.google.com应该就可以正常响应了。

标签: linux, ipv6

仅有一条评论

  1. 毕世平 毕世平

    作者你好,通过google搜索搜到这篇教程,实践可用,特来道谢,另转载了一下,地址是:https://shiping.date/61.html

添加新评论