一、开篇

个人认为IPv6是一种趋势,因此先下手吃香,咱们小白不会去封装协议,但是我们可以用已有的工具去完成IPv6到IPv6的通信。保证自己的服务器支持ipv6,需要注意你需要一个公网ip。

二、开始动手

1、登录https://tunnelbroker.net/,如果没注册账号就注册账号,然后登录

2、选择Create Regular Tunnel

centos 开启numa centos 开启ipv6_重启

3、在这里输入你的公网ip测试是否可以开启ipv6

centos 开启numa centos 开启ipv6_重启_02

如果出现这个提示,那么你可能云服务器没有开启ICMP,可以ping一下你的ip。

centos 开启numa centos 开启ipv6_centos_03

 

centos 开启numa centos 开启ipv6_centos 开启numa_04

ping不通,那我们就去云服务器控制台开启一下。 

centos 开启numa centos 开启ipv6_服务器_05

再来测试一下,ok了 

centos 开启numa centos 开启ipv6_vim_06

 

如果出现这个提示,表明可以用的 

centos 开启numa centos 开启ipv6_vim_07

4、接下来就是选择服务器了

 

centos 开启numa centos 开启ipv6_重启_08

 

可以在自己的服务器上ping一下这些ip,找出最快的,选择即可。 

centos 开启numa centos 开启ipv6_vim_09

centos 开启numa centos 开启ipv6_vim_10

5、会生成ipv6地址等信息

centos 开启numa centos 开启ipv6_服务器_11

6、点击Example Configurations,选择你的操作系统,因为我的是Centos7 可以选择Linux-net-tools,但是生成的命令无法指定本地 ip ,最终会导致在自己服务器上可以访问ipv6在用其他机器访问服务器时不行,我选择了Linux-route2,然后会自动生成命令。 (注意在执行这些命令时 将公网ip换成内网ip,切记)

centos 开启numa centos 开启ipv6_重启_12

 

7、开启IPV6:

vim /etc/sysctl.conf

添加下面命令,0表示允许,1表示禁止 

centos 开启numa centos 开启ipv6_centos 开启numa_13

vim /etc/modprobe.d/disable_ipv6.conf

添加箭头指向的一条语句 

 

centos 开启numa centos 开启ipv6_重启_14

vim /etc/sysconfig/network

添加箭头指向的一条命令

centos 开启numa centos 开启ipv6_centos_15

在网卡中加入这两句,当然每个人网卡不一样,记得 ifconfig查看一下

vim /etc/sysconfig/network-scripts/ifcfg-eth0

 

centos 开启numa centos 开启ipv6_centos_16

结束之后ifconfig看一下有没有出现ipv6 就是inet6如果没有最好重启一下 

8、添加ipv6隧道

将Example Configurations生成的指令复制到服务器命令窗口执行,(切记将公网ip换成内网ip)。

然后执行ifconfig查看地址

centos 开启numa centos 开启ipv6_服务器_17

接下来就是测试自己的服务器支不支持ipv6啦,我们ping一个ipv6的网站 ok

centos 开启numa centos 开启ipv6_服务器_18

9、如果想让别人访问你的服务器,接下来就是绑定域名了,否则浏览器是没法输入ipv6地址的

我用的是阿里云域名,很奇怪吧,我服务器是华为,域名可以用阿里

centos 开启numa centos 开启ipv6_vim_19

记录类型是AAAA,主机记录我为了强烈表示这是ipv6放了二级域名,记录值就是ipv6地址 

10、配置nginx,重启生效

centos 开启numa centos 开启ipv6_centos_20

 

如果报这个错误 说明我们在安装nginx的时候没有安装相应的包,需要重新编译安装ngnix

centos 开启numa centos 开启ipv6_centos 开启numa_21

./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --with-ipv6
make
make install

 然后重启nginx

11、测试一下,想要和ipv6通信,那么你的机器也得支持ipv6

centos 开启numa centos 开启ipv6_centos_22

刚刚配置的域名。ping的通 

访问域名,返回页面(这个页面是我在之前的博客写的就是简单的html文件)

centos 开启numa centos 开启ipv6_服务器_23

但是,我们在用windows 电脑ping 是ping不通的(windows 连接我手机的热点 支持ipv6)

centos 开启numa centos 开启ipv6_centos 开启numa_24

原因是华为云安全组 我们需要将安全组全部开放,同时也会发生连接不上的问题

centos 开启numa centos 开启ipv6_centos 开启numa_25

centos 开启numa centos 开启ipv6_重启_26

centos 开启numa centos 开启ipv6_服务器_27

记住 重启会失效,需要重新输入 Example Configurations指令