Can't access WebGUI - SquidGuard (Not to Allow IP addresses in URL)
-
I installed and testing pfSense 2.0 beta.
How can I access the WebGUI (192.168.100.1 on my setup) if I enabled the "Not to Allow IP addresses in URL" in squidGuard?Thanks.
-
Check the squid option to bypass the proxy for local networks.
-
Do you mean the "Bypass proxy for Private Address Space (RFC 1918) destination"?
-
Do you mean the "Bypass proxy for Private Address Space (RFC 1918) destination"?
I'm using non-transparent proxy and wpad as I read from other tutorials, and enabling the above resulted in an error.
-
Ah, yeah that may only work for transparent.
What you want to do can be hacked into the wpad data files then. It's just a little bit of javascript, you can add a test in there to match anything except your local network(s).
-
Thank you very much.
I don't know javascript (yet) but I found some reference. For those who might need the same my wpad.dat is below:function FindProxyForURL(url,host)
{
if (shExpMatch( host, "192.168.100.*"))
return "DIRECT";
else
return "PROXY 192.168.100.1:3128";
}192.168.100.0/24 is my LAN