Lecture13a IP Addressing
Lecture13a IP Addressing
2
Boolean Algebra (Cont.)
• In another words, the only way you can
get a result of a 1 is to combine 1 & 1.
Everything else will end up as a 0.
• The process of combining binary values
with Boolean Algebra is called Anding.
3
Masking concept
AND operation
The network address is the
beginning address of each block.
It can be found by applying
the default mask to
any of the addresses in the block
(including itself).
It retains the netid of the block
and sets the hostid to zero.
Default Subnet Masks for Class A, Class B and Class C Networks
Example 12
Solution
Solution
Solution
12
A Trial Separation (Cont.)
• The subnet mask goes like this:
1. If a destination IP address is
206.175.162.21, we know that it is a
Class C address & that its binary
equivalent is:
11001110.10101111.10100010.00010101
13
A Trial Separation (Cont.)
2. We also know that the default standard
Class C subnet mask is: 255.255.255.0
and that its binary equivalent is:
11111111.11111111.11111111.00000000
14
A Trial Separation (Cont.)
15
A Trial Separation (Cont.)
4. The result is the IP address of the
network which in this case is the same
as the local network & means that the
message is for a node on the local
network.
16
SUBNETTING
• A network is divided into several smaller
subnetworks with each subnetwork having
its own subnetwork address
Subnet Mask
• An IP address has 2 parts:
– The Network identification.
– The Host identification.
• Frequently, the Network & Host portions of the
address need to be separately extracted.
• In most cases, if you know the address class, it’s
easy to separate the 2 portions.
18
Subnet Mask (Cont.)
• With the rapid growth of the internet & the
ever-increasing demand for new addresses,
the standard address class structure has
been expanded by borrowing bits from the
Host portion to allow for more Networks.
• Under this addressing scheme, called
Subnetting, separating the Network & Host
requires a special process called Subnet
Masking.
19
Subnet Mask (Cont.)
• The subnet masking process was developed
to identify & extract the Network part of the
address.
• A subnet mask, which contains a binary bit
pattern of ones & zeros, is applied to an
address to determine whether the address is
on the local Network.
• If it is not, the process of routing it to an
outside network begins.
20
Subnet Mask (Cont.)
• The function of a subnet mask is to determine
whether an IP address exists on the local
network or whether it must be routed outside
the local network.
• It is applied to a message’s destination
address to extract the network address.
• If the extracted network address matches the
local network ID, the destination is located on
the local network.
21
Figure A network with two levels of hierarchy (not subnetted)
•Hosts cannot be organized into groups, all hosts are at same level
Solution
We apply the AND operation on the address and the subnet
mask.
Address ➡ 11001000 00101101 00100010 00111000
Subnet Mask ➡ 11111111 11111111 11110000 00000000
Subnetwork Address ➡ 11001000 00101101 00100000 00000000.
Answer: 200.45.32.0
Example 2
The mask is
11111111 11111111 11111111 11000000
or
255.255.255.192.
The number of subnets is 1024.
The number of addresses in each subnet is 26
(6 is the number of 0s) or 64.
See Figure 5.9
Figure 5-9
Example 4
A supernetwork
Rules:
** The number of blocks must be a power of 2 (1,
2, 4, 8, 16, . . .).
** The blocks must be contiguous in the address
space (no gaps between the blocks).
** The third byte of the first address in the
superblock must be evenly divisible by the number
of blocks. In other words, if the number of blocks is
N, the third byte must be divisible by N.
Example 5
Solution
52
Introduction (Cont.)
1) The world is running out of available IP
addresses. There just isn’t an unlimited
number of IP addresses available &
subnetting helps extend the existing
addresses until either the next version of
IP is rolled out or some other technology
charges on the scene.
53
Introduction (Cont.)
2) Subnetting reduces the size of the
routing tables stored in routers.
Subnetting extends the existing IP
address base & restructures the IP
address. As a result, routers must have
a way to extract from a IP address both
the Network address & the Host address.
54
Introduction (Cont.)
• There are only 3 usable IP address classes:
– Class A
– Class B
– Class C
• Class A networks have the highest number of
available hosts.
• Class C networks have the fewest number of
hosts.
55
Subnetting Networks ID
56
Subnetting Networks ID (Cont.)
• In the previous slide, the default Class A subnet
mask (255.0.0.0) is AND’d with the Class A
address (123.123.123.001) using Boolean
Algebra, which results in the Network ID
(123.0.0.0) being revealed.
• The default Class B subnet mask (255.255.0.0)
strips out the 16-bit network ID & the default
Class C subnet mask (255.255.255.0) strips out
the 24-bit network ID.
57
Subnetting, Subnet & Subnet
Mask
• Subnetting, a subnet & a subnet mask are
all different.
• In fact, the 1st creates the 2nd & is
identified by the 3rd.
• Subnetting is the process of dividing a
network & its IP addresses into segments,
each of which is called a subnetwork or
subnet.
58
Subnetting, Subnet & Subnet
Mask (Cont.)
• The subnet mask is the 32-bit number that
the router uses to cover up the network
address to show which bits are being used
to identify the subnet.
59
Subnetting
• A network has its own unique address, such
as a Class B network with the address
172.20.0.0 which has all zeroes in the host
portion of the address.
• From the basic definitions of a Class B
network & the default Class B subnet mask,
you know that this network can be created as
a single network that contains 65,534
individual hosts.
60
Subnetting (Cont.)
• Through the use of subnetting, the
network from the previous slide can be
logically divided into subnets with fewer
hosts on each subnetwork.
• It does not improve the available shared
bandwidth only, but it cuts down on the
amount of broadcast traffic generated over
the entire network as well.
61
Subnetting (Cont.)
• The 2 primary benefits of subnetting are:
1. Fewer IP addresses, often as few as one,
are needed to provide addressing to a
network & subnetting.
2. Subnetting usually results in smaller routing
tables in routers beyond the local
internetwork.
62
Subnetting (Cont.)
• Example of subnetting: when the network
administrator divides the 172.20.0.0
network into 5 smaller networks –
172.20.1.0, 172.20.2.0, 172.20.3.0,
172.20.4.0 & 172.20.5.0 – the outside
world stills sees the network as
172.20.0.0, but the internal routers now
break the network addressing into the 5
smaller subnetworks.
63
Subnetting (Cont.)
• In the example, only a single IP address is
used to reference the network & instead
of 5 network addresses, only one network
reference is included in the routing tables
of routers on other networks.
64
Borrowing Bits to Grow a
Subnet
• The key concept in subnetting is borrowing bits
from the host portion of the network to create a
subnetwork.
• Rules govern this borrowing, ensuring that some
bits are left for a Host ID.
• The rules require that two bits remain available
to use for the Host ID& that all of the subnet bits
cannot be all 1s or 0s at the same time.
65
Borrowing Bits to Grow a
Subnet (Cont.)
• For each IP address class, only a certain
number of bits can be borrowed from the
host portion for use in the subnet mask.
66
Borrowing Bits to Grow a
Subnet (Cont.)
Bits Available for Creating Subnets
A 24 22
B 16 14
C 8 6
67
Subnetting a Class A Network
• The default subnet mask for a class A
network is 255.0.0.0 which allows for more
than 16,000,000 hosts on a single
network.
• The default subnet mask uses only 8 bits
to identify the network, leaving 24 bits for
host addressing .
68
Subnetting a Class A Network
(Cont.)
• To subnet a Class A network, you need to
borrow a sufficient number of bits from the 24-bit
host portion of the mask to allow for the number
of subnets you plan to create, now & in the
future.
• Example: To create 2 subnets with more than 4
millions hosts per subnet, you must borrow 2 bits
from the 2nd octet & use 10 masked (value
equals one) bits for the subnet mask
(11111111.11000000) or 255.192 in decimal.
69
Subnetting a Class A Network
(Cont.)
70
Subnetting a Class A Network
(Cont.)
71
Class A Subnet Masks (Cont.)
72
Class A Subnet Masks (Cont.)
• All subnet masks contain 32 bits; no more,
no less.
• However a subnet mask cannot filter more
than 30 bits. This means 2 things:
– One, that there cannot be more than 30 ones
bits in the subnet mask.
– Two, that there must always be at least 2 bits
available for the Host ID.
73
Class A Subnet Masks (Cont.)
• The subnet mask with the highest value
(255.255.255.252) has a binary
representation of:
11111111.11111111.11111111.11111100
• The 2 zeroes in this subnet mask
represent the 2 positions set aside for the
Host address portion of the address.
74
Class A Subnet Masks (Cont.)
• Remember that the addresses with all
ones (broadcast address) & all zeroes
(local network) cannot be used as they
have special meanings.
75
Subnetting Class B & Class C
• The table on slide 76 “Class A Subnet
Masks” is similar to the tables used for
Class B & Class C IP addresses & subnet
masks.
• The only differences are that you have
fewer options (due to a fewer number of bits
available) & that you’re much more likely to
work with Class B & Class C networks in
real life.
76
Subnetting Class B & Class C
(Cont.)
77
Subnetting Class B & Class C
(Cont.)
78
Knowing How to Calculate
Subnets
79
Knowing How to Calculate
Subnets (Cont.)
• Although the 2 formulas look identical, the
key is to remember the number you’re
trying to calculate, hosts or subnets.
• Eg., suppose you are asked to determine
the number of subnets available & the
number of hosts available on each subnet
on the network 192.168.1.0
80
Knowing How to Calculate
Subnets (Cont.)
• Using the subnet & hosts formulas, the
answers are easily calculated. Of course,
you must know your powers of 2 to
calculate the answers.
81
Class C Subnets
82
Class C Subnets (Cont.)
• To determine the total length of the subnet
mask, add 24 to the number of borrowed
(subnet) bits.
83
Class B Subnets
• To calculate the number of subnets &
hosts available from a Class B subnet
mask, you use the same host & subnet
formulas described for calculating Class C
values.
• Using these formulas I have constructed a
table that contains the Class B subnet &
host values.
84
Class B Subnets (Cont.)
85
A Short Broadcast
• A broadcast is a message that every node
on a network or subnetwork receives &
examines.
• Cisco IOS supports 2 different types of
broadcast messages:
– Flooded
– Directed
A Short Broadcast (Cont.)
• Generally speaking, routers do not
propagate broadcasts, which is one of the
benefits of installing a router in the first
place.
A Short Broadcast (Cont.)
• Flooded broadcasts (those with the
nominal broadcast address of
255.255.255.255) are not forwarded by the
router & are considered local traffic only.
• Directed broadcasts, which contain all 1’s
in the Host portion of the IP address, are
addressed to a specific subnetwork & are
allowed to pass.
88