Hello.
We are testing Endian Community version before buying an actual device, and it works fine. I'm just having an issue with the http proxy.
I set it up and it works ok , but only if I manually point the client to the proxy ( whether firefox, chrome or IE). Active Directory authentication seems to work fine. Takes LDAP password and username and authenticates against the group that has Internet Access.
My only problem - I can't force clients to use the proxy unless I manually set it up. I have over 100 client devices, so setting all of them manually is not an option. Also even if I did, some of the users a computer savvy enough to go into Internet Options on IE or Options on Firefox and just disable proxy settings. A lot of those users have to have admin rights on their computers ( some custom software requires it, and some users a programmers and this need admin rights on the computer as well)
I tried to setup WAPD as described here kb.endian.com/entry/22/, but it doesn't seem to work. Non of the client machines pick up the settings from the wapd.dat file:
function FindProxyForURL(url, host)
{
if (isPlainHostName(host) || shExpMatch( url, "*192.168.1.1*" ) ) {
return "DIRECT";
}
else if (host == "127.0.0.1") {
return "DIRECT";
}
else if (isInNet(host, "192.168.1.0", "255.255.255.0") {
return "PROXY 192.168.1.1:8080; DIRECT";
}
else {
return "PROXY 192.168.1.1:8080; DIRECT";
}
}
My DNS and DHCP run on a Windows 2003 ( where my AD is).
Does anyone have any suggestions, please?
I really like endian and want to stick with it rather than go to stupid sonicwall ( which is what my management is pressuring me into). So this feature - user web usage tracking is critical for us.
Thank you