IPv6 bridging with relayd

Hi!
I'm trying to setup a wireless bridge between two AP's (1 is default TP-link, the other one runs OpenWRT)
IPv4 works flawslessly but I can't get IPv6 to work.

I'm following this guide:
https://openwrt.org/docs/guide-user/network/wifi/relay_configuration#adding_ipv6_support

I'm stuck at step 3, the wan interface is already deleted, so I get an error when I perform these commands : uci set dhcp.wan.interface=wwan

Can anyone point me to the right direction?
On the OpenWRT status page, I can see there is a wwan6 interface that receives an public /64 ipv6 address

In /etc/config/dhcp, you want to end up with (in part) this:

config dhcp 'wan'
   option interface 'wwan'
   option ra 'relay'
   option ndp 'relay'
   option master '1'

This will require (re)creating the wan section if it does not already exist. You could also call the whole section wwan.

1 Like

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.