环境
- 路由器:华硕 AC68U
- 网络:通过光猫拨号确认可用 IPV6
问题
- 使用超级管理员帐号进入光猫,开启IPV6支持,并通过光猫拨号,可获取到ipv6地址。且能通过 www.test-ipv6.com
- 将光猫模式更改为桥接,通过路由器拨号,路由器可获取到ipv6地址。www.test-ipv6.com测试提示无ipv6地址。实际上路由和设备都有获取到ipv6地址。
排查
查看路由器网络信息,发现在ipv6的wlan-gateway一项为空,即ipv6的网关为空。
解决
通过ssh进入路由器,添加网关信息,执行如下命令:
ip -6 route add 0::/0 dev ppp0
ip -6 route add default dev ppp0 metric 1
此时测试 www.test-ipv6.com,通过。
将上面两行命令写入/jffs/scripts/wan-start
脚本中,这样路由重启后也会自动进行该设置。