How can I change the options of a device, example "radio0" with multiple interfaces using UCI?
For example, I would like to add a mac in 'default_radio0' and change the bssid option in the other one
What would be the command
uci set wireless. @ wifi-iface [0]. ?????
config wifi-iface 'default_radio0'
    option device 'radio0'
    option network 'lan'
    option mode 'ap'
    option encryption 'none'
    option macfilter 'allow'
    option ssid 'KW_2400'
    list maclist 'xx:xx:xx:xx:xx:xx'
    list maclist 'yy:yy:yy:yy:yy:yy'
config wifi-iface
    option ssid 'WIFI_myJob'
    option encryption 'none'
    option device 'radio0'
    option mode 'sta'
    option bssid 'zz:zz:zz:zz:zz:zz'
    option network 'wan wwan'