kingdaveontour
New Around Here
ANy help appreciated. When i tick 'Disable 11b'in Wireless Mode, InSSIDer shows that i have a config mismatch and indicates that one node is broadcasting on b/g/n/ac/ax and the other is g/n/ac/ax?
ANy help appreciated. When i tick 'Disable 11b'in Wireless Mode, InSSIDer shows that i have a config mismatch and indicates that one node is broadcasting on b/g/n/ac/ax and the other is g/n/ac/ax?
SSH into the node, then the NVRAM variable you want to set;
wl0_rateset=default/ofdm where you'll find is set to ofdm on the router and default on the node. "NVRAM set wl0_rateset=ofdm", then "NVRAM commit" - no more 802.11b
Not to be confused with "wl_nband=1(2)" which values based on that status of how the check box to disable 11.b is set (1 not checked, 2 checked) but only for the GUI...
Here's how the AX88, and AX86 nodes, look like now; note: no "b" or its basic rates... View attachment 47355
View attachment 47354
You could probably use a variation of this. Although it would be a bit messy to script it.I actually like to disable basic rates below 12 just to keep one distant N or AC device from slowing down the network too much. Not sure if that can be done on the Asus, my Unifi supports it though.
You could probably use a variation of this. Although it would be a bit messy to script it.
Thank you, working fine after ticked "Optimization" on aimesh node.SSH into the node, then the NVRAM variable you want to set;
wl0_rateset=default/ofdm where you'll find is set to ofdm on the router and default on the node. "NVRAM set wl0_rateset=ofdm", then "NVRAM commit" - no more 802.11b
Not to be confused with "wl_nband=1(2)" which values based on that status of how the check box to disable 11.b is set (1 not checked, 2 checked) but only for the GUI...
Here's how the AX88, and AX86 nodes, look like now; note: no "b" or its basic rates... View attachment 47355
View attachment 47354
if [ "$(nvram get wl_nband)" = "2" ] && [ "$(nvram get wl0_rateset)" = "default" ]; then nvram set "wl0_rateset"="ofdm";nvram commit; fi
How to turn on custom scripts from ssh session?Thank you, working fine after ticked "Optimization" on aimesh node.
I,m using this:
Code:if [ "$(nvram get wl_nband)" = "2" ] && [ "$(nvram get wl0_rateset)" = "default" ]; then nvram set "wl0_rateset"="ofdm";nvram commit; fi
How to turn on custom scripts from ssh session?
nvram set jffs2_scripts=1
nvram commit
Thanks !Code:nvram set jffs2_scripts=1 nvram commit
Thread starter | Title | Forum | Replies | Date |
---|---|---|---|---|
B | Disable Specific WiFi channels - ASUS RT-AX88U | ASUS Wi-Fi | 8 |
Welcome To SNBForums
SNBForums is a community for anyone who wants to learn about or discuss the latest in wireless routers, network storage and the ins and outs of building and maintaining a small network.
If you'd like to post a question, simply register and have at it!
While you're at it, please check out SmallNetBuilder for product reviews and our famous Router Charts, Ranker and plenty more!