Who Me Too'd this topic

yata001
Star

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
    1. config set endis_wl_radio=0
    2. ifconfig $(config get wl2g_NORMAL_AP) down
  • For the 5Ghz band use
    1. config set endis_wla_radio=0
    2. ifconfig $(config get wl5g_NORMAL_AP) down
  • For the guest 2.4Ghz band use
    1. config set wlg1_endis_guestNet=0
    2. ifconfig $(config get wl2g_NORMAL_AP) down
  • For the guest 5Ghz band use
    1. config set wla1_endis_guestNet=0
    2. 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.

Model: RBK53| Orbi Router + 2 Satellites Orbi WiFi System
Who Me Too'd this topic