Hi All, I am running Squid 2.5.STABLE10. All the clients in our company useproxy.pac file in the browser settings. I need some help with theproxy.pac file. At the moment I have the following configuration: // Assign Proxy based on IP Address of Client if (isInNet(myIpAddress(), "172.16.96.0", "255.255.240.0")) return "PROXY proxy03.au.ap.abnamro.com:3128; PROXY proxy04.au.ap.abnamro.com:3128"; If the source IP address is from that IP range, it should go toproxy03 first and if proxy03 is down it should go to proxy04. But thatis not happening. If proxy03 is down, it is not going to proxy04. Isthere any syntax error in the above config. What is the correct syntax in proxy.pac file so that if proxy03 isdown it will go to proxy04? Thanks.