I am actually planning a fast an easy to implement my proxy on firefox using FirefoxADM (To manage firefox from GPO) and WPAD file.
So I have my proxy actually configured in Transparent mode and a profile configured in AD SSO (This is the profile that my users are going to use when they will have they browers configured. I am already using as for testing). But I see something pretty odd. When I configure firefox using the manual proxy configuration :

I can see the usernames passing in the HTTP/S live log. (Which is correct). But when I use the automatic proxy configuration URL pointing to my WPAD file containing :
function FindProxyForURL(url, host) {
// Skip the proxy application for the following url's
if (shExpMatch(url, "*.arborite.com:*/*") ||
shExpMatch(url, "*.microsoft.com") ||
shExpMatch(url, "*.windowsupdate.com") ||
shExpMatch(url, "*.symantec.com"))
{
return "DIRECT";
}
else
return "PROXY monfw01.arborite.com:8080; DIRECT;"; //Fail-over order
}
I do not see the usernames in the HTTP/S live log. Only the IP addresses.
Any ideas? I would surely like more to use the wpad file so we can skip our internal addresses from passing into the astaro...
Thanks,
MojoQC
This thread was automatically locked due to age.