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!
Mudds
Jan 05, 2018Star
!00% on the money!
After enabling Telnet - I used Putty to connect and just pasted the string below. I did increase it to 300 seconds (5 mins) just to make sure I was able to do everything on the setup La Crosse App (like scan the barcodes for the station and sensor).
Everything else is perfect. I willl be sending this to the La Crosse support since I have been working with them to resolve this issue.
guzzijason Thank you for finding this solution!
- Rcameron17Jan 10, 2018Tutor
Im having the same issues with probably the exact same weather station. Can you provide either links or slightly more detailed info as it relates to the telnet into orbi router. I think i enabled telnet on my orbi router, but cant seem to figure out how to command line in from mac and run that script.
Any detailed help would be greatly appreciated as i get zero help from the weather station support.
- st_shawJan 10, 2018Master
Rcameron17 wrote:
Im having the same issues with probably the exact same weather station. Can you provide either links or slightly more detailed info as it relates to the telnet into orbi router. I think i enabled telnet on my orbi router, but cant seem to figure out how to command line in from mac and run that script.
Any detailed help would be greatly appreciated as i get zero help from the weather station support.
If you are on a mac, you open the Terminal application. Terminal provides a window with a command line prompt.
Enter the following telnet command on the Terminal command line: telnet 192.168.1.1
(You need to replace 192.168.1.1 with the IP address of your Orbi router.)
You will then see a login prompt from the Orbi.
Enter your Orbi router username (admin) and your password at the prompts. (admin/password is the default)
Now you will be logged into the Orbi and will have a command line on Orbi. The command line prompt should look like "root@RBR50:/#"
At the prompt, you enter the commands posted by guzzijason above all on one line: seconds=60; x=0; ... ; done
Press enter to execute the command.
When all finished, you enter the following command to log out from Orbi: exit
- Rcameron17Jan 10, 2018Tutor
Cant thank you enough for attempting to help.
When i get into terminal and type, "telnet 168.192.1.1" (this is my same ip) get the following error:
" -bash: telnet: command not found"