Split the Orbi RBR750 2.4ghz and 5ghz SSIDs permanently
If you want the split SSID to persist on boot, do the following:
-
Grab your two SSIDs:
uci show | grep -i SSID_NAME_HERE
Output:wireless.FhAp2.ssid='SAME_SSID', wireless.FhAp5.ssid='SAME_SSID'
-
FhAp2 is your 2.4ghz SSID string. Write that down.
-
Create a new file with the following name and in this directory:
/etc/rc.d/S99whatever_here
The requirement is that the file is named S99, and then whatever else afterward (such as S99Split). S99 indicates "Start" and the 99 indicates the order at which it's executed, which we want at the end of boot. -
vi /etc/rc.d/S99whatever_here
Look up how to edit and save/quit if you are unfamiliar with vi -
Paste the following bash script:
#!/bin/sh /etc/rc.common
START=99
start() {
uci set wireless.FhAp2.ssid='DIFFERENT_SSID'
uci commit wireless
reload_config
}
-
chmod +x /etc/rc.d/S99whatever_here
-
Reboot for results to take effect
Note: You do not need to do this to the satellites as it will propegate to those systems automatically.