NETGEAR is aware of a growing number of phone and online scams. To learn how to stay safe click here.

Forum Discussion

RocketSquirrel's avatar
Nov 06, 2021
Solved

How to enable "Allow guests to see each other"

I have a guest in my house on the guest network who wants to have 2 of his devices talk to each other. When I go to the Guest Network page of the RBR50 GUI, "Allow guests to see each other and access...
  • RocketSquirrel's avatar
    RocketSquirrel
    Nov 07, 2021

    Eureka, I have found it!

     

    Grepping through the /www directory, I found the file WLG_wireless_guest1.htm. I changed the line

    if(enable_ap_flag == 1 || fbwifi_enable == '1' || enable_extender_flag == '1')
        setDisabled(true, form.allow_access);

    to

    if(/* enable_ap_flag == 1 || */ fbwifi_enable == '1' || enable_extender_flag == '1')
        setDisabled(true, form.allow_access);

    to comment out the check for AP mode and the check box is now enabled and seems to work.