光猫拨号后 ISP PD 一个 /60 的前缀给光猫,OpenWRT 连接光猫后 PD 获取到一个 /64 的前缀,但由于它作为路由器的上一级,获取到 /64 前缀是无法再向路由器 PD 的(没有子网可以划分了)。
所以如何不动光猫的情况下,使 OpenWRT 请求一个 /60 /61 /62 /63 的前缀?
我尝试过设置:
$ cat /etc/config/network
...
config interface 'WAN6'
option proto 'dhcpv6'
option ifname 'eth1'
option reqaddress 'try'
option reqprefix '61'
option ip6prefix '62'
但这个 reqprefix
不起作用,最终仍然是 /64 的前缀。
看 RFC 3633 这段描述:
If the requesting router includes an IA_PD Prefix option in the IA_PD option in its Solicit message, the delegating router MAY choose to use the information in that option to select the prefix(es) or prefix size to be delegated to the requesting router.
也就是说 OpenWRT 的配置可以被光猫采纳,也可以不采纳。
所以最终还是要登录超级管理员密码去修改光猫,或者将光猫改成桥接才可以?
1
lovelylain 2023-08-26 10:37:11 +08:00 via Android 1
你这是光猫做主路由,openwrt 做二级路由,普通路由器做三级路由,不嫌路由层级多影响网速啊。可以试试在 openwrt 上折腾 ipv4 走 nat 但是 ipv6 走桥接,让三级路由直接从主路由获取 PD 前缀,需要的主要工具是 ebtables 。
|
2
FaiChou OP @lovelylain 哦我懂了,在 LAN 接口的 DHCP IPv6 设置中将“路由通告服务”和“DHCPv6 服务”改成中继。谢谢。
|