I've got a PPPoE connection, with native IPv6. However when I run 'ifstatus wan' I see the IPv6 address associated to the wan interface and nothing appears on wan6. Running LEDE 17.01.4 on a WR2543N.
I can manually insert a prefix and that gets delegated but the automatic Prefix Delegation that should 'just work' isn't working. The DHCP address on the PPPoE tunnel appears on wan instead of wan6 and nothing else happens, there isn't even a IPv6 route created.
/etc/config/network
config interface 'wan'
option ifname 'eth0.2'
option _orig_ifname 'eth0.2'
option _orig_bridge 'true'
option proto 'pppoe'
option username 'blah'
option pass 'blah'
option ipv6 '1'
config interface 'wan6'
option ifname '@wan'
option proto 'dhcpv6'
option reqprefix 'auto'
option reqaddress 'try'
/etc/config/dhcp
config dhcp 'lan'
option interface 'lan'
option ndp 'relay'
option ra_management '1'
list dns '2001:8b0::2020'
list dns '2001:8b0::2021'
option ignore '1'
option ra 'relay'
option dhcpv6 'relay'
# option ra_default '1'
config dhcp 'wan'
option interface 'wan'
option ignore '1'
config dhcp 'wan6'
option dhcpv6 'hybrid'
option ra 'hybrid'
option ndp 'hybrid'
option master '1'
Any ideas what is happening? Been fighting this for a while now.