• Welcome to Tux Reports: Where Penguins Fly. We hope you find the topics varied, interesting, and worthy of your time. Please become a member and join in the discussions.

How to bypass the proxy for a range of ip-adresses

A

A. de Regt

Flightless Bird
ls,


I need to set the IE to bypass the proxy for a complete network. I know you
can use the asterix as a wildcard. But in the examples I have seen so far,
it looks as if this can only be done with full-nibble masks, like
255.255.0.0. and 255.255.255.0
So the comlete network of 192.168.1.0 thru 192.168.1.255 can be put in with:
192.168.0.*
But I need to bypass this range: 10.200.60.128/26 (so the mask is:
255.255.255.192)
I would like to know the correct syntax to do this.

Regards,

Adrie de Regt
 
R

Rob

Flightless Bird
A. de Regt <A.deRegt@inter.NL.net> wrote:
> ls,
>
>
> I need to set the IE to bypass the proxy for a complete network. I know you
> can use the asterix as a wildcard. But in the examples I have seen so far,
> it looks as if this can only be done with full-nibble masks, like
> 255.255.0.0. and 255.255.255.0
> So the comlete network of 192.168.1.0 thru 192.168.1.255 can be put in with:
> 192.168.0.*
> But I need to bypass this range: 10.200.60.128/26 (so the mask is:
> 255.255.255.192)
> I would like to know the correct syntax to do this.


I think this is only possible when you write and use an automatic
proxy configuration script.

This is a javascript that you put on a webserver which provides a
function FindProxyForURL(url, host)

In this function you can do any check you like and make it use a
proxy or a direct access.
 
Top