Bypassing Internal IP for Proxy setting
Hi,
Does anyone know who to set the iPad to bypass proxy for any internal IP address? I.e Intranet sites should not need to go through our proxy server
iPad
Hi,
Does anyone know who to set the iPad to bypass proxy for any internal IP address? I.e Intranet sites should not need to go through our proxy server
iPad
You can use the Auto proxy option to do this, but you will have to host a proxy.pac file on a suitable web server on your network that you can point the URL to. This approach has the advantage that you can specifiy different proxies for different domains if necessary, as well as to connect directly for one or more local domains.
Example code based on our setup:
function FindProxyForURL(url, host)
{
if (isPlainHostName(host))
return "DIRECT";
else if (shExpMatch(host, "*.domain1*"))
return "DIRECT";
else if (shExpMatch(host, "*.domain2.*"))
return "DIRECT";
else if (shExpMatch(host, "*.domain3*"))
return "DIRECT";
else
return "PROXY InternetProxy:8080";
}
Bypassing Internal IP for Proxy setting