Page 1 of 1

WRT54G Guest Wifi Invalid

Posted: Fri Jan 20, 2017 8:24 pm
by pbix
The brcm47xx-generic-standard image appears to include guest wifi support on the configuration page, however, enabling it causes all Wifi to cease operation.

I do not think a guest Wifi can be supported on this chipset. At least I know it is not supported on my WRT54G-TM so I think this option should be removed from the configuration page.

Tested with v1.9.1 and WRT54G-TM

Re: WRT54G Guest Wifi Invalid

Posted: Sun Jan 22, 2017 1:23 am
by Lantis

Code: Select all

var isb43 = wirelessDriver == "mac80211" && (!GwifiN) ? true : false ;
If you type "isb43" at the developer console in Google Chrome/Firefox, does it come back with True? If it does (and i hope it does), we can just add a flag to disable guest configs for this driver (which is not capable of multi-ssid and hence why the wifi doesn't function at all)

Line 1319 becomes

Code: Select all

var gns = (wirelessDriver == "mac80211" && !isb43) || wirelessDriver == "atheros"; //drivers that support guest networks

Re: WRT54G Guest Wifi Invalid

Posted: Sun Jan 22, 2017 5:48 pm
by pbix
I checked and isb43 does return 'true' on this router and wirelessDriver returns 'mac80211'

Re: WRT54G Guest Wifi Invalid

Posted: Mon Jan 23, 2017 2:26 am
by Lantis
Cool , i've made the change and i'll push it to Eric soon. :geek:

--Edit--
https://github.com/ericpaulbishop/gargoyle/pull/596