IP Address Sub Netting Tutorial
IP Address Sub Netting Tutorial
IP Address Sub Netting Tutorial
• What is an IP Address?
• What are Classes?
• What is a Network Address?
• What are Subnet Masks and Subnet Addresses?
• How are Subnet Masks defined and used?
• How can all this be applied?
• What is CIDR?
• How can I get more information?
IP Addressing
An IP (Internet Protocol) address is a unique identifier for a node or host connection on
an IP network. An IP address is a 32 bit binary number usually represented as 4 decimal
values, each representing 8 bits, in the range 0 to 255 (known as octets) separated by
decimal points. This is known as "dotted decimal" notation.
Example: 140.179.220.200
Every IP address consists of two parts, one identifying the network and one identifying
the node. The Class of the address and the subnet mask determine which part belongs to
the network address and which part belongs to the node address.
Address Classes
There are 5 different address classes. You can determine which class any IP address is in
by examining the first 4 bits of the IP address.
Addresses beginning with 01111111, or 127 decimal, are reserved for loopback and for
internal testing on a local machine; [You can test this: you should always be able to ping
127.0.0.1, which points to yourself] Class D addresses are reserved for multicasting;
Class E addresses are reserved for future use. They should not be used for host addresses.
Now we can see how the Class determines, by default, which part of the IP address
belongs to the network (N, in blue) and which part belongs to the node (n, in red).
• Class A -- NNNNNNNN.nnnnnnnn.nnnnnnnn.nnnnnnnn
• Class B -- NNNNNNNN.NNNNNNNN.nnnnnnnn.nnnnnnnn
• Class C -- NNNNNNNN.NNNNNNNN.NNNNNNNN.nnnnnnnn
In order to specify the network address for a given IP address, the node section is set to
all "0"s. In our example, 140.179.0.0 specifies the network address for 140.179.220.200.
When the node section is set to all "1"s, it specifies a broadcast that is sent to all hosts on
the network. 140.179.255.255 specifies the example broadcast address. Note that this is
true regardless of the length of the node section.
Private Subnets
There are three IP network addresses reserved for private networks. The addresses are
10.0.0.0, Subnet Mask 255.0.0.0, 172.16.0.0, Subnet Mask 255.240.0.0, and
192.168.0.0, Subnet Mask 255.255.0.0. These addresses are also notated 10.0.0.0/8,
172.16.0.0/12, and 192.168.0.0/16; this notation will be explained later in this tutorial.
They can be used by anyone setting up internal IP networks, such as a lab or home LAN
behind a NAT or proxy server or a router. It is always safe to use these because routers on
the Internet by default will never forward packets coming from these addresses. These
addresses are defined in RFC 1918.
Subnetting
Subnetting an IP Network can be done for a variety of reasons, including organization,
use of different physical media (such as Ethernet, FDDI, WAN, etc.), preservation of
address space, and security. The most common reason is to control network traffic. In an
Ethernet network, all nodes on a segment see all the packets transmitted by all the other
nodes on that segment. Performance can be adversely affected under heavy traffic loads,
due to collisions and the resulting retransmissions. A router is used to connect IP
networks to minimize the amount of traffic each segment must receive.
Subnet Masking
Applying a subnet mask to an IP address allows you to identify the network and node
parts of the address. The network bits are represented by the 1s in the mask, and the node
bits are represented by the 0s. Performing a bitwise logical AND operation between the
IP address and the subnet mask results in the Network Address or Number.
For example, using our test IP address and the default Class B subnet mask, we get:
10001100.10110011.11110000.11001000 140.179.240.200 Class B IP
Address
11111111.11111111.00000000.00000000 255.255.000.000 Default
Class B Subnet Mask
--------------------------------------------------------
10001100.10110011.00000000.00000000 140.179.000.000 Network
Address
To calculate the number of subnets or nodes, use the formula (2n-2) where n = number of
bits in either field, and 2n represents 2 raised to the nth power. Multiplying the number of
subnets by the number of nodes available per subnet gives you the total number of nodes
available for your class and subnet mask. Also, note that although subnet masks with non-
contiguous mask bits are allowed, they are not recommended.
Example:
In this example a 3 bit subnet mask was used. There are 6 (23-2) subnets available with
this size mask (remember that subnets with all 0's and all 1's are not allowed). Each
subnet has 8190 (213-2) nodes. Each subnet can have nodes assigned to any address
between the Subnet address and the Broadcast address. This gives a total of 49,140 nodes
for the entire class B address subnetted this way. Notice that this is less than the 65,534
nodes an unsubnetted class B address would have.
You can calculate the Subnet Address by performing a bitwise logical AND operation
between the IP address and the subnet mask, then setting all the host bits to 0s. Similarly,
you can calculate the Broadcast Address for a subnet by performing the same logical
AND between the IP address and the subnet mask, then setting all the host bits to 1s. That
is how these numbers are derived in the example above.
Subnetting always reduces the number of possible nodes for a given network. There are
complete subnet tables available here for Class A, Class B and Class C. These tables list
all the possible subnet masks for each class, along with calculations of the number of
networks, nodes and total hosts for each subnet.
An Example
Here is another, more detailed, example. Say you are assigned a Class C network number
of 200.133.175.0 (apologies to anyone who may actually own this domain address). You
want to utilize this network across multiple small groups within an organization. You can
do this by subnetting that network with a subnet address.
We will break this network into 14 subnets of 14 nodes each. This will limit us to 196
nodes on the network instead of the 254 we would have without subnetting, but gives us
the advantages of traffic isolation and security. To accomplish this, we need to use a
subnet mask 4 bits long.
Recall that the default Class C subnet mask is
People realized that addresses could be conserved if the class system was eliminated. By
accurately allocating only the amount of address space that was actually needed, the
address space crisis could be avoided for many years. This was first proposed in 1992 as
a scheme called Supernetting. Under supernetting, the classful subnet masks are
extended so that a network address and subnet mask could, for example, specify multiple
Class C subnets with one address. For example, if I needed about 1000 addresses, I could
supernet 4 Class C networks together:
Under CIDR, the subnet mask notation is reduced to a simplified shorthand. Instead of
spelling out the bits of the subnet mask, it is simply listed as the number of 1s bits that
start the mask. In the above example, instead of writing the address and subnet mask as
The use of a CIDR notated address is the same as for a Classful address. Classful
addresses can easily be written in CIDR notation (Class A = /8, Class B = /16, and Class
C = /24)
It is expected that CIDR will keep the Internet happily in IP addresses for the next few
years at least. After that, IPv6, with 128 bit addresses, will be needed. Under IPv6, even
sloppy address allocation would comfortably allow a billion unique IP addresses for
every person on earth! The complete and gory details of CIDR are documented in
RFC1519, which was released in September of 1993.
Logical Operations
This page will provide a brief review and explanation of the common logical bitwise
operations AND, OR, XOR (Exclusive OR) and NOT. Logical operations are performed
between two data bits (except for NOT). Bits can be either "1" or "0", and these
operations are essential to performing digital math operations.
In the "truth tables" below, the input bits are in bold, and the results are plain.
AND
The logical AND operation compares 2 bits and if they are both "1", then the result is "1",
otherwise, the result is "0".
0 1
0 0 0
1 0 1
OR
The logical OR operation compares 2 bits and if either or both bits are "1", then the result
is "1", otherwise, the result is "0".
0 1
0 0 1
1 1 1
XOR
The logical XOR (Exclusive OR) operation compares 2 bits and if exactly one of them is
"1" (i.e., if they are different values), then the result is "1"; otherwise (if the bits are the
same), the result is "0".
0 1
0 0 1
1 1 0
NOT
The logical NOT operation simply changes the value of a single bit. If it is a "1", the
result is "0"; if it is a "0", the result is "1". Note that this operation is different in that
instead of comparing two bits, it is acting on a single bit.
0 1
1 0
Newsgroups of interest:
Other Stuff:
• Protocols.com
• Internic
• Zen and the Art of the Internet
• Glossary of Internet Terms
• FindTutorials.com
• Firewall.cx
• Show My IP Address
• IP Address analyzer