NETGEAR is aware of a growing number of phone and online scams. To learn how to stay safe click here.
Forum Discussion
yata001
Dec 16, 2018Star
How to disable WiFi on the Orbi Router or Satellite
Enable on telnet on the router or satellite
- For the router, go to http://192.168.1.1/debug.htm
- For a statellite, log into the router, copy the IP address of the satellite, and go to http://<satellite ip>/debug.htm
- Check Enable Telnet
Telnet to the router or satellite
- Use telnet from the command line or terminal (use nc if on the latest macOS)
- Enter the admin username and password
Disable the wifi band by entering the following commands
- For 2.4Ghz band use
- config set endis_wl_radio=0
- ifconfig $(config get wl2g_NORMAL_AP) down
- For the 5Ghz band use
- config set endis_wla_radio=0
- ifconfig $(config get wl5g_NORMAL_AP) down
- For the guest 2.4Ghz band use
- config set wlg1_endis_guestNet=0
- ifconfig $(config get wl2g_NORMAL_AP) down
- For the guest 5Ghz band use
- config set wla1_endis_guestNet=0
- ifconfig $(config get wl5g_GUEST_AP) down
The first command will disable the wifi monitoring for the band and the second command will shutdown the band itself.
The config command write to the nonvolatile memory so the settings will still be there after a restart.