Proxy pac file about
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello Support,
We are use proxy device and proxy pack file.
Autocad not working when checked pack file. but when uncheck autocad is work.
Can you help us?
Pack File Detail:
function FindProxyForURL(url, host)
{
// Define proxy server
var proxyserver = "PROXY 192.16x.x.x:8080";
// Make host lowercase
var lhost = host.toLowerCase();
host = lhost;
var lurl = url.toLowerCase();
url = lurl;
//SUB-FQDNs of ExpressRoutable wildcards which need to be explicitly sent to the proxy at the top of the PAC because they arent ER routable
if ((shExpMatch(host, "*.click.email.microsoftonline.com"))
|| (shExpMatch(host, "*.portal.microsoftonline.com")))
{
return "DIRECT";
}
//EXPRESS ROUTE DIRECT
else if ((isPlainHostName(host))
|| (shExpMatch(host, "*.asm.skype.com"))
|| (isPlainHostName(host)))
{
return "DIRECT";
}
// If Azure public peering is available the following can be added to the Expressroute section above and sent direct via ER. If not these can be sent via the internet i.e delete them from the PAC file.
//*.adhybridhealth.azure.com
//Catchall for all other traffic to proxy
else
{
return "DIRECT";
}
}
Best Regards