RE: subnetting C class into /26 /25 /26, why can this be done?

2003-08-27 Thread Clark Gaylord
When in doubt, do it in binary: 0 = 64 = 0100 128 = 1000 192 = 1100 As a /26 (taking as given the 24 x's not shown for the other three octets): xxyy - y's are the host xx doesn't have the same value from 64-191 As a /25: xyy - y's

RE: Gif IPTunnel networkA-to-networkB not work

2003-08-27 Thread Oldach, Helge
> From: Lars Eggert [mailto:[EMAIL PROTECTED] > Sent: Mittwoch, 27. August 2003 17:45 > To: Oldach, Helge > Cc: hilman firmansyah; [EMAIL PROTECTED] > Subject: Re: Gif IPTunnel networkA-to-networkB not work > Oldach, Helge wrote: > > You must have the networks connected (on the public side), but wh

Re: subnetting C class into /26 /25 /26, why can this be done?

2003-08-27 Thread Daniel C. Sobral
Christoffer Pio wrote: Is it not possible to subnet a C class into 3 nets, like 0-63 64-191 <-- Offending network (?) 192-255 No. If so, why is this? Because it there is no mask that will fit. In binary, you have: 0 63 0011 64 0100 127 0111 128 1

Multiple Gateway IPSEC Problem

2003-08-27 Thread Company 2210
Hi all, I have a really really really annoying problem that I'm trying to rectifiy. I have three gateways, and two ipsec (esp encrypted) links, one of which fowards traffic to the internet. I was provided half a class C (/25) which I have split into 4 subnets of 32 addresses (30 usable). I am c

Re: mbuf usage for an idle machine

2003-08-27 Thread Garrett Wollman
< said: > There are a number of situations in which the mbuf allocator is used to > allocate non-mbufs -- for example, we use mbufs to hold IP fragment > queues, as well as some static packet prototype mbufs, socket options, > etc. You're a few years out of date on that one. Socket options shoul

Re: mbuf usage for an idle machine

2003-08-27 Thread Mike Silbersack
On Wed, 27 Aug 2003, Giovanni P. Tirloni wrote: > Hi, > > I've been reading about mbufs and how they're used for > holding network packets and socket buffers and the > output of 'netstat -m' for a idle machine I've here > made me curious about how FreeBSD handles it in -CURRENT. > > Why is i

Re: Gif IPTunnel networkA-to-networkB not work

2003-08-27 Thread Lars Eggert
Oldach, Helge wrote: You must have the networks connected (on the public side), but when using IPSec your gif tunnel won't really be used. It is just sort of a "placeholder" to get the routing correct. It is not a good idea to use gifs in parallel with IPsec tunnel mode., to do this routing trick

Re: mbuf usage for an idle machine

2003-08-27 Thread Robert Watson
On Wed, 27 Aug 2003, Giovanni P. Tirloni wrote: > I've been reading about mbufs and how they're used for > holding network packets and socket buffers and the > output of 'netstat -m' for a idle machine I've here > made me curious about how FreeBSD handles it in -CURRENT. > > Why is it usin

Re: subnetting C class into /26 /25 /26, why can this be done?

2003-08-27 Thread Martin Hermanowski
On Wed, Aug 27, 2003 at 04:04:26PM +0200, Christoffer Pio wrote: > Is it not possible to subnet a C class into 3 nets, like > > 0-63 x.x.x.0/26 > 64-191 <-- Offending network (?) x.x.x.64/26 + x.x.x.128/26 This cannot be written as a /25, and there is no netmask that would match. > 192-255

subnetting C class into /26 /25 /26, why can this be done?

2003-08-27 Thread Christoffer Pio
Is it not possible to subnet a C class into 3 nets, like 0-63 64-191 <-- Offending network (?) 192-255 If so, why is this? Christoffer ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-net To unsubscribe, send any ma

RE: Gif IPTunnel networkA-to-networkB not work

2003-08-27 Thread Oldach, Helge
> From: hilman firmansyah [mailto:[EMAIL PROTECTED] > NB : I still dont touch the IPSEC and encrypted section > ,since in the fbsd > handbooks said to make an encrypted section i must have the 2 networks > connected. Is this right? You must have the networks connected (on the public side), but wh

Gif IPTunnel networkA-to-networkB not work

2003-08-27 Thread hilman firmansyah
Hi, I had a problem with my virtual tunnel here, since i couldnt make 2 separate networks from different location connected via tunnel i made with interface gif. net A fbsd A - fbsd B - net B 1.1.1.0/24 203.50.166.76 2

mbuf usage for an idle machine

2003-08-27 Thread Giovanni P. Tirloni
Hi, I've been reading about mbufs and how they're used for holding network packets and socket buffers and the output of 'netstat -m' for a idle machine I've here made me curious about how FreeBSD handles it in -CURRENT. Why is it using so many mbufs when it's idle? My small kwnowledge doe