LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Networking
User Name
Password
Linux - Networking This forum is for any issue related to networks or networking.
Routing, network cards, OSI, etc. Anything is fair game.

Notices


Reply
  Search this Thread
Old 11-16-2003, 01:38 PM   #1
jimdaworm
Member
 
Registered: Aug 2003
Location: Spain
Distribution: Ubuntu
Posts: 897

Rep: Reputation: 30
Is there freeware Network Simulation software?


I was wondering if there is some sort of a freeware program to help with learning about networks... I have seen such programs for electronic circuits but couldnīt find anything. I am having problems understanding exactly how to use subnet masks and then calculate how many hosts you could have with the mask even though I have read quite a few articles which are supposed to explain it.

Any Ideas?
Adam
 
Old 11-16-2003, 01:46 PM   #2
jcookeman
Member
 
Registered: Jul 2003
Location: London, UK
Distribution: FreeBSD, OpenSuse, Ubuntu, RHEL
Posts: 417

Rep: Reputation: 33
There are IP calculators...just google ip calc and you will find tons of them.

If you want to know how many hosts you can have with a given netmask then take the count the number of bit positions with corresponding zeros represented by 'n', raise two to that number and subtract '2':

255.255.255.224
=
11111111.11111111.11111111.11100000 (five zeros)
=
2^5 - 2 (raise 2 to the number of zeros - 2)
=
32 - 2
=
30
 
Old 11-16-2003, 02:01 PM   #3
jimdaworm
Member
 
Registered: Aug 2003
Location: Spain
Distribution: Ubuntu
Posts: 897

Original Poster
Rep: Reputation: 30
THANKS A LOT

Thanks for that wicked explaination I have read lots of things similar but your explaination was what I need to understand how to calculate it easily!

Subtract 2 because the the last is the broardcast address??? and I canīt remember what they first number would be??


Do you have a similar explaination for number of Physical Segments?

Adam

Last edited by jimdaworm; 11-16-2003 at 02:03 PM.
 
Old 11-16-2003, 02:40 PM   #4
jcookeman
Member
 
Registered: Jul 2003
Location: London, UK
Distribution: FreeBSD, OpenSuse, Ubuntu, RHEL
Posts: 417

Rep: Reputation: 33
To do the number of networks it is the exact opposite. Instead of using the number of zeros you use the number of ones. And you don't subtract two, but that depends on if you are doing classfull or classless ip addressing. I will use classless since that is what everyone uses nowadays. Read up on RFC1519.

Take class of address:
First octet rule -
0-127 Class A Default Netmask 255.0.0.0
128-171 Class B Default Netmask 255.255.0.0
127-223 Class C Default Netmask 255.255.255.0

Number of bits subnetted:
IPADDR=10.0.0.0
NETMASK=255.255.0.0

Default netmask since the IPADDR starts with 10 would be 255.0.0.0
Therefore, you borrowed 8 bits to get the 255.255.0.0.

2^8 =
256 subnets possible
 
Old 11-18-2003, 03:02 PM   #5
jimdaworm
Member
 
Registered: Aug 2003
Location: Spain
Distribution: Ubuntu
Posts: 897

Original Poster
Rep: Reputation: 30
Thanks again

Hey this second reply was a little less straigt forward for me but I am off to Read up on RFC1519!!

So impressed by your reply I have printed out this topic!

Thanks
Adam
 
Old 10-19-2006, 01:36 AM   #6
rapatista
LQ Newbie
 
Registered: Oct 2006
Posts: 2

Rep: Reputation: 0
Quote:
Originally Posted by jcookeman
To do the number of networks it is the exact opposite. Instead of using the number of zeros you use the number of ones. And you don't subtract two, but that depends on if you are doing classfull or classless ip addressing. I will use classless since that is what everyone uses nowadays. Read up on RFC1519.

Take class of address:
First octet rule -
0-127 Class A Default Netmask 255.0.0.0
128-171 Class B Default Netmask 255.255.0.0
127-223 Class C Default Netmask 255.255.255.0

Number of bits subnetted:
IPADDR=10.0.0.0
NETMASK=255.255.0.0

Default netmask since the IPADDR starts with 10 would be 255.0.0.0
Therefore, you borrowed 8 bits to get the 255.255.0.0.

2^8 =
256 subnets possible

Hi,

There are 2 different approach in IP adressing i think. One says that B Class is between 128-191 and other is as u say 128-171. Which one is right?
 
Old 10-19-2006, 03:53 AM   #7
jcookeman
Member
 
Registered: Jul 2003
Location: London, UK
Distribution: FreeBSD, OpenSuse, Ubuntu, RHEL
Posts: 417

Rep: Reputation: 33
Quote:
Originally Posted by rapatista
Hi,

There are 2 different approach in IP adressing i think. One says that B Class is between 128-191 and other is as u say 128-171. Which one is right?
Class 'A' networks are 0-127 in the first octet defined bitwise:

0xxxxxxx

Class 'B' networks are 128-191 in the first octet defined bitwise:

10xxxxxx

Class 'C' networks are 192-223 in the first octet defined bitwise:

110xxxxx

Therefore, it must be this way. No other scheme.

Cheers,

Justin

Last edited by jcookeman; 10-19-2006 at 03:58 AM.
 
Old 10-20-2006, 07:44 AM   #8
rapatista
LQ Newbie
 
Registered: Oct 2006
Posts: 2

Rep: Reputation: 0
Quote:
Originally Posted by jcookeman
Class 'A' networks are 0-127 in the first octet defined bitwise:

0xxxxxxx

Class 'B' networks are 128-191 in the first octet defined bitwise:

10xxxxxx

Class 'C' networks are 192-223 in the first octet defined bitwise:

110xxxxx

Therefore, it must be this way. No other scheme.

Cheers,

Justin

Well actually i agree with this one already but;


Quote:
Originally Posted by jcookeman
To do the number of networks it is the exact opposite. Instead of using the number of zeros you use the number of ones. And you don't subtract two, but that depends on if you are doing classfull or classless ip addressing. I will use classless since that is what everyone uses nowadays. Read up on RFC1519.

Take class of address:
First octet rule -
0-127 Class A Default Netmask 255.0.0.0
128-171 Class B Default Netmask 255.255.0.0
127-223 Class C Default Netmask 255.255.255.0

Number of bits subnetted:
IPADDR=10.0.0.0
NETMASK=255.255.0.0

Default netmask since the IPADDR starts with 10 would be 255.0.0.0
Therefore, you borrowed 8 bits to get the 255.255.0.0.

2^8 =
256 subnets possible
u say "128-171 Class B" i didnt understand this one. Also i found this spesification in some other sources (very few). What is the point of this spesification?

Thanx again
 
Old 10-20-2006, 08:06 AM   #9
jcookeman
Member
 
Registered: Jul 2003
Location: London, UK
Distribution: FreeBSD, OpenSuse, Ubuntu, RHEL
Posts: 417

Rep: Reputation: 33
Quote:
Originally Posted by rapatista
Well actually i agree with this one already but;




u say "128-171 Class B" i didnt understand this one. Also i found this spesification in some other sources (very few). What is the point of this spesification?

Thanx again
I was drunk when I posted that. Obviously, I made a typo, but I don't remember as it was quite long ago.
 
Old 04-18-2016, 04:23 PM   #10
Bitbeisser
LQ Newbie
 
Registered: Apr 2016
Location: US of A
Posts: 2

Rep: Reputation: 0
Quote:
Originally Posted by jimdaworm View Post
Subtract 2 because the the last is the broardcast address??? and I canīt remember what they first number would be??
In each subnet, there are two reserved and fixed IP addresses:
- the lowest IP address (all host bits are 0 (zero)) is the network address
- the highest IP address (all host bits are 1 (one)) is the broadcast address

Each subnet can (but that is not a requirement per se!) have one gateway address and this can be any IP address within the subnet, between the network address and the broadcast address. Good practice however is to use either the lowest or highest available address between network and broadcast address. Without a gateway address, you can't route any data out of this subnet.

Ralf
 
Old 04-18-2016, 08:52 PM   #11
frankbell
LQ Guru
 
Registered: Jan 2006
Location: Virginia, USA
Distribution: Slackware, Ubuntu MATE, Mageia, and whatever VMs I happen to be playing with
Posts: 19,328
Blog Entries: 28

Rep: Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142
This is the best tutorial I've seen about subnetting. Don't be fooled by the HTML v. 3 look. http://www.ralphb.net/IPSubnet/index.html

When I first stumbled over it, it was at some dot-edu site. My guess is that, when the author retired or moved on, he took the website with him and put it up unchanged. I suspect the author may have been a teacher, so well does he put forward the concepts.
 
  


Reply

Tags
ip



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Architectural Acoustics Simulation Software carboncopy Linux - Software 2 05-21-2016 02:24 AM
C simulation shegay18 Programming 4 06-14-2005 07:49 AM
Network Inventory and Software Distribution Software? tonyfreeman General 1 09-25-2004 05:29 AM
Ossiloscope simulation software... TanelValdna Linux - Software 3 09-09-2004 01:28 PM
Simulation progam AquamaN Programming 2 03-15-2004 07:26 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Networking

All times are GMT -5. The time now is 03:53 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration