Closed
Bug 190086
Opened 22 years ago
Closed 22 years ago
PAC: Redundant proxy entries in proxy.pac
Categories
(Core :: Networking, defect)
Tracking
()
People
(Reporter: peter.homberger, Assigned: dougt)
Details
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.2.1) Gecko/20021130
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.2.1) Gecko/20021130
I have already configured my browser for automatic proxy configuration URL:
file://c:\temp\proxy.pac
There is a good description available at
http://wp.netscape.com/eng/mozilla/2.0/relnotes/demo/proxy-live.htmll
how to configure a proxy.pac file.
Example 4 of that document shows how to write a proxy.pac file with redundant
proxy servers. I have to adapd that on my network settings.
My proxy.pac file:
function FindProxyForURL(url, host)
{
if (isPlainHostName(host) ||
dnsDomainIs(host, ".myintranet.com"))
return "DIRECT";
else
return "PROXY 10.1.1.150:8080; " +
"PROXY 10.1.1.151:8080";
}
Where the primary proxy server is 10.1.1.150 and the secondary proxy server is
10.1.1.151.
The problem now is if the primary proxy server goes down, browser requests wan't
be forwarded to the secondary proxy. Exactly the same proxy.pac file is working
well within Microsoft Internet Explorer.
Thanks in advance for your cooperation
Peter Homberger
Reproducible: Always
Steps to Reproduce:
1. Stopping proxy service on primary proxy server
2.
3.
Actual Results:
Browser is receiving a timeout
Comment 1•22 years ago
|
||
*** This bug has been marked as a duplicate of 190068 ***
Status: UNCONFIRMED → RESOLVED
Closed: 22 years ago
Resolution: --- → DUPLICATE
v/dupe
Status: RESOLVED → VERIFIED
Summary: Redundant proxy entries in proxy.pac → PAC: Redundant proxy entries in proxy.pac
Reporter | ||
Comment 3•22 years ago
|
||
There is no solution for that bug.
Status: VERIFIED → UNCONFIRMED
Resolution: DUPLICATE → ---
Comment 4•22 years ago
|
||
>There is no solution for that bug.
What do you mean ?
*** This bug has been marked as a duplicate of 190068 ***
Status: UNCONFIRMED → RESOLVED
Closed: 22 years ago → 22 years ago
Resolution: --- → DUPLICATE
Reporter | ||
Comment 5•22 years ago
|
||
Please give me a solution for that bug. This problem is still occuring.
Status: RESOLVED → UNCONFIRMED
Resolution: DUPLICATE → ---
Comment 6•22 years ago
|
||
This is no support database.
I duped this one to bug 190068 and bug 190068 itself is a dupe of bug 84798.
Bug 84798 is still open and that means that this is a known problem and you must
wait until that bug is fixed.
duping directly to bug 84798
*** This bug has been marked as a duplicate of 84798 ***
Status: UNCONFIRMED → RESOLVED
Closed: 22 years ago → 22 years ago
Resolution: --- → DUPLICATE
VERIFIED/dupe.
This is fixed now. Please try 1.4b or later.
Status: RESOLVED → VERIFIED
QA Contact: benc → pacqa
You need to log in
before you can comment on or make changes to this bug.
Description
•