Top Banner
36

IP Addresses: Classful Addressing An IP address is a 32-bit address.

Dec 24, 2015

Download

Documents

Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: IP Addresses: Classful Addressing An IP address is a 32-bit address.
Page 2: IP Addresses: Classful Addressing An IP address is a 32-bit address.
Page 3: IP Addresses: Classful Addressing An IP address is a 32-bit address.

IP Addresses:Classful Addressing

Page 4: IP Addresses: Classful Addressing An IP address is a 32-bit address.

An IP address is a 32-bit

address.

Page 5: IP Addresses: Classful Addressing An IP address is a 32-bit address.

The address space of IPv4 is

232 or

4,294,967,296.

Page 6: IP Addresses: Classful Addressing An IP address is a 32-bit address.

01110101 10010101 00011101 11101010

Binary Notation

Page 7: IP Addresses: Classful Addressing An IP address is a 32-bit address.

Figure 4-1Dotted-decimal notation

Page 8: IP Addresses: Classful Addressing An IP address is a 32-bit address.

CLASSFUL ADDRESSING

4.2

Page 9: IP Addresses: Classful Addressing An IP address is a 32-bit address.

In classful addressing, the address space is

divided into five classes: A, B, C, D, and E.

Page 10: IP Addresses: Classful Addressing An IP address is a 32-bit address.

Figure 4-3

Finding the class in binary notation

Page 11: IP Addresses: Classful Addressing An IP address is a 32-bit address.

Figure 4-4Finding the address class

Page 12: IP Addresses: Classful Addressing An IP address is a 32-bit address.

Figure 4-6Netid and hostid

Page 13: IP Addresses: Classful Addressing An IP address is a 32-bit address.

Figure 4-7Blocks in class A

Page 14: IP Addresses: Classful Addressing An IP address is a 32-bit address.

Millions of class A addresses are wasted.

Page 15: IP Addresses: Classful Addressing An IP address is a 32-bit address.

Figure 4-8Blocks in class B

Page 16: IP Addresses: Classful Addressing An IP address is a 32-bit address.

Many class B addresses are wasted.

Page 17: IP Addresses: Classful Addressing An IP address is a 32-bit address.

Figure 4-9Blocks in class C

Page 18: IP Addresses: Classful Addressing An IP address is a 32-bit address.

The number of addresses in a class C block is smaller than

the needs of most organizations.

Page 19: IP Addresses: Classful Addressing An IP address is a 32-bit address.

Class D addresses are used for multicasting;

there is only one block in this class.

Page 20: IP Addresses: Classful Addressing An IP address is a 32-bit address.

Class E addresses are reservedfor special purposes;

most of the block is wasted.

Page 21: IP Addresses: Classful Addressing An IP address is a 32-bit address.

Network Addresses

The network address is the first address.

The network address defines the network to the rest of the Internet.

Given the network address, we can find the class of the address, the block, and the range of the addresses in the block

Page 22: IP Addresses: Classful Addressing An IP address is a 32-bit address.

In classful addressing, the network address

(the first address in the block) is the one that is assigned

to the organization.

Page 23: IP Addresses: Classful Addressing An IP address is a 32-bit address.

Figure 4-19Sample internet

Page 24: IP Addresses: Classful Addressing An IP address is a 32-bit address.

Mask

A mask is a 32-bit binary number that gives the first address in the block (the network address) when bitwise ANDed with an address in the block.

Page 25: IP Addresses: Classful Addressing An IP address is a 32-bit address.

Figure 4-10Masking concept

Page 26: IP Addresses: Classful Addressing An IP address is a 32-bit address.

Figure 4-11AND operation

Page 27: IP Addresses: Classful Addressing An IP address is a 32-bit address.

Figure 5-2 A network with three levels ofhierarchy (subnetted)

Page 28: IP Addresses: Classful Addressing An IP address is a 32-bit address.

Figure 5-3Addresses in a network with

and without subnetting

Page 29: IP Addresses: Classful Addressing An IP address is a 32-bit address.

Figure 5-5Default mask and subnet mask

Page 30: IP Addresses: Classful Addressing An IP address is a 32-bit address.

Finding the Subnet Address

Given an IP address, we can find the subnet address the same way we found the network address in the previous chapter. We apply the mask to the address. We can do this in two ways: straight or short-cut.

Page 31: IP Addresses: Classful Addressing An IP address is a 32-bit address.

Example 1

What is the subnetwork address if the destination address is 200.45.34.56 and the subnet mask is 255.255.240.0?

Page 32: IP Addresses: Classful Addressing An IP address is a 32-bit address.

Solution

11001000 00101101 00100010 00111000

11111111 11111111 11110000 00000000

11001000 00101101 00100000 00000000

The subnetwork address is 200.45.32.0.

Page 33: IP Addresses: Classful Addressing An IP address is a 32-bit address.

The number of subnets must be a power of 2.

Page 34: IP Addresses: Classful Addressing An IP address is a 32-bit address.

Example 3

A company is granted the site address 201.70.64.0 (class C). The company needs six subnets. Design the subnets.

Solution

The number of 1s in the default mask is 24 (class C).

Page 35: IP Addresses: Classful Addressing An IP address is a 32-bit address.

Solution (Continued)

The company needs six subnets. This number 6 is not a power of 2. The next number that is a power of 2 is 8 (23). We need 3 more 1s in the subnet mask. The total number of 1s in the subnet mask is 27 (24 + 3).

The total number of 0s is 5 (32 - 27). The mask is

Page 36: IP Addresses: Classful Addressing An IP address is a 32-bit address.

Solution (Continued)

11111111 11111111 11111111 11100000or

255.255.255.224

The number of subnets is 8.The number of addresses in each subnet is 25 (5 is the number of 0s) or 32.

See Figure 5.8