What's new
  • SNBForums Code of Conduct

    SNBForums is a community for everyone, no matter what their level of experience.

    Please be tolerant and patient of others, especially newcomers. We are all here to share and learn!

    The rules are simple: Be patient, be nice, be helpful or be gone!

Solved Wireless radio timer for AI Mesh node

Milan

Senior Member
I have connected the AI Mesh node via Ethernet. Is there a possibility to set the timer for wireless radio to switch it off and on only on this node?
 
buy a smart outlet and let it turn the Mesh node router on and off
 
buy a smart outlet and let it turn the Mesh node router on and off
Possibility too, but I don't want to switch it off. Is there a way to switch off the radio from the command line?
 
Possibility too, but I don't want to switch it off. Is there a way to switch off the radio from the command line?

Yes there is, but you need to know which wireless interface you want to turn on and off. (I think RTRMON can help with this if you aren't sure which interface is which)
If you want to determine which radio is which without installing RTRMON I think you can use the below wl commands. For example:

1. If I run this command on my node:

Code:
wl -i wl2.1 status

I get this output:

Code:
SSID: "PRIMARY NETWORK SSID-6GHz"

2. If I run this command shows me the 5GHz interface SSID:

Code:
wl -i wl1.1 status

Output is:

Code:
SSID: "PRIMARY NETWORK SSID-5GHz"

So with this, I can confirm that the interface name "wl2.1" is for my 6GHz SSID/interface and "wl1.1" is my 5GHz interface.

3. Then, assuming that I want to take offline the 5GHz interface; i can run this command:


Code:
wl -i wl1.1 down

To bring it back up I do:

Code:
wl -i wl1.1 up

Ideally you can only disable the bss (Basic Service Set) itself. The usual way is:

Code:
wl -i wl2.1 bss down

And to bring back online:

Code:
wl -i wl2.1 bss up
 
Yes there is, but you need to know which wireless interface you want to turn on and off. (I think RTRMON can help with this if you aren't sure which interface is which)
If you want to determine which radio is which without installing RTRMON I think you can use the below wl commands. For example:

1. If I run this command on my node:

Code:
wl -i wl2.1 status

I get this output:

Code:
SSID: "PRIMARY NETWORK SSID-6GHz"

2. If I run this command shows me the 5GHz interface SSID:

Code:
wl -i wl1.1 status

Output is:

Code:
SSID: "PRIMARY NETWORK SSID-5GHz"

So with this, I can confirm that the interface name "wl2.1" is for my 6GHz SSID/interface and "wl1.1" is my 5GHz interface.

3. Then, assuming that I want to take offline the 5GHz interface; i can run this command:


Code:
wl -i wl1.1 down

To bring it back up I do:

Code:
wl -i wl1.1 up

Ideally you can only disable the bss (Basic Service Set) itself. The usual way is:

Code:
wl -i wl2.1 bss down

And to bring back online:

Code:
wl -i wl2.1 bss up
Thanks, it is working very well.
 

Latest threads

Support SNBForums w/ Amazon

If you'd like to support SNBForums, just use this link and buy anything on Amazon. Thanks!

Sign Up For SNBForums Daily Digest

Get an update of what's new every day delivered to your mailbox. Sign up here!
Back
Top