I am trying to configure a bridge with 2 legs:
# cat /etc/config/network
...
config interface 'bb'
option auto '1'
option enabled '1'
option igmp_snooping '1'
option mtu '1500'
option proto 'none'
option stp '0'
option type 'bridge'
option ifname 'wlan1 eth0.3170'
Interface eth0.3170 gets created and gets added as a leg to the br-bb bridge, if I invoke brctl show
, it shows up one of the two legs (eth0.3170), but it lacks the wlan1 leg:
# brctl show
bridge name bridge id STP enabled interfaces
br-bb 7fff.0015619853a7 no eth0.3170
...
Do you know why this leg is not added? Is it possible it's related to the fact it's a wireless interface? What am I missing here to make this bridge working?