Executing 'uci get wireless.radio0.disabled' and 'uci get network.wan.disabled' returns 'uci : Entry not found' error. Bellow are the outputs for 'uci show network' and 'uci show wireless'
I am still finding it hard to understand why my network uci configuration file does not have 'disabled' option in the 'wan' section.
This link(https://openwrt.org/docs/guide-user/network/ucicheatsheet) shows that this option should be there.
I didn't see a "disabled" option in your wan section ... therefore uci can't find such option/value. Please post the output of uci show network.wan - thanks.
"disabled" is a not required option in this section and the default (when not set) is "0" aka "enabled". If you insist to set this option type:
# to enable this interface (the default, even without having explicitly set the option)
uci set network.wan.disabled=0
or
# to disable this interface
uci set network.wan.disabled=1
and finally uci commit network to save your changes