NETGEAR is aware of a growing number of phone and online scams. To learn how to stay safe click here.
Forum Discussion
RossBev
Dec 28, 2017Follower
HOW TO DISABLE 5G TEMPORARILY ON ORBI ROUTER
HELLO, I own an Orbi system and recently obtained a Personal Weather station that does direct uploads to various weather sites online. The weather station will only connect to Wi-Fi via a 2.4GHZ sys...
guzzijason
Dec 28, 2017Apprentice
There seem to be a number of people having the same sort of issue lately. I believe the older firmware let you power off the radios, but the recent firmware does not. You can manually disable a specific interface on the command line, but there is an autmated watchdog process that will bring it back up again, usually within seconds.
I did work out a hacky way of temporarily downing the 5 GHz interface that might work for you:
- Shut off your satellites (otherwise, you need to repeat the following steps on all of them, in addition to router)
- Enable telnet on the router (from the /debug.htm page of the web interface)
- telnet to router
- After loggin in, run the following comand script on the command line (yes, 1 big line):
seconds=60; x=0; while [ $x -lt $seconds ]; do ip link set down dev $(config get wl5g_NORMAL_AP); x=$(( x + 1 )); echo "down $x"; sleep 1; done
This command will determine the interface for the primary 5 GHz, and shut it down for 60 seconds. If you want to change the amount of time that the interface stays down, simply change the "seconds=60" part of the script to whatever you want.
This doesn't make any permanent config changes, so if worse comes to worse, simply reboot the router and you should be right back to where you were.
Good luck!
Armanny
May 01, 2018Aspirant
I tried it twice but it gave me a syntax error, not sure why. unexpected "done"
- guzzijasonMay 09, 2018Apprentice
You're missing the closing paren after "wl5g_NORMAL_AP", before the semicolon.
- Mike734Jun 11, 2018Star
I'm trying this. When the script runs, should it run by repeting the line "down xx"?
- guzzijasonJun 11, 2018Apprentice
I think that's right (I can't test it at the moment).
The script shuts down the interface, but if memory serves, there is a sort of watchdog that automatically brings the interface back up after a while, which is why the "ip set link down ..." portion is looped repeatedly, for 60 seconds in the example I gave.