Questions tagged [proxy.pac]

7 questions
9
votes
11 answers

Internet Explorer isn't auto-discovering http://wpad/wpad.dat auto-config

I am being driven to frustration by this problem. I have set up a file called wpad.dat (essentially, a proxy.pac file renamed) and put it on an internal web site. I've set up DNS entries so host name wpad is a CNAME for the web server. I set the…
2
votes
2 answers

Where's the best place to deploy a proxy.pac file to?

Instead of having separate proxy settings in Group Policy for several web browsers (Google Chrome, Internet Explorer and FrontMotion Firefox), I decided that it would be better to create a proxy.pac file and point each browser at that via Group…
Matty Brown
  • 675
  • 2
  • 13
  • 24
2
votes
1 answer

How to config automatic proxy from DHCP in windows server 2003?

I am running squid proxy, and currently my users are being configured directly to the squid server. I am trying to setup a proxy.pac to simplify the process. The proxy.pac working fine in the network by configuring the configuration URL, but we need…
DucDigital
  • 1,441
  • 3
  • 18
  • 26
1
vote
1 answer

Is is possible to configure Solaris to use an autoproxy PAC script (for the system, not the browser)?

Is there a way to configure Solaris system settings (not browser configuration) to delegate proxy configuration/logic to a Proxy Auto Configuration (PAC) script? Most browsers have support for PAC scripts. I am interested in leveraging an existing…
Mads Hansen
  • 113
  • 1
  • 5
1
vote
0 answers

Getting trouble explicit proxy

I'm using google geocoder in my PHP application. It's working fine, but the issue is: Recently network changes were done in office. Now we are using explicit proxy (wpad.dat) in place of transparent proxy and in the Firewall the allow any to any…
Mahesh.D
  • 127
  • 1
  • 1
  • 9
1
vote
3 answers

Proxy.pac myIpAddress() returns local address and not ethernet adapters

This is kinda a Part two from here. When clients VPN into my network they get assigned an Ip address which in turn gives them the 252 option from the DHCP. The auto detect then grabs this file What I need essentially is a way for the proxy.pac to…
Qwerty
  • 1,504
  • 2
  • 15
  • 24
0
votes
2 answers

shExpMatch and Internet Explorer 6 in a proxy.pac

I'm trying to setup a proxy.pac file that may be used for IE6 clients. This is basically it: function FindProxyForURL(url, host) { if (shExpMatch(host, "*example.com*")) return "DIRECT"; return "PROXY 1.2.3.4:8080"; } This file tells the…
Harley
  • 2,177
  • 6
  • 25
  • 29