Re: Local IPs and Subnets

2003-01-21 Thread Shantanu Mahajan
+++ Grant Peel [freebsd] [19-01-03 16:24 -0500]:
| Hi all,
| 
| I have three servers.
| 
| Each server has two NICs.
| 
| One NIC on each server (fxp0) will be used for the Internet, and I have a
| seperate switch and the IPs Subnets etc from the ISP so all is well.
| 
| The other NIC on each machine will be used to connect to a seperate switch
| to LAN them together. (fxp1). I am still baffled by calculating subnets.
| 
| My question is simple. What subnet and broadcast IP should I use when I set
| the IP on each NIC to 192.168.0.1 , 2 , 3 ?
| 
check out RFC1918. you can find it on
www.rfc-editor.org
or
www.faqs.org

Regards,
Shantanu

-- 
Everyone is a genius.  It's just that
some people are too stupid to realize it. 


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Local IPs and Subnets

2003-01-19 Thread Grant Peel
Hi all,

I have three servers.

Each server has two NICs.

One NIC on each server (fxp0) will be used for the Internet, and I have a
seperate switch and the IPs Subnets etc from the ISP so all is well.

The other NIC on each machine will be used to connect to a seperate switch
to LAN them together. (fxp1). I am still baffled by calculating subnets.

My question is simple. What subnet and broadcast IP should I use when I set
the IP on each NIC to 192.168.0.1 , 2 , 3 ?

-Grant


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: Local IPs and Subnets

2003-01-19 Thread Matthew Seaman
On Sun, Jan 19, 2003 at 04:24:15PM -0500, Grant Peel wrote:

 The other NIC on each machine will be used to connect to a seperate switch
 to LAN them together. (fxp1). I am still baffled by calculating subnets.
 
 My question is simple. What subnet and broadcast IP should I use when I set
 the IP on each NIC to 192.168.0.1 , 2 , 3 ?

That's a matter of choice for a private network, but the 192.168.x.y
address range is usually treated as /24 networks --- it is in what
used to be the old C class part of the IP space before CIDR became
de-rigeur.

So:

Network number:  192.168.0.0
Netmask: 255.255.255.0 or 0xff00 or /24
Broadcast:   192.168.0.255

Which gives you a total of 254 address from 192.168.0.1 to
192.168.0.253 to use for your hosts.

Cheers,

Matthew

-- 
Dr Matthew J Seaman MA, D.Phil.   26 The Paddocks
  Savill Way
PGP: http://www.infracaninophile.co.uk/pgpkey Marlow
Tel: +44 1628 476614  Bucks., SL7 1TH UK

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message