WDAP file for proxy autoconfiguration not working

Hi
we are just trialing using a pac file for out machines.
on windows machines it works fine when set to autodetect settings.
however on mageia machines it is very hit and miss. even with the url explicitly entered into the network settings page it will not apply any settings.
I have downloaded the file to the machine at /etc/proxy.pac and i have set the location to file:///etc/proxy.pac and it does not detect the settings at all.
although the file works 100% of the time on my windows machines i still made a very basic config and that also does not work reliably.
can anyone offer any advice.
I have removed all of the additional config and just put a very basic one as below and that still does not work.
thanks
we are just trialing using a pac file for out machines.
on windows machines it works fine when set to autodetect settings.
however on mageia machines it is very hit and miss. even with the url explicitly entered into the network settings page it will not apply any settings.
I have downloaded the file to the machine at /etc/proxy.pac and i have set the location to file:///etc/proxy.pac and it does not detect the settings at all.
although the file works 100% of the time on my windows machines i still made a very basic config and that also does not work reliably.
can anyone offer any advice.
I have removed all of the additional config and just put a very basic one as below and that still does not work.
- Code: Select all
function FindProxyForURL(url, host)
{
if (isInNet(myIpAddress(), "192.168.0.0", "255.255.255.0"))
return "PROXY 192.168.0.117:3128";
else
return "DIRECT";
}
thanks