To accomplish want you want to do, you need to subnet the 192.168.0.0
address space. Unfortunately, one cannot simply choose ranges at "random"
but rather is bound to follow the rules of binary math. You might try this
to get close to the ranges you would like:
Create a subnet with 2 networks - this will give you 64 hosts on each
network, with addresses in the range 192.168.0.64 - 192.168.0.127 and
192.168.0.128 - 192.168.0.191
You would set this up as such:
192.168.0.64/255.255.255.192 (/26)
192.168.0.128/255.255.255.192 (/26)
This means that you would also have to change the subnet masks of each of
your client machines. It is also possible to get closer to the original
ranges you mentioned, but that would require even more subnets.
Tim Howell
> -----Original Message-----
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED]]On Behalf Of Michael D.
> Kirkpatrick
> Sent: January 7, 2000 1:50 PM
> To: [EMAIL PROTECTED]
> Subject: [expert] IP ranges
>
>
> I am using squid and I have found that I am doing something wrong with
> assigning
> IP ranges. All the examples show complete class C ranges. Example:
> 192.168.0.0 - 192.168.0.255 would be entered as one of the following:
> 192.168.0.0/24 or
> 192.168.0.0/255.255.255.0
>
> Now, I just want IP ranges of
> 192.168.0.0 - 192.168.0.99
> 192.168.0.111 - 192.168.0.255
>
> I tried the following:
> 192.168.0.0/192.168.0.99
> 192.168.0.111/192.168.0.255
>
> That does not work... Any suggestions?
>