阿里云Ubuntu服务器下配置ipv6网络

第一步:

中转网站:www.tunnelbroker.net/tunnel_detail.php

需要去中转网站注册一个账号,注册成功后找到Create Regular Tunnel,完成创建通道

第二步:

重新编译nginx 支持ipv6模块 --with-ipv6

第三步:

配置nginx支持ipv6监听

listen  [::]:80; #同时监听ipv4 ipv6

第四步:

修改/ect/network/interface文件

添加ipv6网卡配置:(配置信息是根据中转网站内的Example Configurations参数自动生成)

auto he-ipv6

iface he-ipv6 inet6 v4tunnel

address 2001:470:xx:xxx::2

netmask 64

endpoint xx.xx.xx.x

local xxx.xxx.xxx.xxx

ttl 255

gateway 2001:470:23:ffa::1

第五步:

修改/etc/sysctl.conf配置服务器支持ipv6网络(参数值都改为0)

net.ipv6.conf.all.disable_ipv6 = 0

net.ipv6.conf.default.disable_ipv6 = 0

net.ipv6.conf.lo.disable_ipv6 = 0

第六步:

添加阿里云域名解析

参考网址:

help.aliyun.com/knowledge_detail/6555875.html

所有配置参考网址:

bbs.aliyun.com/read/284958.html

blog.chenjia.me/articles/160301-134110.html

你可能感兴趣的:(阿里云Ubuntu服务器下配置ipv6网络)