I just got a brand new AX88U with its fancy radio. I would like to bridge the WAN (eth0) with WLAN (eth6 for 2.4, eth7 for 5Ghz), while keeping other wired ethernet ports for a complex VPN setup.
So I created a new bridge br1, and moved eth0, eth6 and eth7 into it:
Bridge WAN with WLAN
So I created a new bridge br1, and moved eth0, eth6 and eth7 into it:
Code:
brctl addbr br1 brctl delif br0 eth0 brctl delif br0 eth6 brctl delif br0 eth7 brctl addif br1 eth0 brctl addif br1 eth6 brctl addif br1 eth7 ip address del 192.168.1.2/24 dev eth0 ip address br1 192.168.1.2/24 broadcast +...