cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
3809
Views
0
Helpful
4
Replies

PAC file not working in IE 9

w8888tLong
Level 1
Level 1

I have the IE9 browser set to use the PAC file, but it does not send traffic to the WSA.  I have tried it locally from the C: drive and downloading it from the WSA PAC source.  Putting the link to the file opens it from either location.  It seems that it is not processing it.               

Some document suggested to name it proxy.pac; this did not help.

Here is the code to proxy when the WSA is available and go direct to the website when the WSA is not in the network the user is in (mobile users)

function FindProxyForURL(url,host){

    return "PROXY 10.100.2.2:80;

    DIRECT;"

}

4 Replies 4

Christian Rahl
Level 1
Level 1

Try removing the DIRECT. Also try using the hostname for the WSA. 

Christian Rahl

Customer Support Engineer

Cisco Web Content Security Appliance

Cisco Technical Assistance Center RTP

Thanks for the quick response.
Taking out DIRECT fixed this. Leaving the IP works, since the WSA is not in DNS.

So many examples include the DIRECT...

I made it work with the DIRECT; must have been a syntax error...So it looks like this with DIRECT on the same line

function FindProxyForURL(url,host){

    return "PROXY 10.100.2.2:80; DIRECT;"
}

Thanks for helping troubleshoot

I would highly recommend putting the WSA in the DNS resolution. Depending on what kind of authentication you are performing, you will need to resolve the hostname.

Christian Rahl

Customer Support Engineer

Cisco Web Content Security Appliance

Cisco Technical Assistance Center RTP