Bridging wlan to lan on new interface not responding

Hi.

I have three networks (individual subnets). lan, guest and devices.

There are four wlan networks:

radio0:

  • radio0_main
  • radio0_guest

radio1:

  • radio1_devices
  • radio1_guest

The lan interface is bridged with lan0,lan1,lan2, radio0_main ← So 3 lan ports and one wlan.
The guest interface is bridged with lan4, radio0_guest, radio1_guest ← 1 lan port and two wlan guest wifis.
Currently the devices interface is not bridged but is associated with radio1_devices.

Everything works as expected. My /etc/config/network for this is posted below.

The only change I want to make, is to now bridge the lan3 with radio_1_devices to devices interface.
When I do this, ipv4 dhcp is lost across all networks and the router is inaccessible and I need to rollback. I dont understand why.

Current network config:

config interface 'loopback'
        option ifname 'lo'
        option proto 'static'
        option ipaddr '127.0.0.1'
        option netmask '255.0.0.0'

config globals 'globals'
        option ula_prefix 'fdAA:A9E:A9E::/48'

config interface 'lan'
        option type 'bridge'
        option proto 'static'
        option netmask '255.255.255.0'
        option bridge_empty '1'
        option _turris_mode 'managed'
        option ipaddr '192.168.22.1'
        option ip6assign '60'
        option ifname 'lan0 lan1 lan2'

config interface 'wan'
        option ifname 'eth2'
        option macaddr 'XXXXXXX'
        option username 'XXX'
        option password 'XXXXXX'
        option ipaddr '192.168.13.2'
        option netmask '255.255.255.0'
        option gateway '192.168.13.1'
        option proto 'dhcp'
        option ipv6 '1'

config interface 'WAN6'
        option ifname 'eth2'
        option proto 'dhcpv6'
        option username 'XXXX'
        option password 'XXXXXX'
        option reqprefix 'auto'
        option reqaddress 'try'

config interface 'guest_turris'
        option enabled '1'
        option type 'bridge'
        option proto 'static'
        option ipaddr '10.111.222.1'
        option netmask '255.255.255.0'
        option bridge_empty '1'
        list ifname 'lan4'
        option ip6assign '64'

config interface 'vpn_turris'
        option enabled '1'
        option ifname 'tun_turris'
        option proto 'none'
        option auto '1'

config interface 'modem'
        option ifname 'eth2'
        option proto 'static'
        option ipaddr '192.168.13.2'
        option netmask '255.255.255.0'
        option ip6assign '60'

config interface 'devices'
        option proto 'static'
        option ipaddr '192.168.33.1'
        option netmask '255.255.255.0'
        option ip6assign '60'

Adding the bridge settings and option ifname lan3 to interface devices breaks the network (no ipv4 DHCP on any network).