Questions tagged [pac]

A proxy auto-config (PAC) file defines how web browsers and other user agents can automatically choose the appropriate proxy server for fetching a given URL.

38 questions
1
vote
0 answers

Proxy PAC not working

I have an insanely simple proxy pac file i'm trying to get working.. it looks like this: function FindProxyForURL(url, host) { return "PROXY 66.232.xxx.xxx:808"; } FYI, I xxx'd out the IP to hide it for this question :) I have validated that…
99823
  • 133
  • 4
1
vote
1 answer

Proxy - Pac file - ipv6 with myAdresse()?

I'm tryig to make a proxy pac file for my Squid. I suppose to change redirection if the user is in my network or if he is at home for example, and I try to make it whith the myAdress() function. I have test this PAC, whith most of function that we…
user63946
  • 15
  • 2
  • 6
1
vote
1 answer

Filter HTTPS URLs with non-transparent proxy

I have set up a Squid v.3.1 + Squidguard, the proxy is configured on each browser via a proxy.pac file. Now if an user goes to a blocked site with HTTP (e.g. http://www.facebook.com) the Url filter works and the user is redirected to the block page,…
J.B.
  • 305
  • 7
  • 22
1
vote
1 answer

How to override the network DHCP Server settings to be specific to my own .conf file?

Basically, I have want to test out WPAD(Web Proxy Autodiscovery Protocol ) , PAC. But I would like to do it without touching the Network DHCP server. So, can you suggest a way in which I can achieve that. Will changing the local /etc/dhclient.conf…
rahulg
  • 407
  • 1
  • 4
  • 10
1
vote
0 answers

proxy auto configuration file requests

What might be causing bursts of 10 - 20 proxy auto config file requests? I am seeing bursts of requests for our PAC file, which is hosted on an internal Apache server. Some bursts are up to 20 per second from the same host. Looking in on the…
Pete
  • 271
  • 1
  • 4
  • 19
1
vote
1 answer

ISA 2006 switch to kerberos causes authentication problems for some users

In our large corporate environment we have 4 ISA 2006 servers set up. The users (WinXP IE8) are configured with an automatic proxy configuration script. Recently, the PAC was modified to return FQDN instead of IP addresses of the ISA servers. …
Ed Manet
  • 522
  • 1
  • 5
  • 16
1
vote
2 answers

Proxy Auto config (PAC) exception

I want to configure a proxy pac file that has the same list of exception as the ones I have on IE -> Internet Options -> Connections -> LAN settings -> Advanced and after I can see the exception in the part that reads: "Do not use proxy server for…
Artur Carvalho
  • 356
  • 4
  • 13
1
vote
1 answer

.pac file and Firefox's network.proxy.socks_remote_dns setting

Does anyone know if Firefox's setting network.proxy.socks_remote_dns would apply to a SOCKS proxy set by a .pac file or only when manually entered in network options? I ask because I use a dynamic ssh tunnel at work and was trying to automate…
emergence
  • 121
  • 4
0
votes
0 answers

How to get proxy from PAC file using powershell?

My company administrators have setup our machines to get proxy settings from a .pac file. The .pac file is complex and the proxy to use for a URL changes occasionally. I often need to write powershell scripts that run tools that originate from linux…
Martin Brown
  • 434
  • 8
  • 25
0
votes
1 answer

Configure Squid Proxy with PAC File

So i have squid proxy server installed and running on my ec2 instance. my task is to have any pc client connected to the proxy only the proxy when accessing certain sites and will use regular wifi connection for everything else. Something like a…
Ghaith Haddad
  • 53
  • 1
  • 3
  • 6
0
votes
0 answers

how to setup openVPN client proxy using PAC (proxy auto-config file)?

I am using an openVPN client to connect to a VPN. But the network that I am currently in sits behind a proxy and it manages proxy via PAC files (Proxy Auto-Config files). I am looking at…
g.revolution
  • 121
  • 1
  • 6
0
votes
0 answers

Which options are required to send a PAC file URL via DHCP to Android devices?

I would like the Android devices which connect to WiFi networks to be automatically configured to proxy their HTTP(S) traffic through a web proxy. There is a PAC file available though an URL, which points to a squid proxy. The PAC URL manually…
WoJ
  • 3,365
  • 8
  • 46
  • 75
0
votes
1 answer

Can squid block an access to the specific IP-address which is resolved with a domain name?

I have a .pac file like below. if (dnsDomainIs(host, ".example.com")) { hostip = dnsResolve(host); if (isInNet(hostip, "202.0.0.0", "255.255.255.0")) { return "DIRECT"; } } Now I'd like to convert this into squid.conf. A client…
kujiy
  • 446
  • 5
  • 11
0
votes
1 answer

How to properly configure PAC file?

I have a squid + diladele proxy box in my network. I have setup a PAC file that should do the following: 1)If the ip address of the client belongs to the current network (192.168.0.0/24) and tries to access a resource outside the network use the…
Aaron Ullal
  • 163
  • 1
  • 2
  • 10
0
votes
3 answers

Exclude URL with non-stanard port from Proxy via PAC/WPAD file

I'm running a Squid proxy and want to exclude a certain web address that is accessed over a non-standard port from going through the proxy, rather than open the port in an ACL within squid.conf (seems its a specific usage case). In my case the port…
James White
  • 654
  • 3
  • 17
  • 32