Radio0 stopped working

Hello,

I created some custom wireless networks on the 5g radio0, and now my 2.4g radio1 stopped working. It broadcasts, but I can't connect to it.

Can you please look over my wireless config file.

cat /etc/config/wireless

config wifi-device 'radio0'
        option type 'mac80211'
        option path 'platform/soc/c000000.wifi'
        option band '5g'
        option htmode 'HE80'
        option country 'US'
        option channel 'auto'
        option hwmode '11a'
        option cell_density '0'
        option channels '36,40,44,48'
        option random_bssid '1'

config wifi-device 'radio1'
        option type 'mac80211'
        option path 'platform/soc/c000000.wifi+1'
        option band '2g'
        option country 'US'
        option channel 'auto'
        option htmode 'HE40'
        option cell_density '0'
        option random_bssid '1'

config wifi-iface 'default_radio0'
        option device 'radio0'
        option mode 'ap'
        option encryption 'psk2'
        option wds '1'
        option ifname 'wlan1'
        option key '<REDACTED>'
        option network 'Work5G'
        option ssid 'WRT3200ACM-Work5G'
        option macaddr '<REDACTED>'

config wifi-iface 'guest2g'
        option mode 'ap'
        option ifname 'wlan0-1'
        option encryption 'psk2'
        option guest '1'
        option wds '1'
        option isolate '1'
        option key '<REDACTED>'
        option hidden '0'
        option device 'radio0'
        option network 'guest1'
        option ssid 'WRT3200ACM-5.0-Guest1'
        option macaddr '<REDACTED>'
        option disabled '0'

config wifi-iface 'wifinet2'
        option ssid 'WRT3200ACM-5.0-Guest2'
        option encryption 'psk2'
        option device 'radio0'
        option mode 'ap'
        option network 'guest2'
        option key '<REDACTED>'
        option ifname 'rax2'
        option macaddr '<REDACTED>'

config wifi-iface 'wifinet3'
        option ssid 'WRT3200ACM-2.4-Guest'
        option encryption 'psk2'
        option device 'radio1'
        option mode 'ap'
        option network 'guest'
        option key '<REDACTED>'
        option macaddr '<REDACTED>'
        option ifname 'ra0'

While the issue is probably what this:

is meant to deal with, you will have to create unique BSSIDs in the normal fashion, rather than a nonexxistent option.

Edit: as per original issue, removing all occurrences of macaddr also resolves.

What does iwinfo output?

Can you provide source of this option?

Please connect to your OpenWrt device using ssh and copy the output of the following commands and post it here using the "Preformatted text </> " button:
grafik
Remember to redact passwords, MAC addresses and any public IP addresses you may have:

ubus call system board
cat /etc/config/network
cat /etc/config/wireless
cat /etc/config/dhcp
cat /etc/config/firewall

I first tried deleting the lines option random_bssid '1' from both radio's, ran uci commit wireless, but after a reboot, they came back.
I then left the lines, but changed the value to 0, and then I was able to connect to the network, so thank you.

Any closing thoughts?

You are welcome to add requested references.