详解linux为阿里云ECS(CentOS7)配置IPv6地址
时间:2021-01-18 14:43:13|栏目:Linux|点击: 次
环境为:ECS“经典网络”类型
步骤:
1. 编辑 /etc/sysctl.conf 文件,将其中三条禁用IPv6的设置更改为:
net.ipv6.conf.all.disable_ipv6 = 0 net.ipv6.conf.default.disable_ipv6 = 0 net.ipv6.conf.lo.disable_ipv6 = 0
2.再运行 sysctl -p 的命令,启用IPv6
3. 转到 tunnelbroker.net 网站,在 Example Configurateions 里选择 Linux-route2 的配置方法,示例命令如下:
modprobe ipv6 ip tunnel add he-ipv6 mode sit remote 216.218.221.6 local 121.43.110.72 ttl 255 ip link set he-ipv6 up ip addr add 2001:470:18:401::2/64 dev he-ipv6 ip route add ::/0 dev he-ipv6 ip -f inet6 addr
4. 在境外机子,使用Ping6及curl测试IPv6隧道地址访问,结果正常:
上一篇:LNMP下提示File not found问题的解决方法
栏 目:Linux
下一篇:Apache 内容动态缓冲模块 mod_cache应用
本文标题:详解linux为阿里云ECS(CentOS7)配置IPv6地址
本文地址:http://www.codeinn.net/misctech/46851.html