So with aimesh enabled, you can't reach the management gui of the nodes, but you can still ssh into them (you may need to enable ssh on the master node first) and then run commands to enable/disable radios and even set their power level. I've only tried setting the power level and I think it works.
wl0 refers to the 2.4GHZ radio and wl1 refers to the 5GHZ radio. Not sure what wl itself is related to.
The nvram variables to turn on/off each radio are:
- wl_radio (???)
- wl0_radio (2.4GHZ)
- wl1_radio (5GHZ)
To see your current variable settings, try:
nvram show | grep _radio
To turn off all radios:
nvram set wl_radio=0
nvram set wl0_radio=0
nvram set wl1_radio=0
nvram commit
reboot
To turn on all radios:
nvram set wl_radio=1
nvram set wl0_radio=1
nvram set wl1_radio=1
nvram commit
reboot
The transmit power level (1-100) variables are:
- wl_txpower=50 (???)
- wl0_txpower=50 (2.4GHZ)
- wl1_txpower=50 (5GHZ)
To see your current variable settings, try:
nvram show | grep power
To set the radio to 50%:
nvram set wl_txpower=50
nvram set wl0_txpower=50
nvram set wl1_txpower=50
nvram commit
reboot