6 Addressing the Network - IPv4

6.0 Chapter Introduction

6.0.1 Chapter Introduction

Page 1:
Addressing is a key function of Network layer protocols that enables data communication between hosts on the same network or on different networks. Internet Protocol version 4 (IPv4) provides hierarchical addressing for packets that carry our data.

Designing, implementing and managing an effective IPv4 addressing plan ensures that our networks can operate effectively and efficiently.

This chapter examines in detail the structure of IPv4 addresses and their application to the construction and testing of IP networks and subnetworks.

In this chapter, you will learn to:

  • Explain the structure IP addressing and demonstrate the ability to convert between 8-bit binary and decimal numbers.
  • Given an IPv4 address, classify by type and describe how it is used in the network.
  • Explain how addresses are assigned to networks by ISPs and within networks by administrators.
  • Determine the network portion of the host address and explain the role of the subnet mask in dividing networks.
  • Given IPv4 addressing information and design criteria, calculate the appropriate addressing components.
  • Use common testing utilities to verify and test network connectivity and operational status of the IP protocol stack on a host.


6.0.1 - Chapter Introduction
The diagram depicts a screenshot of a Windows PC with an IP address configured using Internet Protocol (TCP/IP) Properties. IP version 4 (IPv4) is the current form of addressing used on the Internet. A speech bubble for the PC says: I see I have been assigned IP address 192.168.1.5. Now other hosts can find me.


6.1 IPv4 Addresses

6.1.1 The Anatomy of an IPv4 Address

Page 1:
Each device on a network must be uniquely defined. At the Network layer, the packets of the communication need to be identified with the source and destination addresses of the two end systems. With IPv4, this means that each packet has a 32-bit source address and a 32-bit destination address in the Layer 3 header.

These addresses are used in the data network as binary patterns. Inside the devices, digital logic is applied for their interpretation. For us in the human network, a string of 32 bits is difficult to interpret and even more difficult to remember. Therefore, we represent IPv4 addresses using dotted decimal format.

Dotted Decimal

Binary patterns representing IPv4 addresses are expressed as dotted decimals by separating each byte of the binary pattern, called an octet, with a dot. It is called an octet because each decimal number represents one byte or 8 bits.

For example, the address:

10101100000100000000010000010100

is expressed in dotted decimal as:

172.16.4.20

Keep in mind that devices use binary logic. The dotted decimal format is used to make it easier for people to use and remember addresses.

Network and Host Portions

For each IPv4 address, some portion of the high-order bits represents the network address. At Layer 3, we define a network as a group of hosts that have identical bit patterns in the network address portion of their addresses.

Although all 32 bits define the IPv4 host address, we have a variable number of bits that are called the host portion of the address. The number of bits used in this host portion determines the number of hosts that we can have within the network.

Click the labels in the figure to see the different parts of the address.

For example, if we need to have at least 200 hosts in a particular network, we would need to use enough bits in the host portion to be able to represent at least 200 different bit patterns.

To assign a unique address to 200 hosts, we would use the entire last octet. With 8 bits, a total of 256 different bit patterns can be achieved. This would mean that the bits for the upper three octets would represent the network portion.

Note: Calculating the number of hosts and determining which portion of the 32 bits refers to the network will be covered later in this chapter.


6.1.1 - The Anatomy of an IPv4 Address
The diagram depicts components and terminology associated with IPv4 addresses. The host address used in the example is 192.168.10.1. The computer using this address is on network 192.168.10.0.

Dotted Decimal Address: 192.168.10.1
32-bit address: 11000000 10101000 00001010 00000001
Octet: Example is first octet, 192 decimal or 11000000 binary.
Network: First three octets, 192.168.10 decimal or 11000000 10101000 00001010 binary.
Host: Fourth octet, 1 decimal or 00000001 binary.


6.1.2 Knowing the Numbers - Binary to Decimal Conversion

Page 1:
To understand the operation of a device in a network, we need to look at addresses and other data the way the device does - in binary notation. This means that we need to have some skill in binary to decimal conversion.

Data represented in binary may represent many different forms of data to the human network. In this discussion, we refer to binary as it relates to IPv4 addressing. This means that we look at each byte (octet) as a decimal number in the range of 0 to 255.

Positional Notation

Learning to convert binary to decimal requires an understanding of the mathematical basis of a numbering system called positional notation. Positional notation means that a digit represents different values depending on the position it occupies. More specifically, the value that a digit represents is that value multiplied by the power of the base, or radix, represented by the position the digit occupies. Some examples will help to clarify how this system works.

For the decimal number 245, the value that the 2 represents is 2*10^2 (2 times 10 to the power of 2). The 2 is in what we commonly refer to as the "100s" position. Positional notation refers to this position as the base^2 position because the base, or radix, is 10 and the power is 2.

Using positional notation in the base 10 number system, 245 represents:

245 = (2 * 10^2) + (4 * 10^1) + (5 * 10^0)

or

245 = (2 * 100) + (4 * 10) + (5 * 1)

Binary Numbering System

In the binary numbering system, the radix is 2. Therefore, each position represents increasing powers of 2. In 8-bit binary numbers, the positions represent these quantities:

2^7 2^6 2^5 2^4 2^32^2 2^1 2^0

128 64 32 16 8 4 2 1

The base 2 numbering system only has two digits: 0 and 1.

When we interpret a byte as a decimal number, we have the quantity that position represents if the digit is a 1 and we do not have that quantity if the digit is a 0, as shown in the figure.

1 1 1 1 1 1 1 1

128 64 32 16 8 4 2 1

A 1 in each position means that we add the value for that position to the total. This is the addition when there is a 1 in each position of an octet. The total is 255.

128 + 64 + 32 + 16 + 8 + 4 + 2 + 1 = 255

A 0 in each position indicates that the value for that position is not added to the total. A 0 in every position yields a total of 0.

0 0 0 0 0 0 0 0

128 64 32 16 8 4 2 1
0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 = 0

Notice in the figure that a different combination of ones and zeros will yield a different decimal value.


6.1.2 - Knowing the Numbers - Binary to Decimal Conversion
The diagram depicts binary-to-decimal conversion for a single octet. The binary number 11110101 is converted to decimal 245 using the following process:

For an octet, the bit positions from left to right have these bit values:
Bit 8: Value is 2 to the seventh power or 128.
Bit 7: Value is 2 to the sixth power or 64.
Bit 6: Value is 2 to the fifth power or 32.
Bit 5: Value is 2 to the fourth power or 16.
Bit 4: Value is 2 to the third power or 8.
Bit 3: Value is 2 to the second power or 4.
Bit 2: Value is 2 to the first power or 2.
Bit 1: Value is 2 to the zero power or 1.

A one in any position means that the value of that position is added to the total decimal value for the octet.

A zero in any position means that the value of that position is zero and is not added to the total decimal value for the octet.

A decimal one in the bit 7 position is valued at 64. Adding the values of all the positions with one bits in them equals the decimal value for the octet.

In the example of binary 11110101, conversion is as follows:

One in the bit 8 position equals128, + one in the bit 7 position equals 64, + one in the bit 6 position equals 32, + one in the bit 5 position equals 16, + zero in the 5 bit position equals 0, + one in the 4 bit position equals 4, + one in the bit 2 position equals 2, + one in the bit 1 position equals 1, which all added together equals a decimal value of 245.


Page 2:
See the figure for the steps to convert a binary address to a decimal address.

In the example, the binary number:

10101100000100000000010000010100

Is converted to:

172.16.4.20

Keep these steps in mind:

  • Divide the 32 bits into 4 octets.
  • Convert each octet to decimal.
  • Add a "dot" between each decimal.


6.1.2 - Knowing the Numbers - Binary to Decimal Conversion
The diagram depicts the process described in diagram 1 to calculate the decimal equivalent of the entire 32-bit IP address into four decimal octets. In the example, the 32-bit binary number 10101100 00010000 00000100 00010100 is converted into decimal IPv4 address 172.16.4.20. Each octet decimal value is separated by a period.


6.1.3 Practicing Binary to Decimal Conversions

Page 1:
The activity in the figure allows you to practice 8-bit binary conversion as much as necessary. We recommend that you work with this tool until you are able to do the conversion without error.


6.1.3 - Practicing Binary to Decimal Conversions
The diagram depicts an activity in which you convert an 8-bit binary octet value into its decimal equivalent. The activity allows you to practice 8-bit binary conversion.

The exponent for each position and the bit value is given.

Bit 8: Value is 2 to the seventh power or 128.
Bit 7: Value is 2 to the sixth power or 64.
Bit 6: Value is 2 to the fifth power or 32.
Bit 5: Value is 2 to the fourth power or 16.
Bit 4: Value is 2 to the third power or 8.
Bit 3: Value is 2 to the second power or 4.
Bit 2: Value is 2 to the first power or 2.
Bit 1: Value is 2 to the zero power or 1.

Fill in the BLANK in the following examples:
Binary number 11101011 = Decimal number BLANK
Binary number 11101000 = Decimal number BLANK
Binary number 10010001 = Decimal number BLANK
Binary number 00010100 = Decimal number BLANK
Binary number 10101010 = Decimal number BLANK

Note: You might want to contact your instructor for assistance with this activity.


6.1.4 Knowing the Numbers - Decimal to Binary Conversions

Page 1:
Not only do we need to be able to convert binary to decimal, we also need to be able to convert decimal to binary. We often need to examine an individual octet of an address that is given in dotted decimal notation. Such is the case when the network bits and host bits divide an octet.

As an example, if a host with the 172.16.4.20 were using 28 bits for the network address, we would need to examine the binary in the last octet to discover that this host is on the network 172.16.4.16. This process of extracting the network address from a host address will be explained later.

Address Values are Between 0 and 255

Because our representation of addresses is limited to decimal values for a single octet, we will only examine the process of converting 8-bit binary to the decimal values of 0 to 255.

To begin the conversion process, we start by determining if the decimal number is equal to or greater than our largest decimal value represented by the most-significant bit. In the highest position, we determine if the value is equal to or greater than 128. If the value is smaller than 128, we place a 0 in the 128-bit position and move to the 64-bit position.

If the value in the 128-bit position is larger than or equal to 128, we place a 1 in the 128 position and subtract 128 from the number being converted. We then compare the remainder of this operation to the next smaller value, 64. We continue this process for all the remaining bit positions.

See the figure for an example of these steps. We convert 172 to 10101100.


6.1.4 - Knowing the Numbers - Decimal to Binary Conversions
The diagram depicts the steps to convert from decimal to binary for a single octet. The decimal number 172 is converted to binary 10101100 using the following process, as described in a flowchart.

Convert decimal 172 to binary 10101100:
Step 1. Is 172 >= 128?
Yes. Put a binary one in the 128-bit position (bit 8), and subtract 128 from 172, which equals 44. Go to Step 2.

Step 2. Is 44 >= 64?
No. Put a binary zero in the 64-bit position (bit 7) and go to step 3.

Step 3. Is 44 >= 32?
Yes. Put a binary one in the 32-bit position (bit 6), and subtract 32 from 44, which equals 12. Go to Step 4.

Step 4. Is 12 >= 16?
No. Put a binary zero in the 16-bit position (bit 5) and go to step 5.

Step 5. Is 12 >= 8?
Yes. Put a binary one in the 8-bit position (bit 4), and subtract 8 from 12, which equals 4. Go to Step 6.

Step 6. Is 4 >= 4?
Yes. Put a binary one in the 4-bit position (bit 3), and subtract 4 from 4, which equals zero. Go to Step 7.

Step 7. Because there are no more binary ones and, in step 6, there was no remainder, put a zero in the two remaining bit positions, the 2 bit and the 1 bit. The process is now completed, and the final binary value is 10101100.


Page 2:
Follow the conversion steps to see how an IP address is converted to binary.


6.1.4 - Knowing the Numbers - Decimal to Binary Conversions
The diagram depicts conversion steps for the complete IP address 172.16.4.20 to binary, using the same process as described in Diagram 1.


Page 3:
Conversion Summary

The figure summarizes the entire conversion of 172.16.4.20 from dotted decimal notation to binary notation.


6.1.4 - Knowing the Numbers - Decimal to Binary Conversions
The diagram depicts a summarization of the entire conversion of 172.16.4.20 from dotted decimal notation to binary notation.


6.1.5 Practicing Decimal to Binary Conversion

Page 1:
The activity in the figure allows you to practice decimal conversion to 8-bit binary as much as necessary. We recommend that you work with this tool until you are able to do the conversion without error.


6.1.5 - Practicing Decimal to Binary Conversion
The diagram depicts an activity in which you must enter a zero or a one in each of the eight binary positions so that it equals the decimal number presented. The exponent for each position and the bit value is given.

Note: You might want to contact your instructor for assistance with this activity.

Example 1 - Decimal 248:
Binary bit 128 = BLANK (zero or one)
Binary bit 64 = BLANK (zero or one)
Binary bit 32 = BLANK (zero or one)
Binary bit 16 = BLANK (zero or one)
Binary bit 8 = BLANK (zero or one)
Binary bit 4 = BLANK (zero or one)
Binary bit 2 = BLANK (zero or one)
Binary bit 1 = BLANK (zero or one)

Example 2 - Decimal 153:
Binary bit 128 = BLANK (zero or one)
Binary bit 64 = BLANK (zero or one)
Binary bit 32 = BLANK (zero or one)
Binary bit 16 = BLANK (zero or one)
Binary bit 8 = BLANK (zero or one)
Binary bit 4 = BLANK (zero or one)
Binary bit 2 = BLANK (zero or one)
Binary bit 1 = BLANK (zero or one)

Example 3 - Decimal 165:
Binary bit 128 = BLANK (zero or one)
Binary bit 64 = BLANK (zero or one)
Binary bit 32 = BLANK (zero or one)
Binary bit 16 = BLANK (zero or one)
Binary bit 8 = BLANK (zero or one)
Binary bit 4 = BLANK (zero or one)
Binary bit 2 = BLANK (zero or one)
Binary bit 1 = BLANK (zero or one)


6.2 Addresses for Different Purposes

6.2.1 Types of Addresses in an IPv4 Network

Page 1:
Within the address range of each IPv4 network, we have three types of addresses:

Network address - The address by which we refer to the network

Broadcast address - A special address used to send data to all hosts in the network

Host addresses - The addresses assigned to the end devices in the network

Network Address

The network address is a standard way to refer to a network. For example, we could refer to the network shown in the figure as "the 10.0.0.0 network." This is a much more convenient and descriptive way to refer to the network than using a term like "the first network." All hosts in the 10.0.0.0 network will have the same network bits.

Within the IPv4 address range of a network, the lowest address is reserved for the network address. This address has a 0 for each host bit in the host portion of the address.

Roll over the NETWORK ADDRESS tab in the figure.

Broadcast Address

The IPv4 broadcast address is a special address for each network that allows communication to all the hosts in that network. To send data to all hosts in a network, a host can send a single packet that is addressed to the broadcast address of the network.

The broadcast address uses the highest address in the network range. This is the address in which the bits in the host portion are all 1s. For the network 10.0.0.0 with 24 network bits, the broadcast address would be 10.0.0.255. This address is also referred to as the directed broadcast.

Roll over the BROADCAST ADDRESS tab in the figure.

Host Addresses

As described previously, every end device requires a unique address to deliver a packet to that host. In IPv4 addresses, we assign the values between the network address and the broadcast address to the devices in that network.

Roll over the HOST ADDRESS tab in the figure.


6.2.1 - Types of Addresses in an IPv4 Network
The diagram depicts three address types within the address range of each IPv4 network: network, broadcast, and host. Three host PC's and a printer are shown connecting to a switch on the 10.0.0.0/24 network.

Network address: 10.0.0.0 refers to the network as a whole. All devices in this network have the same network address bits.

Broadcast address: In the example, the broadcast address is 10.0.0.255. It is used to send packets to every host in the network that shares the same network portion of the address.

Host address: Each host in this network has a unique address. In the example, the PC host addresses are 10.0.0.1, 10.0.0.2, and 10.0.0.3, and the printer is host address 10.0.0.253.


Page 2:
Network Prefixes

An important question is: How do we know how many bits represent the network portion and how many bits represent the host portion? When we express an IPv4 network address, we add a prefix length to the network address. The prefix length is the number of bits in the address that gives us the network portion. For example, in 172.16.4.0 /24, the /24 is the prefix length - it tells us that the first 24 bits are the network address. This leaves the remaining 8 bits, the last octet, as the host portion. Later in this chapter, we will learn more about another entity that is used to specify the network portion of an IPv4 address to the network devices. It is called the subnet mask. The subnet mask consists of 32 bits, just as the address does, and uses 1s and 0s to indicate which bits of the address are network bits and which bits are host bits.

Networks are not always assigned a /24 prefix. Depending on the number of hosts on the network, the prefix assigned may be different. Having a different prefix number changes the host range and broadcast address for each network.

Roll over the addresses in the figure to view the results of using different prefixes on an address.

Notice that the network address could remain the same, but the host range and the broadcast address are different for the different prefix lengths. In this figure you can also see that the number of hosts that can be addressed on the network changes as well.



6.2.1 - Types of Addresses in an IPv4 Network
The diagram depicts using network prefixes to determine the network portion of the IP address, the host range, and the broadcast address for each network. The prefixes /24, /25, /26, and /27 are applied to the 172.16.4.0 network address. The same network address is used for all prefixes. The host range and broadcast address for each prefix is different.

Rollovers show the binary values for each network address, the host range, and the broadcast address for each prefix.

Rollover Notes for 172.16.4.0 /24:
Network address: All host bits = 0, Host bits binary 0000000
Host range: Represents all combinations of host bits, except where host bits are all zeros or all ones. Host bits binary: 00000001 (decimal 1) through 11111110 (decimal 254).
Broadcast address: All host bits = 1, Host bits binary 11111111 (decimal 255)

Examples:
Network: 172.16.4.0/24
Network address: 172.16.4.0
Host range: 172.16.4.1 to 172.16.4.254
Broadcast address: 172.16.4.255

Network: 172.16.4.0/25
Network address: 172.16.4.0
Host range: 172.16.4.1 to 172.16.4.126
Broadcast address: 172.16.4.127

Network: 172.16.4.0/26
Network address: 172.16.4.0
Host range: 172.16.4.1 to 172.16.4.62
Broadcast address: 172.16.4.63

Network: 172.16.4.0/27
Network address: 172.16.4.0
Host range: 172.16.4.1 to 172.16.4.30
Broadcast address: 172.16.4.31


6.2.2 Calculating Network, Hosts and Broadcast Addresses

Page 1:
At this point, you may be wondering: How do we calculate these addresses? This calculation process requires us to look at these addresses in binary.

In the example network divisions, we need to look at the octet of the address where the prefix divides the network portion from the host portion. In all of these examples, it is the last octet. While this is common, the prefix can also divide any of the octets.

To get started understanding this process of determining the address assignments, let's break some examples down into binary.

See the figure for an example of the address assignment for the 172.16.20.0 /25 network.

In the first box, we see the representation of the network address. With a 25 bit prefix, the last 7 bits are host bits. To represent the network address, all of these host bits are '0'. This makes the last octet of the address 0. This makes the network address 172.16.20.0 /25.

In the second box, we see the calculation of the lowest host address. This is always one greater than the network address. In this case, the last of the seven host bits becomes a '1'. With the lowest bit of host address set to a 1, the lowest host address is 172.16.20.1.

The third box shows the calculation of the broadcast address of the network. Therefore, all seven host bits used in this network are all '1s'. From the calculation, we get 127 in the last octet. This gives us a broadcast address of 172.16.20.127.

The fourth box presents the calculation of the highest host address. The highest host address for a network is always one less than the broadcast. This means the lowest host bit is a '0' and all other host bits as '1s'. As seen, this makes the highest host address in this network 172.16.20.126.

Although for this example we expanded all of the octets, we only need to examine the content of the divided octet.


6.2.2 - Calculating Network, Hosts and Broadcast Addresses
The diagram depicts an example of the address assignment for the 172.16.20.0/25 network. A prefix of /25 provides 7 bits for host addressing.

1. Representation of the network address. With a 25-bit prefix, the last 7 bits are host bits. To represent the network address, all the host bits are zero. This makes the last octet of the address zero, and the network address is 172.16.20.0/25.

2. Calculation of the lowest host address. The host address is always one greater than the network address. In this case, the last of the seven host bits becomes a one. The lowest host address is 172.16.20.1.

3. Calculation of the broadcast address of the network. All seven host bits used in this network are all ones. From the calculation, the last octet is 127, so the broadcast address is 172.16.20.127.

4. Calculation of the highest host address. The highest host address for a network is always one less than the broadcast. This means that the lowest host bit is a zero, and all other host bits are ones. The highest host address in this network is 172.16.20.126.


Page 2:
Flash Practice Activity

In the activity in the figure, you will calculate the network address, host addresses, and broadcast address for given networks. Practice as much as necessary. We recommend that you work with this tool until you are able to do the conversion without error.


6.2.2 - Calculating Network, Hosts and Broadcast Addresses
The diagram depicts an activity in which you calculate the network address, host addresses, and broadcast address for given networks.

Note: You might want to contact your instructor for assistance with this activity.

Example 1. The host IP Address and prefix is 192.242.133.123/29
A. For the Network Address
- Enter the last octet in binary:
- Enter the last octet in decimal:
- Enter the full address in decimal:

B. For the Broadcast Address
- Enter the last octet in binary:
- Enter the last octet in decimal:
- Enter the full address in decimal:

C. For the first usable Host Address
- Enter the last octet in binary:
- Enter the last octet in decimal:
- Enter the full address in decimal:

D. For the last usable Host Address
- Enter the last octet in binary:
- Enter the last octet in decimal:
- Enter the full address in decimal:

Example 2. The host IP Address and prefix is 190.162.198.25/23
A. For the Network Address
- Enter the last octet in binary:
- Enter the last octet in decimal:
- Enter the full address in decimal:

B. For the Broadcast Address
- Enter the last octet in binary:
- Enter the last octet in decimal:
- Enter the full address in decimal:

C. For the first usable Host Address
- Enter the last octet in binary:
- Enter the last octet in decimal:
- Enter the full address in decimal:

D. For the last usable Host Address
- Enter the last octet in binary:
- Enter the last octet in decimal:
- Enter the full address in decimal:


6.2.3 Unicast, Broadcast, Multicast - Types of Communication

Page 1:
In an IPv4 network, the hosts can communicate one of three different ways:

Unicast - the process of sending a packet from one host to an individual host

Broadcast - the process of sending a packet from one host to all hosts in the network

Multicast - the process of sending a packet from one host to a selected group of hosts

These three types of communication are used for different purposes in the data networks. In all three cases, the IPv4 address of the originating host is placed in the packet header as the source address.

Unicast Traffic

Unicast communication is used for the normal host-to-host communication in both a client/server and a peer-to-peer network. Unicast packets use the host address of the destination device as the destination address and can be routed through an internetwork. Broadcast and multicast, however, use special addresses as the destination address. Using these special addresses, broadcasts are generally restricted to the local network. The scope of multicast traffic also may be limited to the local network or routed through an internetwork.

Play the animation to see an example of unicast transmission.

In an IPv4 network, the unicast address applied to an end device is referred to as the host address. For unicast communication, the host addresses assigned to the two end devices are used as the source and destination IPv4 addresses. During the encapsulation process, the source host places its IPv4 address in the unicast packet header as the source host address and the IPv4 address of the destination host in the packet header as the destination address. The communication using a unicast packet can be forwarded through an internetwork using the same addresses.

Note: In this course, all communications between devices is unicast communication unless otherwise noted.


6.2.3 - Unicast, Broadcast, Multicast - Types of Communication
The animation depicts an example of unicast transmission.

Network Topology:
Three PC's and a printer are connected to a switch that is connected to a router.

PC1 IP address: 172.16.4.1
PC2 IP address: 172.16.4.2
PC3 IP address: 172.16.4.3
Printer IP address: 172.16.4.253

In the animation, a unicast packet is sent from source host PC1 to an individual destination host, which is the printer.


Page 2:
Broadcast Transmission

Because broadcast traffic is used to send packets to all hosts in the network, a packet uses a special broadcast address. When a host receives a packet with the broadcast address as the destination, it processes the packet as it would a packet to its unicast address.

Broadcast transmission is used for the location of special services/devices for which the address is not known or when a host needs to provide information to all the hosts on the network.

Some examples for using broadcast transmission are:

  • Mapping upper layer addresses to lower layer addresses
  • Requesting an address
  • Exchanging routing information by routing protocols

When a host needs information, the host sends a request, called a query, to the broadcast address. All hosts in the network receive and process this query. One or more of the hosts with the requested information will respond, typically using unicast.

Similarly, when a host needs to send information to the hosts on a network, it creates and sends a broadcast packet with the information.

Unlike unicast, where the packets can be routed throughout the internetwork, broadcast packets are usually restricted to the local network. This restriction is dependent on the configuration of the router that borders the network and the type of broadcast. There are two types of broadcasts: directed broadcast and limited broadcast.

Directed Broadcast

A directed broadcast is sent to all hosts on a specific network. This type of broadcast is useful for sending a broadcast to all hosts on a non-local network. For example, for a host outside of the network to communicate with the hosts within the 172.16.4.0 /24 network, the destination address of the packet would be 172.16.4.255. This is shown in the figure. Although routers do not forward directed broadcasts by default, they may be configured to do so.

Limited Broadcast

The limited broadcast is used for communication that is limited to the hosts on the local network. These packets use a destination IPv4 address 255.255.255.255. Routers do not forward this broadcast. Packets addressed to the limited broadcast address will only appear on the local network. For this reason, an IPv4 network is also referred to as a broadcast domain. Routers form the boundary for a broadcast domain.

As an example, a host within the 172.16.4.0 /24 network would broadcast to all the hosts in its network using a packet with a destination address of 255.255.255.255.

Play the animation to see an example of broadcast transmission.

As you learned earlier, when a packet is broadcast, it uses resources on the network and also forces every host on the network that receives it to process the packet. Therefore, broadcast traffic should be limited so that it does not adversely affect performance of the network or devices. Because routers separate broadcast domains, subdividing networks with excessive broadcast traffic can improve network performance.


6.2.3 - Unicast, Broadcast, Multicast - Types of Communication
The animation depicts an example of a limited broadcast.
Network Topology: Same as diagram 1.

In the animation, a limited broadcast packet is sent from source host PC1 to all other hosts on the same local network, which are PC2, PC3, the printer, and the LAN interface of the router. The router blocks the broadcast.


Page 3:
Multicast Transmission

Multicast transmission is designed to conserve the bandwidth of the IPv4 network. It reduces traffic by allowing a host to send a single packet to a selected set of hosts. To reach multiple destination hosts using unicast communication, a source host would need to send an individual packet addressed to each host. With multicast, the source host can send a single packet that can reach thousands of destination hosts.

Some examples of multicast transmission are:

  • Video and audio distribution
  • Routing information exchange by routing protocols
  • Distribution of software
  • News feeds

Multicast Clients

Hosts that wish to receive particular multicast data are called multicast clients. The multicast clients use services initiated by a client program to subscribe to the multicast group.

Each multicast group is represented by a single IPv4 multicast destination address. When an IPv4 host subscribes to a multicast group, the host processes packets addressed to this multicast address as well as packets addressed to its uniquely allocated unicast address. As we will see, IPv4 has set aside a special block of addresses from 224.0.0.0 to 239.255.255.255 for multicast groups addressing.

The animation demonstrates clients accepting multicast packets.



6.2.3 - Unicast, Broadcast, Multicast - Types of Communication
The animation depicts an example of a multicast transmission.

Network Topology: Same as diagram 1.

In the animation, a multicast packet is sent from source host PC1 to multicast group address 224.10.10.5, which includes PC3 and PC4.


Page 4:
In this activity, you will be able to visualize unicasts, broadcasts, and multicasts by using Packet Tracer in simulation mode.

Broadcast:
http://www.ietf.org/rfc/rfc0919.txt?number=919

Multicast:
http://www.cisco.com/en/US/tech/tk828/technologies_white_paper09186a0080092942.shtml

http://www.cisco.com/en/US/docs/internetworking/technology/handbook/IP-Multi.html

Click the Packet Tracer icon to launch the Packet Tracer activity.


6.2.3 - Unicast, Broadcast, Multicast - Types of Communication
Link to Packet Tracer Exploration: Show Unicast, Broadcast, and Multicast Traffic

In this activity, you can experience unicasts, broadcasts, and multicasts by using Packet Tracer in simulation mode.


6.2.4 Reserved IPv4 Address Ranges

Page 1:
Expressed in dotted decimal format, the IPv4 address range is 0.0.0.0 to 255.255.255.255. As you have already seen, not all of these addresses can be used as host addresses for unicast communication.

Experimental Addresses

One major block of addresses reserved for special purposes is the IPv4 experimental address range 240.0.0.0 to 255.255.255.254. Currently, these addresses are listed as reserved for future use (RFC 3330). This suggests that they could be converted to usable addresses. Currently, they cannot be used in IPv4 networks. However, these addresses could be used for research or experimentation.

Multicast Addresses

As previously shown, another major block of addresses reserved for special purposes is the IPv4 multicast address range 224.0.0.0 to 239.255.255.255. Additionally, the multicast address range is subdivided into different types of addresses: reserved link local addresses and globally scoped addresses. One additional type of multicast address is the administratively scoped addresses, also called limited scope addresses.

The IPv4 multicast addresses 224.0.0.0 to 224.0.0.255 are reserved link local addresses. These addresses are to be used for multicast groups on a local network. Packets to these destinations are always transmitted with a time-to-live (TTL) value of 1. Therefore, a router connected to the local network should never forward them. A typical use of reserved link-local addresses is in routing protocols using multicast transmission to exchange routing information.

The globally scoped addresses are 224.0.1.0 to 238.255.255.255. They may be used to multicast data across the Internet. For example, 224.0.1.1 has been reserved for Network Time Protocol (NTP) to synchronize the time-of-day clocks of network devices.

Host Addresses

After accounting for the ranges reserved for experimental addresses and multicast addresses, this leaves an address range of 0.0.0.0 to 223.255.255.255 that could be used for IPv4 hosts. However, within this range are many addresses that are already reserved for special purposes. Although we have previously covered some of these addresses, the major reserved addresses are discussed in the next section.


6.2.4 - Reserved IPv4 Address Ranges
The diagram depicts reserved IPv4 addresses, including their usage, address range, and RFC number where they are defined. These reserved addresses include host addresses, multicast addresses, and experimental addresses.

Type of Address: Host
Usage: IPv4 hosts
Reserved IPv4 Address Range: 0.0.0.0 to 223.255.255.255
RFC: 790

Type of Address: Multicast
Usage: Multicast groups on a local network
Reserved IPv4 Address Range: 224.0.0.0 to 239.255.255.255
RFC: 1700

Type of Address: Experimental
Usage:
- Research or experimentation
- Cannot currently be used for hosts in IPv4 networks
Reserved IPv4 Address Range: 240.0.0.0 to 255.255.255.254
RFC: 1700 and 3330


6.2.5 Public and Private Addresses

Page 1:
Although most IPv4 host addresses are public addresses designated for use in networks that are accessible on the Internet, there are blocks of addresses that are used in networks that require limited or no Internet access. These addresses are called private addresses.

Private Addresses

The private address blocks are:

  • 10.0.0.0 to 10.255.255.255 (10.0.0.0 /8)
  • 172.16.0.0 to 172.31.255.255 (172.16.0.0 /12)
  • 192.168.0.0 to 192.168.255.255 (192.168.0.0 /16)

Private space address blocks, as shown in the figure, are set aside for use in private networks. The use of these addresses need not be unique among outside networks. Hosts that do not require access to the Internet at large may make unrestricted use of private addresses. However, the internal networks still must design network address schemes to ensure that the hosts in the private networks use IP addresses that are unique within their networking environment.

Many hosts in different networks may use the same private space addresses. Packets using these addresses as the source or destination should not appear on the public Internet. The router or firewall device at the perimeter of these private networks must block or translate these addresses. Even if these packets were to make their way to the Internet, the routers would not have routes to forward them to the appropriate private network.

Network Address Translation (NAT)

With services to translate private addresses to public addresses, hosts on a privately addressed network can have access to resources across the Internet. These services, called Network Address Translation (NAT), can be implemented on a device at the edge of the private network.

NAT allows the hosts in the network to "borrow" a public address for communicating to outside networks. While there are some limitations and performance issues with NAT, clients for most applications can access services over the Internet without noticeable problems.

Note: NAT will be covered in detail in a subsequent course.

Public Addresses

The vast majority of the addresses in the IPv4 unicast host range are public addresses. These addresses are designed to be used in the hosts that are publicly accessible from the Internet. Even within these address blocks, there are many addresses that are designated for other special purposes.


6.2.5 - Public and Private Addresses
The diagram depicts three LAN's, each of which uses one of the private address blocks. These include.
10.0.0.0 to 10.255.255.255 (10.0.0.0/8)
172.16.0.0 to 172.31.255.255 (172.16.0.0/12)
192.168.0.0 to 192.168.255.255 (192.168.0.0/16)

Hosts in each of the three LAN's have IP addresses assigned within the private range of the LAN in which they are located. An edge router in each LAN is connected to a router at one of three ISP's in the Internet cloud. Without the use of Network Address Translation (NAT), these addresses are blocked at the ISP.

Private net 10.0.0.0/8 - Hosts have IP addresses 10.0.0.1 through 10.0.0.10.
Private net 172.16.0.0/12 - Hosts have IP addresses 172.16.0.1 through 172.16.0.7.
Private net 192.168.1.0/16 - Hosts have IP addresses 192.168.1.1 through 192.168.1.3.


Page 2:


6.2.5 - Public and Private Addresses
The diagram depicts an activity in which you indicate whether an address is public or private.

A. Is address 172.16.35.2 public or private?
B. Is address 192.168.3.5 public or private?
C. Is address 192.0.2.15 public or private?
D. Is address 64.104.0.22 public or private?
E. Is address 209.165.201.30 public or private?
F. Is address 192.168.11.5 public or private?
G. Is address 172.16.30.30 public or private?
H. Is address 10.55.3.168 public or private?


6.2.6 Special IPv4 Addresses

Page 1:
There are certain addresses that cannot be assigned to hosts for various reasons. There are also special addresses that can be assigned to hosts but with restrictions on how those hosts can interact within the network.

Network and Broadcast Addresses

As explained earlier, within each network the first and last addresses cannot be assigned to hosts. These are the network address and the broadcast address, respectively.

Default Route

Also presented earlier, we represent the IPv4 default route as 0.0.0.0. The default route is used as a "catch all" route when a more specific route is not available. The use of this address also reserves all addresses in the 0.0.0.0 - 0.255.255.255 (0.0.0.0 /8) address block.

Loopback

One such reserved address is the IPv4 loopback address 127.0.0.1. The loopback is a special address that hosts use to direct traffic to themselves. The loopback address creates a shortcut method for TCP/IP applications and services that run on the same device to communicate with one another. By using the loopback address instead of the assigned IPv4 host address, two services on the same host can bypass the lower layers of the TCP/IP stack. You can also ping the loopback address to test the configuration of TCP/IP on the local host.

Although only the single 127.0.0.1 address is used, addresses 127.0.0.0 to 127.255.255.255 are reserved. Any address within this block will loop back within the local host. No address within this block should ever appear on any network.

Link-Local Addresses

IPv4 addresses in the address block 169.254.0.0 to 169.254.255.255 (169.254.0.0 /16) are designated as link-local addresses. These addresses can be automatically assigned to the local host by the operating system in environments where no IP configuration is available. These might be used in a small peer-to-peer network or for a host that could not automatically obtain an address from a Dynamic Host Configuration Protocol (DHCP) server.

Communication using IPv4 link-local addresses is only suitable for communication with other devices connected to the same network, as shown in the figure. A host must not send a packet with an IPv4 link-local destination address to any router for forwarding and should set the IPv4 TTL for these packets to 1.

Link-local addresses do not provide services outside of the local network. However, many client/server and peer-to-peer applications will work properly with IPv4 link-local addresses.

TEST-NET Addresses

The address block 192.0.2.0 to 192.0.2.255 (192.0.2.0 /24) is set aside for teaching and learning purposes. These addresses can be used in documentation and network examples. Unlike the experimental addresses, network devices will accept these addresses in their configurations. You may often find these addresses used with the domain names example.com or example.net in RFCs, vendor, and protocol documentation. Addresses within this block should not appear on the Internet.

Links:

Local-Link addresses http://www.ietf.org/rfc/rfc3927.txt?number=3927

Special-Use IPv4 Addresses http://www.ietf.org/rfc/rfc3330.txt?number=3330

Multicast allocation: http://www.iana.org/assignments/multicast-addresses


6.2.6 - Special IPv4 Addresses
The diagram depicts using special IPv4 addresses, specifically link local and TEST-NET addresses.

LAN A, a link-local network at 169.254.0.0/16, can only communicate within the local LAN. LAN A has four hosts connected to switch S1. Switch S1 is connected to an interface on router R1.

LAN B, a network using TEST-NET addresses 192.0.2.0/24, can only communicate within the local LAN. LAN B has four hosts connected to switch S2. Switch S2 is connected to an interface on router R1.

Router R1 is connected to the Internet cloud. The router does not forward TEST-NET and link-local addresses.


6.2.7 Legacy IPv4 Addressing

Page 1:
Historic Network Classes

Historically, RFC1700 grouped the unicast ranges into specific sizes called class A, class B, and class C addresses. It also defined class D (multicast) and class E (experimental) addresses, as previously presented.

The unicast address classes A, B, and C defined specifically-sized networks as well as specific address blocks for these networks, as shown in the figure. A company or organization was assigned an entire class A, class B, or class C address block. This use of address space is referred to as classful addressing.

Class A Blocks

A class A address block was designed to support extremely large networks with more than 16 million host addresses. Class A IPv4 addresses used a fixed /8 prefix with the first octet to indicate the network address. The remaining three octets were used for host addresses.

To reserve address space for the remaining address classes, all class A addresses required that the most significant bit of the high-order octet be a zero. This meant that there were only 128 possible class A networks, 0.0.0.0 /8 to 127.0.0.0 /8, before taking out the reserved address blocks. Even though the class A addresses reserved one-half of the address space, because of their limit of 128 networks, they could only be allocated to approximately 120 companies or organizations.

Class B Blocks

Class B address space was designed to support the needs of moderate to large size networks with more than 65,000 hosts. A class B IP address used the two high-order octets to indicate the network address. The other two octets specified host addresses. As with class A, address space for the remaining address classes needed to be reserved.

For class B addresses, the most significant two bits of the high-order octet were 10. This restricted the address block for class B to 128.0.0.0 /16 to 191.255.0.0 /16. Class B had slightly more efficient allocation of addresses than class A because it equally divided 25% of the total IPv4 address space among approximately 16,000 networks.

Class C Blocks

The class C address space was the most commonly available of the historic address classes. This address space was intended to provide addresses for small networks with a maximum of 254 hosts.

Class C address blocks used a /24 prefix. This meant that a class C network used only the last octet as host addresses with the three high-order octets used to indicate the network address.

Class C address blocks set aside address space for class D (multicast) and class E (experimental) by using a fixed value of 110 for the three most significant bits of the high-order octet. This restricted the address block for class C to 192.0.0.0 /16 to 223.255.255.0 /16. Although it occupied only 12.5% of the total IPv4 address space, it could provide addresses to 2 million networks.

Limits to the Class-based System

Not all organizations' requirements fit well into one of these three classes. Classful allocation of address space often wasted many addresses, which exhausted the availability of IPv4 addresses. For example, a company that had a network with 260 hosts would need to be given a class B address with more than 65,000 addresses.

Even though this classful system was all but abandoned in the late 1990s, you will see remnants of it in networks today. For example, when you assign an IPv4 address to a computer, the operating system examines the address being assigned to determine if this address is a class A, class B, or class C. The operating system then assumes the prefix used by that class and makes the appropriate subnet mask assignment.

Another example is the assumption of the mask by some routing protocols. When some routing protocols receive an advertised route, it may assume the prefix length based on the class of the address.

Classless Addressing

The system that we currently use is referred to as classless addressing. With the classless system, address blocks appropriate to the number of hosts are assigned to companies or organizations without regard to the unicast class.


6.2.7 - Legacy IPv4 Addressing
The diagram depicts a table of IPv4 address classes and their characteristics.

Address Class: A
First octet range (decimal): 1 to 127
First octet bits (first bit does not change): 00000000 to 01111111
Network (N) and Host (H) parts of address: N.H.H.H
Default subnet mask (decimal and binary): 255.0.0.0
Number of possible networks and hosts per network: 128 nets (2 to the seventh power)
16,777,214 hosts per net (2 to the 24th power minus 2)

Address Class: B
First octet range (decimal): 128 to 191
First octet bits (first 2 bits do not change): 10000000 to 10111111
Network (N) and Host(H) parts of address: N.N.H.H
Default subnet mask (decimal and binary): 255.255.0.0
Number of possible networks and hosts per network: 16,384 nets (2 to the 14th power)
65,384 hosts per net (2 to the 14th power minus 2)

Address Class: C
First octet range (decimal): 192 to 223
First octet bits (first 3 bits do not change): 11000000 to 11011111
Network (N) and Host (H) parts of address: N.N.N.H
Default subnet mask (decimal and binary): 255.255.255.0
Number of possible networks and hosts per network: 2,097,150 nets (2 to the 21st power)
254 hosts per net (2 to the eighth power minus 2)

Address Class: D
First octet range (decimal): 224 to 239
First octet bits (first 4 bits do not change): 11100000 to 11101111
Network (N) and Host (H) parts of address: Not Applicable (multicast)

Address Class: E
First octet range (decimal): 240 to 255
First octet bits (first 4 bits do not change): 11110000 to 11111111
Network (N) and Host (H) parts of address: Not Applicable (experimental)

Note: When calculating the number of hosts per network or subnet, a host address of all zeros or all ones is an invalid host address.


6.3 Assigning Addresses

6.3.1 Planning to Address the Network

Page 1:
The allocation of Network layer address space within the corporate network needs to be well designed. Network administrators should not randomly select the addresses used in their networks. Nor should address assignment within the network be random.

The allocation of these addresses inside the networks should be planned and documented for the purpose of:

  • Preventing duplication of addresses
  • Providing and controlling access
  • Monitoring security and performance

Preventing Duplication of Addresses

As you already know, each host in an internetwork must have a unique address. Without the proper planning and documentation of these network allocations, we could easily assign an address to more than one host.

Providing and Controlling Access

Some hosts provide resources to the internal network as well as to the external network. One example of these devices is servers. Access to these resources can be controlled by the Layer 3 address. If the addresses for these resources are not planned and documented, the security and accessibility of the devices are not easily controlled. For example, if a server has a random address assigned, blocking access to its address is difficult and clients may not be able to locate this resource.

Monitoring Security and Performance

Similarly, we need to monitor the security and performance of the network hosts and the network as a whole. As part of the monitoring process, we examine network traffic looking for addresses that are generating or receiving excessive packets. If we have proper planning and documentation of the network addressing, we can identify the device on the network that has a problematic address.

Assigning Addresses within a Network

As you have already learned, hosts are associated with an IPv4 network by a common network portion of the address. Within a network, there are different types of hosts.

Some examples of different types of hosts are:

  • End devices for users
  • Servers and peripherals
  • Hosts that are accessible from the Internet
  • Intermediary devices

Each of these different device types should be allocated to a logical block of addresses within the address range of the network.

Roll over the tabs to see different classifications of assigning addresses.


6.3.1 - Planning to Address the Network
The diagram depicts IPv4 address planning and assignment. PC's are in two locations and are assigned IP addresses based on three methods:

Location - West Office or East Office
Department - Sales, HR, or Legal
Device type - Printer, Server, or Computer


Page 2:
An important part of planning an IPv4 addressing scheme is deciding when private addresses are to be used and where they are to be applied.

Considerations include:

  • Will there be more devices connected to the network than public addresses allocated by the network's ISP?
  • Will the devices need to be accessed from outside the local network?
  • If devices that may be assigned private addresses require access to the Internet, is the network capable of providing a Network Address Translation (NAT) service?

Roll over the tabs in the figure to see private and public address assignments.

If there are more devices than available public addresses, only those devices that will directly access the Internet - such as web servers - require a public address. A NAT service would allow those devices with private addresses to effectively share the remaining public addresses.


6.3.1 - Planning to Address the Network
The diagram depicts IPv4 address planning and assignment of private addresses and public addresses.

Private Addresses: Hosts on an internal local network use private addresses. These hosts connect to a switch, which connects to a router. Network Address Translation (NAT) is required to allow Internet access for private addresses.

Public Addresses: Web servers on another segment of the network use public addresses. These servers connect to a switch, which connects to the same router as the internal local network. Public addresses have Internet access and do not require NAT.


6.3.2 Static or Dynamic Addressing for End User Devices

Page 1:
Addresses for User Devices

In most data networks, the largest population of hosts includes the end devices such as PCs, IP phones, printers, and PDAs. Because this population represents the largest number of devices within a network, the largest number of addresses should be allocated to these hosts.

IP addresses can be assigned either statically or dynamically.

Static Assignment of Addresses

With a static assignment, the network administrator must manually configure the network information for a host, as shown in the figure. At a minimum, this includes entering the host IP address, subnet mask, and default gateway.

Static addresses have some advantages over dynamic addresses. For instance, they are useful for printers, servers, and other networking devices that need to be accessible to clients on the network. If hosts normally access a server at a particular IP address, it would cause problems if that address changed. Additionally, static assignment of addressing information can provide increased control of network resources. However, it can be time-consuming to enter the information on each host.

When using static IP addressing, it is necessary to maintain an accurate list of the IP address assigned to each device. These are permanent addresses and are not normally reused.


6.3.2 - Static or Dynamic Addressing for End-User Devices
The diagram depicts static assignment of addresses for user devices using Windows Internet Protocol (TCP/IP) Properties. For manual static assignments, the IP address, subnet mask, and default gateway are entered. In the example, the following is entered for the host.

IP Address: 192.168.1.1
Subnet mask: 255.255.255.0
Default gateway: 192.168.1.99


Page 2:
Dynamic Assignment of Addresses

Because of the challenges associated with static address management, end user devices often have addresses dynamically assigned, using Dynamic Host Configuration Protocol (DHCP), as shown in the figure.

DHCP enables the automatic assignment of addressing information such as IP address, subnet mask, default gateway, and other configuration information. The configuration of the DHCP server requires that a block of addresses, called an address pool, be defined to be assigned to the DHCP clients on a network. Addresses assigned to this pool should be planned so that they exclude any addresses used for the other types of devices.

DHCP is generally the preferred method of assigning IP addresses to hosts on large networks because it reduces the burden on network support staff and virtually eliminates entry errors.

Another benefit of DHCP is that an address is not permanently assigned to a host but is only "leased" for a period of time. If the host is powered down or taken off the network, the address is returned to the pool for reuse. This feature is especially helpful for mobile users that come and go on a network.


6.3.2 - Static or Dynamic Addressing for End-User Devices
The diagram depicts dynamic assignment of addresses using Windows Internet Protocol (TCP/IP) Properties when the radio button Obtain an IP address is selected. This feature sets the device to obtain an IP address automatically. Using DHCP, the following addresses are assigned dynamically.

IP Address: 192.168.0.5
Subnet mask: 255.255.255.0
Default gateway: 192.168.0.1
DHCP server: 192.168.0.1


6.3.3 Assigning Addresses to Other Devices

Page 1:
Addresses for Servers and Peripherals

Any network resource such as a server or a printer should have a static IPv4 address, as shown in the figure. The client hosts access these resources using the IPv4 addresses of these devices. Therefore, predictable addresses for each of these servers and peripherals are necessary.

Servers and peripherals are a concentration point for network traffic. There are many packets sent to and from the IPv4 addresses of these devices. When monitoring network traffic with a tool like Wireshark, a network administrator should be able to rapidly identify these devices. Using a consistent numbering system for these devices makes the identification easier.

Addresses for Hosts that are Accessible from Internet

In most internetworks, only a few devices are accessible by hosts outside of the corporation. For the most part, these devices are usually servers of some type. As with all devices in a network that provide network resources, the IPv4 addresses for these devices should be static.

In the case of servers accessible by the Internet, each of these must have a public space address associated with it. Additionally, variations in the address of one of these devices will make this device inaccessible from the Internet. In many cases, these devices are on a network that is numbered using private addresses. This means that the router or firewall at the perimeter of the network must be configured to translate the internal address of the server into a public address. Because of this additional configuration in the perimeter intermediary device, it is even more important that these devices have a predictable address.

Addresses for Intermediary Devices

Intermediary devices are also a concentration point for network traffic. Almost all traffic within or between networks passes through some form of intermediary device. Therefore, these network devices provide an opportune location for network management, monitoring, and security.

Most intermediary devices are assigned Layer 3 addresses. Either for the device management or for their operation. Devices such as hubs, switches, and wireless access points do not require IPv4 addresses to operate as intermediary devices. However, if we need to access these devices as hosts to configure, monitor, or troubleshoot network operation, they need to have addresses assigned.

Because we need to know how to communicate with intermediary devices, they should have predictable addresses. Therefore, their addresses are typically assigned manually. Additionally, the addresses of these devices should be in a different range within the network block than user device addresses.

Routers and Firewalls

Unlike the other intermediary devices mentioned, routers and firewall devices have an IPv4 address assigned to each interface. Each interface is in a different network and serves as the gateway for the hosts in that network. Typically, the router interface uses either the lowest or highest address in the network. This assignment should be uniform across all networks in the corporation so that network personnel will always know the gateway of the network no matter which network they are working on.

Router and firewall interfaces are the concentration point for traffic entering and leaving the network. Because the hosts in each network use a router or firewall device interface as the gateway out of the network, many packets flow through these interfaces. Therefore, these devices can play a major role in network security by filtering packets based on source and/or destination IPv4 addresses. Grouping the different types of devices into logical addressing groups makes the assignment and operation of this packet filtering more efficient.


6.3.3 - Assigning Addresses to Other Devices
The diagram depicts device IP address ranges for the network address 172.16.x.0 for user hosts, servers, peripherals, networking devices, and routers.

Network Topology:
Two LAN's, LAN A (172.16.1.0/24) and LAN B (172.16.2.0/24), are interconnected by router R1. In LAN A, three wired workstations, a printer, a server, and a wireless access point (AP), are connected to switch S1. Switch S1 is connected to router R1. Three wireless laptops are connected to the AP.

In LAN B, one wired workstation, a printer, and three servers, are connected to switch S2. Switch S2 is connected to router R1.

Network Address: 172.16.x.0 (LAN A is 172.16.1.0/24, and LAN B is 172.16.2.0/24).

Use: User hosts (DHCP pool)
First Address: 172.16.x.1
Last Address: 172.16.x.127
Summary Address: 172.16.x.0/25

Use: Servers
First Address: 172.16.x.128
Last Address: 172.16.x.191
Summary Address: 172.16.x.128/26

Use: Peripherals (printers in the diagram)
First Address: 172.16.x.192
Last Address: 172.16.x.223
Summary Address: 172.16.x.192/27

Use: Networking devices (AP's in the diagram)
First Address: 172.16.x.224
Last Address: 172.16.x.253
Summary Address: 172.16.x.224/27

Use: Router (gateway)
First Address: 172.16.x.254

Use: Broadcast
First Address: 172.16.x.255


6.3.4 Who Assigns the Different Addresses?

Page 1:
A company or organization that wishes to have network hosts accessible from the Internet must have a block of public addresses assigned. The use of these public addresses is regulated and the company or organization must have a block of addresses allocated to it. This is true for IPv4, IPv6, and multicast addresses.

Internet Assigned Numbers Authority (IANA) (http://www.iana.net) is the master holder of the IP addresses. The IP multicast addresses are obtained directly from IANA. Until the mid-1990s, all IPv4 address space was managed directly by the IANA. At that time, the remaining IPv4 address space was allocated to various other registries to manage for particular purposes or for regional areas. These registration companies are called Regional Internet Registries (RIRs), as shown in the figure. When a RIR requires more IP addresses for allocation or assignment within its region, the IANA allocates IPv6 addresses to the RIRs according to their established needs.

The major registries are:


Links:

IPv4 address registries allocations:

http://www.ietf.org/rfc/rfc1466.txt?number=1466

http://www.ietf.org/rfc/rfc2050.txt?number=2050

IPV4 Addresses allocation: http://www.iana.org/ipaddress/ip-addresses.htm

IP Addressing lookup: http://www.arin.net/whois/


6.3.4 - Who Assigns the Different Addresses?
The diagram depicts organizations that oversee IP address allocation.

Global: IANA

Regional Internet Registries
AfriNIC - Africa Region
APNIC - Asia/Pacific Region
LACNIC - Latin America and Caribbean Region
ARIN - North America Region
RIPE NCC - Europe, Middle East, Central Asia Region


6.3.5 ISPs

Page 1:
The Role of the ISP

Most companies or organizations obtain their IPv4 address blocks from an ISP. An ISP will generally supply a small number of usable IPv4 addresses (6 or 14) to their customers as a part of their services. Larger blocks of addresses can be obtained based on justification of needs and for additional service costs.

In a sense, the ISP loans or rents these addresses to the organization. If we choose to move our Internet connectivity to another ISP, the new ISP will provide us with addresses from the address blocks that have been provided to them, and our previous ISP returns the blocks loaned to us to their allocation to be loaned to another customer.

ISP Services

To get access to the services of the Internet, we have to connect our data network to the Internet using an Internet Service Provider (ISP).

ISPs have their own set of internal data networks to manage Internet connectivity and to provide related services. Among the other services that an ISP generally provides to its customers are DNS services, e-mail services, and a website. Depending on the level of service required and available, customers use different tiers of an ISP.

ISP Tiers

ISPs are designated by a hierarchy based on their level of connectivity to the Internet backbone. Each lower tier obtains connectivity to the backbone via a connection to a higher tier ISP, as shown in the figure.

Tier 1

At the top of the ISP hierarchy are Tier 1 ISPs. These ISPs are large national or international ISPs that are directly connected to the Internet backbone. The customers of Tier 1 ISPs are either lower-tiered ISPs or large companies and organizations. Because they are at the top of Internet connectivity, they engineer highly reliable connections and services. Among the technologies used to support this reliability are multiple connections to the Internet backbone.

The primary advantages for customers of Tier 1 ISPs are reliability and speed. Because these customers are only one connection away from the Internet, there are fewer opportunities for failures or traffic bottlenecks. The drawback for Tier 1 ISP customers is its high cost.

Tier 2

Tier 2 ISPs acquire their Internet service from Tier 1 ISPs. Tier 2 ISPs generally focus on business customers. Tier 2 ISPs usually offer more services than the other two tiers of ISPs. These tier 2 ISPs tend to have the IT resources to operate their own services such as DNS, e-mail servers, and web servers. Other services that Tier 2 ISPs may offer include website development and maintenance, e-commerce/e-business, and VoIP.

The primary disadvantage of Tier 2 ISPs, as compared to Tier 1 ISPs, is slower Internet access. Because Tier 2 ISPs are at least one more connection away from the Internet backbone, they also tend to have lower reliability than Tier 1 ISPs.

Tier 3

Tier 3 ISPs purchase their Internet service from Tier 2 ISPs. The focus of these ISPs is the retail and home markets in a specific locale. Tier 3 customers typically do not need many of the services required by Tier 2 customers. Their primary need is connectivity and support.

These customers often have little or no computer or network expertise. Tier 3 ISPs often bundle Internet connectivity as a part of network and computer service contracts for their customers. While they may have reduced bandwidth and less reliability than Tier 1 and Tier 2 providers, they are often good choices for small to medium size companies.


6.3.5 - ISP's
The diagram depicts a hierarchical ISP structure with Tier 1, Tier 2, and Tier 3 ISP's.

Tier 1
Tier 1 ISP's are at the top and connected directly to the Internet backbone. Tier 1 ISP's primarily serve very large companies and Tier 2 ISP's. They also provide direct, multiple connections to the Internet backbone. Examples of Tier 1 ISP's are Sprint and Savvis.

Tier 2
Tier 2 ISP's are in the middle of the hierarchy and are connected to Tier 1 ISP's. Tier 2 ISP's primarily serve large companies and Tier 3 ISP's. They connect to the Internet via a Tier 1 ISP. Examples of Tier 2 ISP's are in nLayer and France Telecom.

Tier 3
Tier 3 ISP's are at the bottom of the hierarchy and are connected to Tier 2 ISP's. Tier 3 ISP's primarily serve medium and small companies, and homes. They connect to the Internet via a Tier 2 ISP. Examples of Tier 3 ISP's are Fortress ITX and Beachcomputers.


6.3.6 Overview of IPv6

Page 1:
In the early 1990s, the Internet Engineering Task Force (IETF) grew concerned about the exhaustion of the IPv4 network addresses and began to look for a replacement for this protocol. This activity led to the development of what is now known as IPv6.

Creating expanded addressing capabilities was the initial motivation for developing this new protocol. Other issues were also considered during the development of IPv6, such as:

  • Improved packet handling
  • Increased scalability and longevity
  • QoS mechanisms
  • Integrated security

To provide these features, IPv6 offers:

  • 128-bit hierarchical addressing - to expand addressing capabilities
  • Header format simplification - to improve packet handling
  • Improved support for extensions and options - for increased scalability/longevity and improved packet handling
  • Flow labeling capability - as QoS mechanisms
  • Authentication and privacy capabilities - to integrate security

IPv6 is not merely a new Layer 3 protocol - it is a new protocol suite. New protocols at various layers of the stack have been developed to support this new protocol. There is a new messaging protocol (ICMPv6) and new routing protocols. Because of the increased size of the IPv6 header, it also impacts the underlying network infrastructure.

Transition to IPv6

As you can see from this brief introduction, IPv6 has been designed with scalability to allow for years of internetwork growth. However, IPv6 is being implemented slowly and in select networks. Because of better tools, technologies, and address management in the last few years, IPv4 is still very widely used, and likely to remain so for some time into the future. However, IPv6 may eventually replace IPv4 as the dominant Internet protocol.

Links:

IPv6: http://www.ietf.org/rfc/rfc2460.txt?number=2460

IPv6 addressing: http://www.ietf.org/rfc/rfc3513.txt?number=3513

IPv6 security: http://www.ietf.org/rfc/rfc2401.txt?number=2401

IPv6 security: http://www.ietf.org/rfc/rfc3168.txt?number=3168

IPv6 security: http://www.ietf.org/rfc/rfc4302.txt?number=4302

ICMPv6: http://www.ietf.org/rfc/rfc4443.txt?number=4443


6.3.6 - Overview of IPv6
The diagram depicts the IPv6 header and addressing.

The IP header includes the following fields:
Version 6
Traffic Class - 8 bits
Flow label - 20 bits
Payload length - 16 bits
Next header - 8 bits
Hop limit - 8 bits
Source address - 128 bits
- Example: 3ffe:6a88:08d3:1319:8e2a:0370:7344
Destination address - 128 bits
- Example: 2001:0db8:0000:0000:0000:0000:1428:57ab

Features provided by an IPv6 header include:
- Simplified header structure that allows for faster processing.
- Optional header strategy for customization and future development.

Features provided by IPv6 addresses include:
- Addresses are 128 bits.
- Addresses are expressed as 8 hexadecimal values, separated by colons.
- Each field is 16 bits long. 8 X 16 = 128


6.4 Is It On My Network?

6.4.1 The Subnet Mask - Defining the Network and Host Portions

Page 1:
As we learned earlier, an IPv4 address has a network portion and a host portion. We referred to the prefix length as the number of bits in the address giving us the network portion. The prefix is a way to define the network portion that is human readable. The data network must also have this network portion of the addresses defined.

To define the network and host portions of an address, the devices use a separate 32-bit pattern called a subnet mask, as shown in the figure. We express the subnet mask in the same dotted decimal format as the IPv4 address. The subnet mask is created by placing a binary 1 in each bit position that represents the network portion and placing a binary 0 in each bit position that represents the host portion.

The prefix and the subnet mask are different ways of representing the same thing - the network portion of an address.

As shown in the figure, a /24 prefix is expressed as a subnet mask as 255.255.255.0 (11111111.11111111.11111111.00000000). The remaining bits (low order) of the subnet mask are zeroes, indicating the host address within the network.

The subnet mask is configured on a host in conjunction with the IPv4 address to define the network portion of that address.

For example, let's look at the host 172.16.20.35/27:

address
172.16.20.35
10101100.00010000.00010100.00100011

subnet mask
255.255.255.224
11111111.11111111.11111111.11100000

network address
172.16.20.32
10101100.00010000.00010100.00100000

Because the high order bits of the subnet masks are contiguous 1s, there are only a limited number of subnet values within an octet. You will recall that we only need to expand an octet if the network and host division falls within that octet. Therefore, there are a limited number 8 bit patterns used in address masks.

These patterns are:

00000000 = 0
10000000 = 128
11000000 = 192
11100000 = 224
11110000 = 240
11111000 = 248
11111100 = 252
11111110 = 254
11111111 = 255

If the subnet mask for an octet is represented by 255, then all the equivalent bits in that octet of the address are network bits. Similarly, if the subnet mask for an octet is represented by 0, then all the equivalent bits in that octet of the address are host bits. In each of these cases, it is not necessary to expand this octet to binary to determine the network and host portions.


6.4.1 - The Subnet Mask - Defining the Network and Host Portions
The diagram depicts an IPv4 address and subnet mask identifying the network and host portions of the IP address. IPv4 host address 172.16.4.1 is used as an example with subnet mask 255.255.255.0 (prefix /24).

Network
The diagram identifies the network portion of the address as the first 24 bits. In an IPv4 address, bits in the network portion can be either zero or one. In an IPv4 subnet mask, the first 24 bits are all ones, indicating that these positions are the network portion of the address.

Host
The diagram identifies the host portion of the address as the last 8 bits. In an IPv4 address, bits in the host portion can be either zero or one. In an IPv4 subnet mask, the last 8 bits are zeros, indicating that these positions are the host portion of the address.


6.4.2 ANDing - What Is In Our Network?

Page 1:
Inside data network devices, digital logic is applied for their interpretation of the addresses. When an IPv4 packet is created or forwarded, the destination network address must be extracted from the destination address. This is done by a logic called AND.

The IPv4 host address is logically ANDed with its subnet mask to determine the network address to which the host is associated. When this ANDing between the address and the subnet mask is performed, the result yields the network address.

The AND Operation

ANDing is one of three basic binary operations used in digital logic. The other two are OR and NOT. While all three are used in data networks, AND is used in determining the network address. Therefore, our discussion here will be limited to logical AND. Logical AND is the comparison of two bits that yields the following results:

1 AND 1 = 1

1 AND 0 = 0

0 AND 1 = 0

0 AND 0 = 0

The result from anything ANDed with a 1 yields a result that is the original bit. That is, 0 AND 1 is 0 and 1 AND 1 is 1. Consequently, anything ANDed with a 0 yields a 0.These properties of ANDing are used with the subnet mask to "mask" the host bits of an IPv4 address. Each bit of the address is ANDed with the corresponding bit of the subnet mask.

Because all the bits of the subnet mask that represent host bits are 0s, the host portion of the resulting network address becomes all 0s. Recall that an IPv4 address with all 0s in the host portion represents the network address.

Likewise, all the bits of the subnet mask that indicate network portion are 1s. When each of these 1s is ANDed with the corresponding bit of the address, the resulting bits are identical to the original address bits.

Roll over the tabs in the figure to see the AND operation.

Reasons to Use AND

This ANDing between the host address and subnet mask is performed by devices in a data network for various reasons.

Routers use ANDing to determine an acceptable route for an incoming packet. The router checks the destination address and attempts to associate this address with a next hop. As a packet arrives at a router, the router performs ANDing on the IP destination address in the incoming packet and with the subnet mask of potential routes. This yields a network address that is compared to the route from the routing table whose subnet mask was used.

An originating host must determine if a packet should be sent directly to a host in the local network or be directed to the gateway. To make this determination, a host must first know its own network address.

A host extracts its network address by ANDing its address with its subnet mask. A logical AND is also performed by an originating host between the destination address of the packet and the subnet mask of the this host. This yields the network address of the destination. If this network address matches the network address of the local host, the packet is sent directly to the destination host. If the two network addresses do not match, the packet is sent to the gateway.

The Importance of AND

If the routers and end devices calculate these processes without our intervention, why do we need to learn how to AND? The more we understand and are able to predict about the operation of a network, the more equipped we are to design and/or administer one.

In network verification/troubleshooting, we often need to determine what IPv4 network a host is on or if two hosts are on the same IP network. We need to make this determination from the perspective of the network devices. Due to improper configuration, a host may see itself on a network that was not the intended one. This can create an operation that seems erratic unless diagnosed by examining the ANDing processes used by the host.

Also, a router may have many different routes that can satisfy the forwarding of packet to a given destination. The selection of the route used for any given packet is a complex operation. For example, the prefix forming these routes is not directly associated with the networks assigned to the host. This means that a route in the routing table may represent many networks. If there were issues with routing packets, you would need to determine how the router would make the routing decision.

Although there are subnet calculators available, it is helpful for a network administrator to know how to manually calculate subnets.

Note: No calculators of any kind are permitted during certification exams.


6.4.2 - ANDing - What Is in Our Network?
The diagram depicts applying the subnet mask to an IP address and using the ANDing process to determine the network to which the address belongs. A device with the host address 192.0.0.1 belongs to network 192.0.0.0. Host address 192.0.0.1 is converted to binary 11000000.00000000.00000000.00000001, and subnet mask 255.255.0.0 is converted to binary 11111111.11111111.00000000.000000000. Each bit position of the IP address is compared to the corresponding position of the subnet mask using the ANDing process as follows:

1 and 1: 1 in the host AND 1 in the mask puts 1 in the network address.

0 and 1: 0 in the host AND 1 in the mask puts 0 in the network address.

0 and 0: 0 in the host AND 0 in the mask puts 0 in the network address.

1 and 0: 1 in the host AND 0 in the mask puts 0 in the network address.

The resulting network number is the binary number 11000000.00000000.00000000.00000000 or decimal 192.0.0.0.


6.4.3 The ANDing Process

Page 1:
The AND operation is applied to every bit in the binary address.

Play the animation in the figure to follow the AND steps for one example.


6.4.3 - The ANDing Process
The diagram depicts an example of the ANDing process using host IP address 172.16.132.70/20 to determine the network on which the host resides.
Step 1: Convert the host IP address to binary.
Step 2: AND the most significant bit of the binary host address with the most significant bit of the binary subnet mask.
Step 3: Convert the /20 prefix to the binary subnet mask.
Step 4: AND the next significant bit of the host address with the next significant bit of the binary subnet mask.
Step 5: Continue to AND each bit of the host address with the corresponding 1 bit of the mask.
Step 6: AND each bit of the host address with the corresponding zero bit of the mask.
Step 7: Convert the binary network address to the decimal address.

For the above host IP address with a 20-bit prefix mask, the resulting network number is 172.16.128.0.


6.5 Calculating Addresses

6.5.1 Basic subnetting

Page 1:
Subnetting allows for creating multiple logical networks from a single address block. Since we use a router to connect these networks together, each interface on a router must have a unique network ID. Every node on that link is on the same network.

We create the subnets by using one or more of the host bits as network bits. This is done by extending the mask to borrow some of the bits from the host portion of the address to create additional network bits. The more host bits used, the more subnets that can be defined. For each bit borrowed, we double the number of subnetworks available. For example, if we borrow 1 bit, we can define 2 subnets. If we borrow 2 bits, we can have 4 subnets. However, with each bit we borrow, fewer host addresses are available per subnet.

RouterA in the figure has two interfaces to interconnect two networks. Given an address block of 192.168.1.0 /24, we will create two subnets. We borrow one bit from the host portion by using a subnet mask of 255.255.255.128, instead of the original 255.255.255.0 mask. The most significant bit in the last octet is used to distinguish between the two subnets. For one of the subnets, this bit is a "0" and for the other subnet this bit is a "1".

Formula for calculating subnets

Use this formula to calculate the number of subnets:

2^n where n = the number of bits borrowed

In this example, the calculation looks like this:

2^1 = 2 subnets

The number of hosts

To calculate the number of hosts per network, we use the formula of 2^n - 2 where n = the number of bits left for hosts.

Applying this formula, (2^7 - 2 = 126) shows that each of these subnets can have 126 hosts.

For each subnet, examine the last octet in binary. The values in these octets for the two networks are:

Subnet 1: 00000000 = 0

Subnet 2: 10000000 = 128

See the figure for the addressing scheme for these networks.


6.5.1 - Basic Subnetting
The diagram depicts creating two logical networks or subnets from a single address block. This is accomplished by borrowing a bit from the host portion of the IP IPv4 address. Each subnet is shown being assigned to a LAN router interface.

The example starts with network address 192.168.1.0/24, which has 24 bits in the network address and 8 bits in the host portion The subnet mask in decimal form is 255.255.255.0. Eight bits in the host portion allow 256 combinations of zeros and ones or unique IP addresses. The first address (network address 00000000) and last address (broadcast address 11111111) cannot be used as host IP addresses.

In the example, one bit is borrowed from the host portion of the address to create two subnets. This increases the network portion to 25 bits, and the host portion is now seven bits. The two subnets created each have 128 addresses (minus two). The subnet mask with two subnets in decimal form is 255.255.255.128.

Subnet 0
Network address: 192.168.1.0/25
Host range: 192.168.1.1 to 192.168.1.126
Broadcast address: 192.168.1.127

Subnet 1
Network address: 192.168.1.128/25
Host range: 192.168.1.129 to 192.168.1.254
Broadcast address: 192.168.1.255


Page 2:
Example with 3 subnets

Next, consider an internetwork that requires three subnets. See the figure.

Again we start with the same 192.168.1.0 /24 address block. Borrowing a single bit would only provide two subnets. To provide more networks, we change the subnet mask to 255.255.255.192 and borrow two bits. This will provide four subnets.

Calculate the subnet with this formula:

2^2 = 4 subnets

The number of hosts

To calculate the number of hosts, begin by examining the last octet. Notice these subnets.

Subnet 0: 0 = 00000000

Subnet 1: 64 = 01000000

Subnet 2: 128 = 10000000

Subnet 3: 192 = 11000000

Apply the host calculation formula.

2^6 - 2 = 62 hosts per subnet

See the figure for the addressing scheme for these networks.


6.5.1 - Basic Subnetting
The diagram depicts creating four logical networks or subnets from a single address block. This is accomplished by borrowing two bits from the host portion of the IPv4 address. Three of these subnets are shown being assigned to a LAN router interface.

The example starts with network address 192.168.1.0/24, which has 24 bits in the network address and 8 bits in the host portion.

In the example, two bits are borrowed from the host portion of the address to create four subnets. This increases the network portion to 26 bits, and the host portion is now six bits. The four subnets created each have 64 addresses (minus two). The subnet mask with four subnets in decimal form is 255.255.255.192.

Subnet 0
Network address: 192.168.1.0/26
Host range: 192.168.1.1 - 192.168.1.62
Broadcast address: 192.168.1.63

Subnet: 1
Network address: 192.168.1.64/26
Host range: 192.168.1.65 to 192.168.1.126
Broadcast address: 192.168.1.127

Subnet 2
Network address: 192.168.1.128/26
Host range: 192.168.1.129 to 192.168.1.190
Broadcast address: 192.168.1.191

Subnet 3
Network address: 192.168.1.192/26
Host range: 192.168.1.193 to 192.168.1.254
Broadcast address: 192.168.1.255


Page 3:
Example with 6 subnets

Consider this example with five LANs and a WAN for a total of 6 networks. See the figure.

To accommodate 6 networks, subnet 192.168.1.0 /24 into address blocks using the formula:

2^3 = 8

To get at least 6 subnets, borrow three host bits. A subnet mask of 255.255.255.224 provides the three additional network bits.

The number of hosts

To calculate the number of hosts, begin by examining the last octet. Notice these subnets.

0 = 00000000

32 = 00100000

64 = 01000000

96 = 01100000

128 = 10000000

160 = 10100000

192 = 11000000

224 = 11100000

Apply the host calculation formula:

2^5 - 2 = 30 hosts per subnet.

See the figure for the addressing scheme for these networks.


6.5.1 - Basic Subnetting
The diagram depicts creating eight logical networks or subnets from a single address block. This is accomplished by borrowing three bits from the host portion of the IPv4 address. Five of these subnets are shown being assigned to one of the LAN interfaces on two routers, and one is assigned to the WAN between the two routers.

The example starts with network address 192.168.1.0/24, which has 24 bits in the network address and eight bits in the host portion.

In the example, three bits are borrowed from the host portion of the address to create eight subnets. This increases the network portion to 27 bits, and the host portion is now five bits. The eight subnets created each have 32 addresses (minus two). The subnet mask with eight subnets in decimal form is 255.255.255.224.

Subnet 0
Network address: 192.168.1.0/27
Host range: 192.168.1.1 - 192.168.1.30
Broadcast address: 192.168.1.31

Subnet 1
Network address: 192.168.1.32/27
Host range: 192.168.1.33 to 192.168.1.62
Broadcast address: 192.168.1.63

Subnet 2
Network address: 192.168.1.64/27
Host range: 192.168.1.65 to 192.168.1.94
Broadcast address: 192.168.1.95

Subnet 3
Network address: 192.168.1.96/27
Host range: 192.168.1.97 to 192.168.1.126
Broadcast address: 192.168.1.127

Subnet 4
Network address: 192.168.1.128/27
Host range: 192.168.1.129 to 192.168.1.158
Broadcast address: 192.168.1.159

Subnet 5
Network address: 192.168.1.160/27
Host range: 192.168.1.161 to 192.168.1.190
Broadcast address: 192.168.1.191

Subnet 6
Network address: 192.168.1.192/27
Host range: 192.168.1.193 to 192.168.1.222
Broadcast address: 192.168.1.223

Subnet 7
Network address: 192.168.1.224/27
Host range: 192.168.1.225 to 192.168.1.254
Broadcast address: 192.168.1.255


6.5.2 Subnetting - Dividing Networks into Right Sizes

Page 1:
Every network within the internetwork of a corporation or organization is designed to accommodate a finite number of hosts.

Some networks, such as point-to-point WAN links, only require a maximum of two hosts. Other networks, such as a user LAN in a large building or department, may need to accommodate hundreds of hosts. Network administrators need to devise the internetwork addressing scheme to accommodate the maximum number of hosts for each network. The number of hosts in each division should allow for growth in the number of hosts.

Determine the Total Number of Hosts

First, consider the total number of hosts required by the entire corporate internetwork. We must use a block of addresses that is large enough to accommodate all devices in all the corporate networks. This includes end user devices, servers, intermediate devices, and router interfaces.

See Step 1 of the figure.

Consider the example of a corporate internetwork that needs to accommodate 800 hosts in its four locations.

Determine the Number and Size of the Networks

Next, consider the number of networks and the size of each required based on common groupings of hosts.

See Step 2 of the figure.

We subnet our network to overcome issues with location, size, and control. In designing the addressing, we consider the factors for grouping the hosts that we discussed previously:

  • Grouping based on common geographic location
  • Grouping hosts used for specific purposes
  • Grouping based on ownership

Each WAN link is a network. We create subnets for the WAN that interconnect different geographic locations. When connecting the different locations, we use a router to account for the hardware differences between the LANs and the WAN.

Although hosts in a common geographic location typically comprise a single block of addresses, we may need to subnet this block to form additional networks at each location. We need to create subnetworks at the different locations that have hosts for common user needs. We may also have other groups of users that require many network resources, or we may have many users that require their own subnetwork. Additionally, we may have subnetworks for special hosts such as servers. Each of these factors needs to be considered in the network count.

We also have to consider any special security or administrative ownership needs that require additional networks.

One useful tool in this address planning process is a network diagram. A diagram allows us to see the networks and make a more accurate count.

To accommodate 800 hosts in the company's four locations, we use binary arithmetic to allocate a /22 block (2^10-2=1022).

Allocating Addresses

Now that we have a count of the networks and the number of hosts for each network, we need to start allocating addresses from our overall block of addresses.

See Step 3 of the figure.

This process begins by allocating network addresses for locations of special networks. We start with the locations that require the most hosts and work down to the point-to-point links. This process ensures that large enough blocks of addresses are made available to accommodate the hosts and networks for these locations.

When making the divisions and assignment of available subnets, make sure that there are adequately-sized address blocks available for the larger demands. Also, plan carefully to ensure that the address blocks assigned to the subnet do not overlap.


6.5.2 - Subnetting - Dividing Networks into Right Sizes
The diagram depicts dividing networks into right sizes using subnets.

Network Topology
A large corporate network consisting of four LAN's, a Corporate HQ, Legal office, HR office, and Sales office is shown. Each LAN contains multiple hosts and a router at the edge. There are three WAN links. One WAN link connects the Corporate HQ router to each of the other three offices.

Number of hosts and subnetting requirements
There are 800 hosts total in the corporate network. The block of addresses chosen to accommodate all the hosts is 172.16.0.0/22, which provides 10 host bits and allows for 1,022 IP addresses (2 to the tenth power is 1,024 minus 2). Network address block 172.16.0.0/22 is divided into different-sized subnets to accommodate the number of users at each of the offices and the WAN links between them. The largest blocks are allocated first.

Entire Corporate Network: 172.16.0.0/22

Location: Corporate HQ
Number of users: 500
Subnet: 172.16.0.0/23
Number of host bits: 9
Number of hosts possible: 510 (512 minus 2)

Location: Sales office
Number of users: 200
Subnet: 172.16.2.0/24
Number of host bits: 8
Number of hosts possible: 254 (256 minus 2)

Location: HR office
Number of users: 50
Subnet: 172.16.3.0/26
Number of host bits: 6
Number of hosts possible: 62 (64 minus 2)

Location: Legal office
Number of users: 20
Subnet: 172.16.3.64/27
Number of host bits: 5
Number of hosts possible: 30 (32 minus 2)


Page 2:
Another helpful tool in this planning process is a spreadsheet. We can place the addresses in columns to visualize the allocation of the addresses.

See Step 1 of the figure.

In our example, we now allocate blocks of addresses to the four locations as well as the WAN links.

With the major blocks allocated, next we subnet any of the locations that require dividing. In our example, we divide the corporate HQ into two networks.

See Step 2 of the figure.

This further division of the addresses is often called subnetting the subnets. As with any subnetting, we need to carefully plan the address allocation so that we have available blocks of addresses.

The creation of new, smaller networks from a given address block is done by extending the length of the prefix; that is, adding 1s to the subnet mask. Doing this allocates more bits to the network portion of the address to provide more patterns for the new subnet. For each bit we borrow, we double the number of networks we have. For example, if we use 1 bit, we have the potential to divide that block into two smaller networks. With a single bit pattern, we can produce two unique bit patterns, 1 and 0. If we borrow 2 bits, we can provide for 4 unique patterns to represent networks 00, 01, 10, and 11. 3 bits would allow 8 blocks, and so on.

The total Number of Usable Hosts

Recall from the previous section that as we divide the address range into subnets, we lose two host addresses for each new network. These are the network address and broadcast address.

The formula for calculating the number of hosts in a network is:

Usable hosts = 2^n - 2

Where n is the number of bits remaining to be used for hosts.

Links:

Subnet calculator: http://vlsm-calc.net


6.5.2 - Subnetting - Dividing Networks into Right Sizes
The diagram depicts the subnets of the corporate network in a graphic form with address ranges.

Entire Corporate Network: 172.16.0.0/22

Step 1: Address ranges are allocated as follows:

Location: Corporate HQ
Subnet: 172.16.0.0/23
Address range: 172.16.0.1 through 172.16.1.255

Location: Sales office
Subnet: 172.16.2.0/24
Address range: 172.16.2.1 through 172.16.2.255

Location: HR office
Subnet: 172.16.3.0/26
Address range: 172.16.3.1 through 172.16.3.63

Location: Legal office
Subnet: 172.16.3.64/27
Address range: 172.16.3.65 through 172.16.3.95

Step 2: Corporate HQ subnet is subdivided:
Location: Corporate HQ
Subnet: 172.16.0.0/23
Address range: 172.16.0.1 through 172.16.1.255

The initial 510 host (512 minus 2) subnet is divided into two more subnets of 254 addresses each (256 minus 2):

Location: HQ1
Subnet: 172.16.0.0/24
Address range: 172.16.0.1 through 172.16.0.255

Location: HQ2
Subnet: 172.16.1.0/24
Address range: 172.16.1.1 through 172.16.1.255


6.5.3 Subnetting - Subnetting a Subnet

Page 1:
Subnetting a subnet, or using Variable Length Subnet Mask (VLSM) was designed to maximize addressing efficiency. When identifying the total number of hosts using traditional subnetting, we allocate the same number of addresses for each subnet. If all the subnets have the same requirements for the number hosts, these fixed size address blocks would be efficient. However, most often that is not the case.

For example, the topology in Figure 1 shows a subnet requirement of seven subnets, one for each of the four LANs and one for each of the three WANs. With the given address of 192.168.20.0, we need to borrow 3 bits from the host bits in the last octet to meet our subnet requirement of seven subnets.

These bits are borrowed bits by changing the corresponding subnet mask bits to "1s" to indicate that these bits are now being used as network bits. The last octet of the mask is then represented in binary by 11100000, which is 224. The new mask of 255.255.255.224 is represented with the /27 notation to represent a total of 27 bits for the mask.

In binary this subnet mask is represented as: 11111111.11111111.11111111.11100000

After borrowing three of the host bits to use as network bits, this leaves five host bits. These five bits will allow up to 30 hosts per subnet.

Although we have accomplished the task of dividing the network into an adequate number of networks, it was done with a significant waste of unused addresses. For example, only two addresses are needed in each subnet for the WAN links. There are 28 unused addresses in each of the three WAN subnets that have been locked into these address blocks. Further, this limits future growth by reducing the total number of subnets available. This inefficient use of addresses is characteristic of classful addressing.

Applying a standard subnetting scheme to scenario is not very efficient and is wasteful. In fact, this example is a good model for showing how subnetting a subnet can be used to maximize address utilization.

Getting More Subnet for Less Hosts

Recall in previous examples we began with the original subnets and gained additional, smaller, subnets to use for the WAN links. By creating smaller subnets, each subnet is able to support 2 hosts, leaving the original subnets free to be allotted to other devices and preventing many addresses from being wasted.

To create these smaller subnets for the WAN links, begin with 192.168.20.192. We can divide this subnet into many smaller subnets. To provide address blocks for the WANS with two addresses each, we will borrow three additional host bits to be used as network bits.

Address: 192.168.20.192 In Binary: 11000000.10101000.00010100.11000000
Mask: 255.255.255.252 30 Bits in binary: 11111111.11111111.11111111.11111100


The topology in the figure 2 shows an addressing plan that breaks up the 192.168.20.192 /27 subnets into smaller subnets to provide addresses for the WANs. Doing this reduces the number addresses per subnet to a size appropriate for the WANs. With this addressing, we have subnets 4, 5, and 7 available for future networks, as well as several other subnets available for WANs.


6.5.3 - Subnetting - Subnetting a Subnet
The diagram depicts an example of subnetting the 192.168.20.0/24 network block into eight equal-sized subnets by borrowing 3 bits and using a /27 prefix for LAN's. Next, one of the /27 subnets is subnetted by borrowing another 3 bits and using a /30 mask to create eight small subnets for use with the WAN links.

Network Topology
Four routers are shown, Building A, Building B, Building C, and Building C. Three WAN links connect these four routers. Each router has a LAN connected to it for a total of four LAN's.

Step 1:

Network number 192.168.20.0/24 is subnetted into eight subnets.

Subnet 0
Subnet address: 192.168.20.0/27
Subnet 1
Subnet address: 192.168.20.32/27
Subnet 2
Subnet address: 192.168.20.64/27
Subnet 3
Subnet address: 192.168.20.96/27
Subnet 4
Subnet address: 192.168.20.128/27
Subnet 5
Subnet address: 192.168.20.160/27
Subnet 6
Subnet address: 192.168.20.192/27
Subnet 7
Subnet address: 192.168.20.224/27

Step 2:

The sixth subnet with address 192.168.20.192/27 from the previous step is subnetted into eight more subnets with only two valid host addresses in each one (4 minus 2).

Subnet 0
Subnet address: 192.168.20.192/30
Subnet 1
Subnet address: 192.168.20.196/30
Subnet 2
Subnet address: 192.168.20.200/30
Subnet 3
Subnet address: 192.168.20.204/30
Subnet 4
Subnet address: 192.168.20.208/30
Subnet 5
Subnet address: 192.168.20.212/30
Subnet 6
Subnet address: 192.168.20.216/30
Subnet 7
Subnet address: 192.168.20.220/30

Subnet addresses are assigned to the network LAN's and WAN links as follows:

Router Building A LAN subnet address: 192.168.20.0/27
Router Building B LAN subnet address: 192.168.20.32/27
Router Building C LAN subnet address: 192.168.20.64/27
Router Building D LAN subnet address: 192.168.20.96/27
Building A to Building B WAN link subnet address: 192.168.20.192/30
Building B to Building C WAN link subnet address: 192.168.20.196/30
Building C to Building D WAN link subnet address: 192.168.20.200/30


Page 2:
In Figure 1, we will look at addressing from another view. We will consider subnetting based on the number of hosts, including router interfaces and WAN connections. This scenario has the following requirements:

  • AtlantaHQ 58 host addresses
  • PerthHQ 26 host addresses
  • SydneyHQ 10 host addresses
  • CorpusHQ 10 host addresses
  • WAN links 2 host addresses (each)

It is clear from these requirements that using a standard subnetting scheme would, indeed, be wasteful. In this internetwork, standard subnetting would lock each subnet into blocks of 62 hosts, which would mean a significant waste of potential addresses. This waste is especially evident in figure 2 where we see that the PerthHQ LAN supports 26 users and the SydneyHQ and CorpusHQ LANs routers support only 10 users each.

Therefore, with the given address block of 192.168.15.0 /24, we will begin designing an addressing scheme to meet the requirements and save potential addresses.

Getting More

When creating an appropriate addressing scheme, always begin with the largest requirement. In this case, the AtlantaHQ, with 58 users, has the largest requirement. Starting with 192.168.15.0, we will need 6 host bits to accommodate the requirement of 58 hosts, this allows 2 additional bits for the network portion. The prefix for this network would be /26 and a subnet mask of 255.255.255.192.

Let's begin by subnetting the original address block of 192.168.15.0 /24. Using the Usable hosts = 2^n - 2 formula, we calculate that 6 host bits allow 62 hosts in the subnet. The 62 hosts would meet the required 58 hosts of the AtlantaHQ company router.
Address: 192.168.15.0
In Binary: 11000000.10101000.00001111.00000000
Mask: 255.255.255.192
26 Bits in binary: 11111111.11111111.11111111.11000000


The next page shows the process of identifying the next sequence of steps.


6.5.3 - Subnetting - Subnetting a Subnet
The diagram depicts an example of the inefficiency of standard subnetting. A network block is divided into equal-sized subnets with 62 (64 minus 2) hosts allowed on each using a /26 prefix.

Network Topology
Four routers are shown, AtlantaHQ, SydneyHQ, CorpusHQ, and PerthHQ. Three WAN links connect these four routers. Each router has a LAN connected to it for a total of four LAN's.

For the AtlantaHQ LAN, which requires 58 IP addresses, most of the addresses are used. Subtracting 58 from 62 results in only four unused addresses. However, the SydneyHQ LAN, which requires only 10 IP addresses, has many unused addresses. Subtracting 10 from 62 results in 52 unused addresses. The number of unused addresses for WAN links is even greater. A WAN link requires only two IP addresses, resulting in 60 unused addresses.

The following lists the various networks, addressing requirements, and the number of unused addresses.

AtlantaHQ LAN:
Actual requirements: 58 host addresses
Unused addresses: 4 addresses

PerthHQ LAN:
Actual requirements: 26 host addresses
Unused addresses: 36 addresses

SydneyHQ LAN:
Actual requirements: 10 host addresses
Unused addresses: 52 addresses

CorpusHQ LAN:
Actual requirements: 10 host addresses
Unused addresses: 52 addresses

Network WAN links:
Actual requirements: 2 host addresses
Unused addresses: 60 addresses


Page 3:
The steps for implementing this subnetting scheme are described here.

Assigning the AtlantaHQ LAN

See Steps 1 and 2 in the figure.

The first step shows a network-planning chart. The second step in the figure shows the entry for the AtlantaHQ. This entry is the results of calculating a subnet from the original 192.168.15.0 /24 block to accommodate the largest LAN, the AtlantaHQ LAN with 58 hosts. Doing this required borrowing an additional 2 host bits, to use a /26 bit mask.

By comparison, the following scheme shows how 192.168.15.0 would be subnetted using fixed block addressing to provide large enough address blocks:

Subnet 0: 192.168.15.0 /26 host address range 1 to 62

Subnet 1: 192.168.15.64 /26 host address range 65 to 126

Subnet 2: 192.168.15.128 /26 host address range 129 to 190

Subnet 3: 192.168.15.192 /26 host address range 193 to 254

The fixed blocks would allow only four subnets and therefore not allow enough address blocks for the majority of the subnets in this internetwork. Instead of continuing to use the next available subnet, we need to ensure we make the size of each subnet consistent with the host requirements. Using an addressing scheme directly correlated to the host requirements requires the use of a different method of subnetting.

Assigning the PerthHQ LAN

See Step 3 in the figure.

In the third step, we look at the requirements for the next largest subnet. This is the PerthHQ LAN, requiring 26 host addresses including the router interface. We should begin with next available address of 192.168.15.64 to create an address block for this subnet. By borrowing one more bit, we are able to meet the needs of PerthHQ while limiting the wasted addresses. The borrowed bit gives us a /27 mask with the following address range:

192.168.15.64 /27 host address range 65 to 94

This block of address provides 30 addresses, which meets the requirement of 28 hosts and allows room for growth for this subnet.

Assigning the SydneyHQ LAN and CorpusHQ LAN

See Steps 4 and 5 in the figure.

The fourth and fifth steps provide the addressing for the next largest subnets: SydneyHQ and CorpusHQ LANs. In these two steps, each LAN has the same need for 10 host addresses. This subnetting requires us to borrow another bit, to extend the mask to /28. Starting with address 192.168.15.96, we get the following address blocks:

Subnet 0: 192.168.15.96 /28 host address range 97 to 110

Subnet 1: 192.168.15.112 /28 host address range 113 to 126

These blocks provide 14 addresses for the hosts and router interfaces on each LAN.

Assigning the WANs

See Steps 6, 7, and 8 in the figure.

The last three steps show subnetting for the WAN links. With these point-to-point WAN links only two addresses are required. To meet the requirement, we borrow 2 more bits to use a /30 mask. Using the next available addresses, we get the following address blocks:

Subnet 0: 192.168.15.128 /30 host address range 129 to 130

Subnet 1: 192.168.15.132 /30 host address range 133 to 134

Subnet 2: 192.168.15.136 /30 host address range 137 to 138


6.5.3 - Subnetting - Subnetting a Subnet
The diagram depicts the efficient use of variable subnetting, or subnetting a subnet, to create appropriately sized subnets and reduce the number of wasted IP addresses.

The following lists the network name, required addresses, subnet address, address range, broadcast address, and network /prefix.

AtlantaHQ LAN
Required addresses: 58
Subnet address: 192.168.15.0
Address range: .1 through .62
Broadcast address: .63
Network /prefix: 192.168.15.0/26

PerthHQ LAN
Required addresses: 26
Subnet address: 192.168.15.64
Address range: .65 through .94
Broadcast address: .95
Network /prefix: 192.168.15.64/27

SydneyHQ LAN
Required addresses: 10
Subnet address: 192.168.15.96
Address range: .97 through .110
Broadcast address: .111
Network /prefix: 192.168.15.96/28

CorpusHQ LAN
Required addresses: 10
Subnet address: 192.168.15.112
Address range: .113 through .126
Broadcast address: .127
Network /prefix: 192.168.15.112/28

WAN1
Required addresses: 2
Subnet address: 192.168.15.128
Address range: .129 through .130
Broadcast address: .131
Network /prefix: 192.168.15.128/30

WAN2
Required addresses: 2
Subnet address: 192.168.15.132
Address range: .133 through .134
Broadcast address: .135
Network /prefix: 192.168.15.132/30

WAN3
Required addresses: 2
Subnet address: 192.168.15.136
Address range: .137 through .138
Broadcast address: 139
Network /prefix: 192.168.15.136/30


Page 4:
The results shown in our addressing scheme using VLSM displays a wide array of correctly-allocated address blocks. As best practice, we began by documenting our requirements from the largest to the smallest. By starting with the largest requirement, we were able to determine that a fixed block addressing scheme would not allow for efficient use of the IPv4 addresses and, as shown in this example, would not provide enough addresses.

From the allocated address block, we borrowed bits to create the address ranges that would fit our topology. Figure 1 shows the assigned ranges. Figure 2 shows the topology with the addressing information.

Using VLSM to allocate the addresses made it possible to apply the subnetting guidelines for grouping hosts based on:

  • Grouping based on common geographic location
  • Grouping hosts used for specific purposes
  • Grouping based on ownership

In our example, we based the grouping on the number of hosts in a common geographic location.


6.5.3 - Subnetting - Subnetting a Subnet
The diagram depicts a summary of the network requirements previously described and how it is more efficient to use a variable length subnet mask (VLSM). The same network topology is also displayed, showing how each network and the number of unused addresses are greatly reduced.

The following lists the various networks, addressing requirements, and the number of unused addresses now that a VLSM is employed.

AtlantaHQ LAN address: 192.168.15.0/26
Actual requirements: 58 host addresses
Hosts allowed with a /26 subnet: 62
Unused host addresses: 4

PerthHQ LAN address: 192.168.15.64/27
Actual requirements: 26 host addresses
Hosts allowed with a /27 subnet: 30
Unused host addresses: 4

SydneyHQ LAN address: 192.168.15.96/28
Actual requirements: 10 host addresses
Hosts allowed with a /28 subnet: 14
Unused host addresses: 4

CorpusHQ LAN address: 192.168.15.112/28
Actual requirements: 10 host addresses
Hosts allowed with a /28 subnet: 14
Unused host addresses: 4

Network WAN link address: various 192.168.15.xxx/30
Actual requirements: 2 host addresses
Hosts allowed with a /30 subnet: 2
Unused host addresses: 0


Page 5:
VLSM Chart

Address planning can also be accomplished using a variety of tools. One method is to use a VLSM chart to identify which blocks of addresses are available for use and which ones are already assigned. This method helps to prevent assigning addresses that have already been allocated. Using the network from our example, we can walk through the address planning using the VLSM chart, to see its use.

The first graphic shows the top portion of the chart. A complete chart for your use is available using the link below.

VLSM_Subnetting_Chart.pdf

This chart can be used to do address planning for networks with prefixes in the /25 - /30 range. These are the most commonly used network ranges for subnetting.

As before, we start with the subnet that has the largest number of hosts. In this case, it is AtlantaHQ with 58 hosts.

Choosing a block for the AtlantaHQ LAN

Following the chart header from left to right, we find the header that indicates a block size of sufficient size for the 58 hosts. This is the /26 column. In this column, we see that there are four blocks of this size:

.0 /26 host address range 1 to 62

.64 /26 host address range 65 to 126

.128 /26 host address range 129 to 190

.192 /26 host address range 193 to 254

Because no addresses have been allocated, we can choose any one of these blocks. Although there might be reasons for using a different block, we commonly use the first available block, the .0 /26. This allocation is shown in Figure 2.

Once we assign the address block, these addresses are considered used. Be sure to mark this block as well as any larger blocks that contain these addresses. By marking these, we can see which address cannot be used and which are still available. Looking at Figure 3, when we allocate the .0 /26 block to the AtlantaHQ, we mark all the blocks that contain these addresses.

Choosing a block for the PerthHQ LAN

Next, we need an address block for the PerthHQ LAN of 26 hosts. Moving across the chart header, we find the column that has the subnets of sufficient size for this LAN. Then we move down the chart to the first available block. In Figure 3, the section of the chart available for PerthHQ is highlighted. The borrowed bit makes the block of addresses available for this LAN. Although we could have chosen any of the available blocks, typically we proceed to the first available block that satisfies the need.

The address range for this block is:
.64 /27 host address range 65 to 94

Choosing blocks for the SydneyHQ LAN and the CorpusHQ LAN

As shown in Figure 4, we continue to mark the address blocks to prevent overlapping of address assignment. To meet the needs of the SydneyHQ LAN and CorpusHQ LAN, we again locate the next available blocks. This time we move to the /28 column and move down to the .96 and .112 blocks. Notice that the section of the chart available for SydneyHQ and CorpusHQ is highlighted.

These blocks are:

.96 /28 host address range 97 to 110

.112 /28 host address range 113 to 126

Choosing blocks for the WANs

The last addressing requirement is for the WAN connections between the networks. Looking at Figure 5, we move to the far right column for /30 prefix. We then move down and highlight three available blocks. These blocks will provide the 2 addresses per WAN.

These three blocks are:

.128 /30 host address range 129 to 130

.132 /30 host address range 133 to 134

.136 /30 host address range 137 to 138

Looking at Figure 6, the addresses assigned to the WAN are marked to indicate that the blocks containing these can no longer be assigned. Notice with the assignment of these WAN ranges that we have marked several larger blocks that cannot be assigned. These are:

.128 /25

.128 /26

.128 /27

.128 /28

.128 /29

.136 /29

Because these addresses are part of these larger blocks, the assignment of these blocks would overlap the use of these addresses.

As we have seen, the usage of VLSM enables us to maximize addressing while minimizing waste. The chart method shown is just one additional tool that network administrators and network technicians can use to create an addressing scheme that is less wasteful than the fixed size block approach.


6.5.3 - Subnetting - Subnetting a Subnet
The diagram depicts the network address blocks assigned to the previously described networks in a graphical form using a VLSM subnetting chart.


6.5.4 Determining the Network Address

Page 1:
The activity in the figure provides practice in determining the network addresses. You will be presented with random masks and host addresses. For each pair of masks and host addresses, you will be required to enter the correct network address. You will then be shown if your answer is correct.


6.5.4 - Determining the Network Address
The diagram depicts an activity in which you must enter the network address in binary and decimal in the blanks provided when given a host address and subnet mask in binary and decimal.

Note: You may wish to contact your instructor for assistance with this activity.

Example 1.
Host IP Address: 10.199.96.161
Subnet mask: 255.255.255.248
Host address in binary: 00001010.11000111.01100000.10100001
Subnet mask in binary: 11111111.11111111.11111111.11111000
Network address in binary: BLANK
Network address in decimal: BLANK

Example 2.
Host IP Address: 10.97.88.152
Subnet mask: 255.255.255.128
Host address in binary: 00001010.01100001.01011000.10011000
Subnet mask in binary: 11111111.11111111.11111111.10000000
Network address in binary: BLANK
Network address in decimal: BLANK

Example 3.
Host IP Address: 10.241.176.35
Subnet mask: 255.255.0.0
Host address in binary: 00001010.11110001.10110000.00100011
Subnet mask in binary: 11111111.11111111.00000000.00000000
Network address in binary: BLANK
Network address in decimal: BLANK


6.5.5 Calculating the Number of Hosts

Page 1:
The activity in the figure provides practice in determining the maximum number of hosts for a network. You will be presented with random masks and host addresses. For each pair of masks and host addresses, you will be required to enter the maximum number of hosts for the network described. You will then be shown if your answer is correct.


6.5.5 - Calculating the Number of Hosts
The diagram depicts an activity in which you enter the number of hosts for a specific network address and subnet mask given in binary and decimal.

Note: You might want to contact your instructor for assistance with this activity.

Example 1.
Network Address: 10.0.0.0
Subnet mask: 255.255.255.252
Network address in binary: 00001010.00000000.00000000.00000000
Subnet mask in binary: 11111111.11111111.11111111.11111100
Number of hosts:

Example 2.
Network Address: 10.0.0.0
Subnet mask: 255.255.224.0
Network address in binary: 00001010.00000000.00000000.00000000
Subnet mask in binary: 11111111.11111111.11100000.00000000
Number of hosts:

Example 3.
Network Address: 10.0.0.0
Subnet mask: 255.255.255.192
Network address in binary: 00001010.00000000.00000000.00000000
Subnet mask in binary: 11111111.11111111.11111111.11000000
Number of hosts:


6.5.6 Determining Valid Addresses for Hosts

Page 1:
The activity in the figure provides practice in determining the hosts, network, and broadcast addresses for a network. You will be presented with random masks and host addresses. For each pair of masks and host addresses, you will be required to enter the hosts, network, and broadcast addresses. You will then be shown if your answer is correct.


6.5.6 - Determining Valid Addresses for Hosts
The diagram depicts an activity in which you enter the range of hosts, the broadcast address, and the next network address for a specific network address and subnet mask.

Note: You might want to contact your instructor for assistance with this activity.

Example 1.
Network Address: 10.202.144.0
Subnet mask: 255.255.248.0
Network address in binary: 00001010.11001010.10010000.00000000
Subnet mask in binary: 11111111.11111111.11111000.00000000
First usable host address in decimal:
Last usable host address in decimal:
Broadcast address in decimal:
Next network address in decimal:

Example 2.
Network Address: 10.188.224.0
Subnet mask: 255.255.240.0
Network address in binary: 00001010.10111100.11100000.00000000
Subnet mask in binary: 11111111.11111111.11110000.00000000
First usable host address in decimal:
Last usable host address in decimal:
Broadcast address in decimal:
Next network address in decimal:

Example 3.
Network Address: 10.131.192.0
Subnet mask: 255.255.224.0
Network address in binary: 00001010.10000011.11000000.00000000
Subnet mask in binary: 11111111.11111111.11100000.00000000
First usable host address in decimal:
Last usable host address in decimal:
Broadcast address in decimal:
Next network address in decimal:


6.5.7 Assigning Addresses

Page 1:
In this activity, you will be given a pool of addresses and masks to assign a host with an address, a subnet mask, and a gateway to allow it to communicate in a network.

Click the Packet Tracer icon to launch the Packet Tracer activity.


6.5.7 - Assigning Addresses
Link to Packet Tracer Exploration: Assigning Addresses

In this activity, you are given a pool of addresses and masks to assign a host with an address, a subnet mask, and a gateway to allow it to communicate in a network.


6.5.8 Addressing in a Tiered Internetwork

Page 1:
In this activity, you will be given a topology and a list of possible IP addresses. You will assign the interfaces of a router with the appropriate IP address and subnet mask that would satisfy the host requirements of each network while leaving the minimum number of unused IP addresses possible.

Click the Packet Tracer icon to launch the Packet Tracer activity.


6.5.8 - Addressing in a Tiered Internetwork
Link to Packet Tracer Exploration: Addressing in a Tiered Internetwork

In this activity, you are given a topology and a list of possible IP addresses. You assign the interfaces of a router with the appropriate IP address and subnet mask to satisfy the host requirements of each network while having the least number of unused IP addresses possible.


6.6 Testing the Network Layer

6.6.1 Ping 127.0.0.1 - Testing the Local Stack

Page 1:
Ping is a utility for testing IP connectivity between hosts. Ping sends out requests for responses from a specified host address. Ping uses a Layer 3 protocol that is a part on the TCP/IP suite called Internet Control Message Protocol (ICMP). Ping uses an ICMP Echo Request datagram.

If the host at the specified address receives the Echo request, it responds with an ICMP Echo Reply datagram. For each packet sent, ping measures the time required for the reply.

As each response is received, ping provides a display of the time between the ping being sent and the response received. This is a measure of the network performance. Ping has a timeout value for the response. If a response is not received within that timeout, ping gives up and provides a message indicating that a response was not received.

After all the requests are sent, the ping utility provides an output with the summary of the responses. This output includes the success rate and average round-trip time to the destination.

Pinging the Local Loopback

There are some special testing and verification cases for which we can use ping. One case is for testing the internal configuration of IP on the local host. To perform this test, we ping the special reserve address of local loopback (127.0.0.1), as shown in the figure.

A response from 127.0.0.1 indicates that IP is properly installed on the host. This response comes from the Network layer. This response is not, however, an indication that the addresses, masks, or gateways are properly configured. Nor does it indicate anything about the status of the lower layer of the network stack. This simply tests IP down through the Network layer of the IP protocol. If we get an error message, it is an indication that TCP/IP is not operational on the host.


6.6.1 - Ping 127.0.0.1 - Testing the Local Stack
The diagram depicts testing a PC's local TCP/IP stack by pinging loopback address 127.0.0.1. The Windows Local Area Connection Properties screen is shown with Internet Protocol (TCP/IP) highlighted.

Pinging the local host confirms that TCP/IP is installed and working on the host. Pinging 127.0.0.1 causes a device to ping itself.


6.6.2 Ping Gateway - Testing Connectivity to the Local LAN

Page 1:
You can also use ping to test the host ability to communicate on the local network. This is generally done by pinging the IP address of the gateway of the host, as shown in the figure. A ping to the gateway indicates that the host and the router's interface serving as that gateway are both operational on the local network.

For this test, the gateway address is most often used, because the router is normally always operational. If the gateway address does not respond, you can try the IP address of another host that you are confident is operational in the local network.

If either the gateway or another host responds, then the local hosts can successfully communicate over the local network. If the gateway does not respond but another host does, this could indicate a problem with the router's interface serving as the gateway.

One possibility is that we have the wrong address for the gateway. Another possibility is that the router interface may be fully operational but have security applied to it that prevents it from processing or responding to ping requests. It is also possible that other hosts may have the same security restriction applied.


6.6.2 - Ping Gateway - Testing Connectivity to the Local LAN
The diagram depicts testing a host PC's connectivity to the local network by pinging the gateway router interface IP address. The Windows Internet Protocol (TCP/IP) Properties screen is shown with the PC's local IP address and default gateway IP address highlighted. The host PC sends an echo request to the gateway. The gateway responds by sending an echo reply to the host PC.

Pinging the default gateway confirms that the PC can reach the router that provides access to other hosts outside of the local network.


6.6.3 Ping Remote Host - Testing Connectivity to Remote LAN

Page 1:
You can also use ping to test the ability of the local IP host to communicate across an internetwork. The local host can ping an operational host of a remote network, as shown in the figure.

If this ping is successful, you will have verified the operation of a large piece of the internetwork. It means that we have verified our host's communication on the local network, the operation of the router serving as our gateway, and all other routers that might be in the path between our network and the network of the remote host.

Additionally, you have verified the same functionality of the remote host. If, for any reason, the remote host could not use its local network to communicate outside its network, then it would not have responded.

Remember, many network administrators limit or prohibit the entry of ICMP datagrams into the corporate network. Therefore, the lack of a ping response could be due to security restrictions and not because of non-operational elements of the networks.


6.6.3 - Ping Remote Host - Testing Connectivity to Remote LAN
The animation depicts testing a host PC's connectivity to a remote host by pinging the IP address of the remote host.

As the animation progresses, PC1 with IP address 10.0.0.1 sends an echo request to PC2 IP address 10.0.1.1 on the remote network. The packet travels from PC1 through the local LAN switch and then to the router LAN interface F0. The router looks up the remote network 10.0.1.0 and forwards the packet out its F1 interface to the attached switch. The packet then reaches PC2. PC2 sends an echo reply back to PC1 using the reverse path.


Page 2:
In this activity, you will examine the behavior of ping in several common network situations.

Click the Packet Tracer icon to launch the Packet Tracer activity.


6.6.3 - Ping Remote Host - Testing Connectivity to Remote LAN
Link to Packet Tracer Exploration: Ping

In this activity, you examine the behavior of ping in several common network situations.


6.6.4 Traceroute (tracert) - Testing the Path

Page 1:
Ping is used to indicate the connectivity between two hosts. Traceroute (tracert) is a utility that allows us to observe the path between these hosts. The trace generates a list of hops that were successfully reached along the path.

This list can provide us with important verification and troubleshooting information. If the data reaches the destination, then the trace lists the interface on every router in the path.

If the data fails at some hop along the way, we have the address of the last router that responded to the trace. This is an indication of where the problem or security restrictions are.

Round Trip Time (RTT)

Using traceroute provides round trip time (RTT) for each hop along the path and indicates if a hop fails to respond. The round trip time (RTT) is the time a packet takes to reach the remote host and for the response from the host to return. An asterisk (*) is used to indicate a lost packet.

This information can be used to locate a problematic router in the path. If we get high response times or data losses from a particular hop, this is an indication that the resources of the router or its connections may be stressed.

Time to Live (TTL)

Traceroute makes use of a function of the Time to Live (TTL) field in the Layer 3 header and ICMP Time Exceeded Message. The TTL field is used to limit the number of hops that a packet can cross. When a packet enters a router, the TTL field is decremented by 1. When the TTL reaches zero, a router will not forward the packet and the packet is dropped.

In addition to dropping the packet, the router normally sends an ICMP Time Exceeded message addressed to the originating host. This ICMP message will contain the IP address of the router that responded.

Play the animation in the figure to see how Traceroute takes advantage of TTL.

The first sequence of messages sent from traceroute will have a TTL field of one. This causes the TTL to time out the packet at the first router. This router then responds with an ICMP Message. Traceroute now has the address of the first hop.

Traceroute then progressively increments the TTL field (2, 3, 4...) for each sequence of messages. This provides the trace with the address of each hop as the packets timeout further down the path. The TTL field continues to be increased until the destination is reached or it is incremented to a predefined maximum.

Once the final destination is reached, the host responds with either an ICMP Port Unreachable message or an ICMP Echo Reply message instead of the ICMP Time Exceeded message.


6.6.4 - Trace Route (trace rt) - Testing the Path
The animation depicts testing the network path and connectivity between two hosts by tracing the route from the source host IP address to the destination host IP address.

There are three routers between PC1 and PC2. As the animation progresses, PC1 sends successive packets while increasing the Time To Live (TTL) by one each time so that the packet times out on the next router in the path. The final packet reaches the remote PC2 and is returned to PC1. During this process, PC1 records the routers that the packets pass through along the path to PC2.


Page 2:
In this activity, you will first investigate how traceroute (tracert) is actually built out of a series of ICMP echo requests. Then you will experiment with a routing loop, where a packet would circulate forever if not for its time to live field.

Click the Packet Tracer icon to launch the Packet Tracer activity.


6.6.4 - Trace Route (trace rt) - Testing the Path
Link to Packet Tracer Exploration: Trace and Time To Live

In this activity, you first investigate how trace route (trace rt) is built out of a series of ICMP echo requests. Then you experiment with a routing loop, where a packet would circulate forever if it did not have a time to live field.


6.6.5 ICMPv4 - The Protocol Supporting Testing and Messaging

Page 1:
Although IPv4 is not a reliable protocol, it does provide for messages to be sent in the event of certain errors. These messages are sent using services of the Internet Control Messaging Protocol (ICMPv4). The purpose of these messages is to provide feedback about issues related to the processing of IP packets under certain conditions, not to make IP reliable. ICMP messages are not required and are often not allowed for security reasons.

ICMP is the messaging protocol for the TCP/IP suite. ICMP provides control and error messages and is used by the ping and traceroute utilities. Although ICMP uses the basic support of IP as if it were a higher-level protocol ICMP, it is actually a separate Layer 3 of the TCP/IP suite.

The types of ICMP messages - and the reasons why they are sent - are extensive. We will discuss some of the more common messages.

ICMP messages that may be sent include:

  • Host confirmation
  • Unreachable Destination or Service
  • Time exceeded
  • Route redirection
  • Source quench

Host Confirmation

An ICMP Echo Message can be used to determine if a host is operational. The local host sends an ICMP Echo Request to a host. The host receiving the echo message replies with the ICMP Echo Reply, as shown in the figure. This use of the ICMP Echo messages is the basis of the ping utility.

Unreachable Destination or Service

The ICMP Destination Unreachable can used to notify a host that the destination or service is unreachable. When a host or gateway receives a packet that it cannot deliver, it may send an ICMP Destination Unreachable packet to the host originating the packet. The Destination Unreachable packet will contain codes that indicate why the packet could not be delivered.

Among the Destination Unreachable codes are:

0 = net unreachable

1 = host unreachable

2 = protocol unreachable

3 = port unreachable

Codes for net unreachable and host unreachable are responses from a router when it cannot forward a packet. If a router receives a packet for which it does not have a route, it may respond with an ICMP Destination Unreachable with a code = 0, indicating net unreachable. If a router receives a packet for which it has an attached route but is unable to deliver the packet to the host on the attached network, the router may respond with an ICMP Destination Unreachable with a code = 1, indicating that the network is known but the host is unreachable.

The codes 2 and 3 (protocol unreachable and port unreachable) are used by an end host to indicate that the TCP segment or UDP datagram contained in a packet could not be delivered to the upper layer service.

When the end host receives a packet with a Layer 4 PDU that is to be delivered to an unavailable service, the host may respond to the source host with an ICMP Destination Unreachable with a code = 2 or code = 3, indicating that the service is not available. The service may not be available because no daemon is running providing the service or because security on the host is not allowing access to the service.

Time Exceeded

An ICMP Time Exceeded message is used by a router to indicate that a packet cannot be forwarded because the TTL field of the packet has expired. If a router receives a packet and decrements the TTL field in the packet to zero, it discards the packet. The router may also send an ICMP Time Exceeded message to the source host to inform the host of the reason the packet was dropped.

Route Redirection

A router may use the ICMP Redirect Message to notify the hosts on a network that a better route is available for a particular destination. This message may only be used when the source host is on the same physical network as both gateways. If a router receives a packet for which it has a route and for which the next hop is attached to the same interface as the packet arrived, the router may send an ICMP Redirect Message to the source host. This message will inform the source host of the next hop contained in a route in the routing table.

Source Quench

The ICMP Source Quench message can be used to tell the source to temporarily stop sending packets. If a router does not have enough buffer space to receive incoming packets, a router will discard the packets. If the router has to do so, it may also send an ICMP Source Quench message to source hosts for every message that it discards.

A destination host may also send a source quench message if datagrams arrive too fast to be processed.

When a host receives an ICMP Source Quench message, it reports it to the Transport layer. The source host can then use the TCP flow control mechanisms to adjust the transmission.

Links:

RFC 792 http://www.ietf.org/rfc/rfc0792.txt?number=792

RFC 1122 http://www.ietf.org/rfc/rfc1122.txt?number=1122

RFC 2003 http://www.ietf.org/rfc/rfc2003.txt?number=2003


6.6.5 - ICMPv4 - The Protocol Supporting Testing and Messaging
The animation depicts a host PC pinging to a remote host and using the router's routing table to look up the destination network.

As the animation progresses, PC1 with IP address 10.0.0.1 sends a packet to PC2 IP address 10.0.1.1 on the remote network. The packet travels from PC1 through the local LAN switch and then to the router LAN interface F1. The router looks up the remote network 10.0.1.0 and forwards the packet out its F0 interface to the switch attached to that interface. The packet then reaches PC2. PC2 sends a reply packet back to PC1 using the reverse path. If the target PC is not available, the router can send an ICMP message back to the source host.


6.7 Labs and Activities

6.7.1 Lab - Ping and Traceroute

Page 1:
This lab demonstrates the ping and tracert commands from a host. You will observe the steps of the operation of these commands in a network.

Click the Lab icon for more details.


6.7.1 - Lab - Ping and Trace route
Link to Hands-on Lab: Ping and Trace route

This lab demonstrates the ping and trace rt commands from a host. You observe the steps of the operation of these commands in a network.


Page 2:
This Packet Tracer activity demonstrates the ping and tracert commands from a host. You will observe the steps of the operation of these commands in a network.

Click the Packet Tracer icon to launch the Packet Tracer activity.


6.7.1 - Lab - Ping and Trace route
Link to Packet Tracer Exploration: Ping and Trace route

This Packet Tracer demonstrates the ping and trace rt commands from a host. You observe the steps of the operation of these commands in a network.


6.7.2 Lab - Examining ICMP Packet

Page 1:
In this lab, you will use Wireshark to capture ICMP packets to observe the different ICMP codes.

Click the Lab icon for more details.


6.7.2 - Lab - Examining ICMP Packets
Link to Hands-on Lab: Examining ICMP Packets

In this lab, you use Wireshark to capture ICMP packets to observe the different ICMP codes.


Page 2:
This Packet Tracer activity will examine ICMP packets issued from hosts on a network.

Click the Packet Tracer icon to launch the Packet Tracer activity.


6.7.2 - Lab - Examining ICMP Packets
Link to Packet Tracer Exploration: Examining ICMP Packets

This Packet Tracer activity examines ICMP packets issued from hosts on a network.


6.7.3 Activity: IPv4 Address Subnetting Part 1

Page 1:
This lab is designed to teach how to compute major network IP address information from a given IP address.

Click the Lab icon for more details.


6.7.3 - Lab - IPv4 Address Subnetting Part 1
Link to Hands-on Lab: IPv4 Address Subnetting Part 1

This activity teaches how to compute major network IP address information from a given IP address.


6.7.4 Activity: IPv4 Address Subnetting Part 2

Page 1:
This lab is designed to teach you how to compute subnet information for a given IP address and subnetwork mask.

Click the Lab icon for more details.


6.7.4 - Lab - IPv4 Address Subnetting Part 2
Link to Hands-on Lab: IPv4 Address Subnetting Part 2

This activity teaches how to compute subnet information for a given IP address and subnetwork mask.


6.7.5 Lab: Subnet and Router Configuration

Page 1:
In this lab activity, you will design and apply an IP addressing scheme for a given topology. After cabling the network you will then configure each device using the appropriate basic configuration commands. When the configuration is complete the appropriate IOS commands will be used to verify that the network is working properly.

Click the Lab icon for more details.


6.7.5 - Lab - Subnet and Router Configuration
Link to Hands-on Lab: Subnet and Router Configuration

In this lab activity, you design and apply an IP addressing scheme for a given topology. After cabling the network, you then configure each device using the appropriate basic configuration commands. When the configuration is complete, the appropriate Cisco I O S commands are used to verify that the network is working properly.


Page 2:
In this Packet Tracer activity, you will design and apply an IP addressing scheme for a given topology. After cabling the network you will then configure each device using the appropriate basic configuration commands. When the configuration is complete the appropriate IOS commands will be used to verify that the network is working properly.

Click the Packet Tracer icon to launch the Packet Tracer activity.


6.7.5 - Lab - Subnet and Router Configuration
Link to Packet Tracer Exploration: Subnet and Router Configuration

In this Packet Tracer activity, you design and apply an IP addressing scheme for a given topology. After cabling the network, you configure each device using the appropriate basic configuration commands. When the configuration is complete, the appropriate Cisco I O S commands are used to verify that the network is working properly.


6.8 Chapter Summaries

6.8.1 Summary and Review

Page 1:
IPv4 addresses are hierarchical with network, subnetwork, and host portions. An IPv4 address can represent a complete network, a specific host, or the broadcast address of the network.

Different addresses are used for unicast, multicast, and broadcast data communications.

Addressing authorities and ISPs allocate address ranges to users, who in turn can assign these addresses to their network devices statically or dynamically. The allocated address range can be divided into subnetworks by calculating and applying subnet masks.

Careful addressing planning is required to make best use of the available address space. Size, location, use, and access requirements are all considerations in the address planning process.

Once implemented, an IP network needs to be tested to verify its connectivity and operational performance.


6.8.1 - Summary and Review
In this chapter, you learned to:
- Explain the structure of IP addressing and demonstrate the ability to convert between 8-bit binary and decimal numbers.
- Given an IPv4 address, classify by type and describe how it is used in the network.
- Explain how addresses are assigned to networks by ISP's and within networks by administrators.
- Determine the network portion of the host address, and explain the role of the subnet mask in dividing networks.
- Given IPv4 addressing information and design criteria, calculate the appropriate addressing components.
- Use common testing utilities to verify and test network connectivity and operational status of the IP protocol stack on a host.


Page 2:


6.8.1 - Summary and Review
This is a review and is not a quiz. Questions and answers are provided.
Question 1: What defines a network in terms of an IPv4 address?
Answer: For each IPv4 address, some portion of the high-order bits represents the network address. At Layer 3, we define a network as a group of hosts that have identical bit patterns in the network address portion of their addresses.

Question 2: Name and state the purpose of the three types of IPv4 addresses.
Answer:
- Network address: The address by which we refer to the network.
- Broadcast address: A special address used to send data to all hosts in the network.
- Host addresses: The addresses assigned to the end devices in the network.

Question 3: What distinguishes each of the three types of IPv4 addresses?
Answer: Within the IPv4 address range of a network, the lowest address is reserved for the network address. This address has a 0 for each host bit in the host portion of the address.

Host address - Host bits are a unique mix of ones and zeros within a network. The broadcast address uses the highest address in the network range. This is the address in which the bits in the host portion are all ones. For the network 10.0.0.0 with 24 network bits, the broadcast address would be 10.0.0.255. This address is also referred to as the directed broadcast.

Question 4: List the three forms of IPv4 communication.
Answer:
- Unicast: Sending a packet from one host to an individual host.
- Broadcast: Sending a packet from one host to all hosts in the network.
- Multicast: Sending a packet from one host to a selected group of hosts.

Question 5: List the purpose of having specified ranges of IPv4 addresses for public and private use.
Answer: Specified private addresses allow network administrators to allocate addresses to those hosts that they know never need direct access to the public Internet.

Question 6: Where are reserved and special IPv4 addresses used?
Answer:
Multicast Addresses:
The IPv4 multicast address range 224.0.0.0 to 239.255.255.255 is reserved for special purposes.

Private Addresses:

The private address blocks are:
10.0.0.0 to 10.255.255.255 (10.0.0.0/8)
172.16.0.0 to 172.31.255.255 (172.16.0.0/12)
192.168.0.0 to 192.168.255.255 (192.168.0.0/16)

Private space address blocks are set aside for private networks. Hosts that do not require access to the Internet at large can make unrestricted use of private addresses because these addresses do not need to be unique among outside networks. Many hosts in different networks can use the same private space addresses. Packets using these addresses as the source or destination must not appear on the public Internet. The router or firewall device at the perimeter of these private networks must block or translate these addresses.

Default Route:
The IPv4 default route is 0.0.0.0. The use of this address also reserves all addresses in the 0.0.0.0 to 0.255.255.255 (0.0.0.0 /8) address block.

Loopback:
One reserved address is the IPv4 loopback address 127.0.0.1. Addresses 127.0.0.0 to 127.255.255.255 are reserved for loopback where hosts direct traffic to themselves.

Link-Local Link Addresses:
IPv4 addresses in the address block 169.254.0.0 to 169.254.255.255 (169.254.0.0/16) are designated as link-local addresses. These addresses can be automatically assigned to the local host by the operating system in environments where no IP configuration is available. These might be used in a small peer-to-peer network or for a host that could not automatically obtain an address from a Dynamic Host Configuration Protocol (DHCP) server.

TEST-NET Addresses:
The address block 192.0.2.0 to 192.0.2.255 (192.0.2.0/24) is set aside for teaching and learning purposes. These addresses can be used in documentation and network examples. Unlike the experimental addresses, network devices accept these addresses in their configurations.

Question 7: List three reasons for planning and documenting IPv4 addresses.
Answer: The allocation of addresses inside the networks should be planned and documented for the purpose of:
- Preventing duplication of addresses.
- Providing and controlling access.
- Monitoring security and performance.

Question 8: Give examples where network administrators statically and dynamically assign IPv4 addresses.
Answer: Static assigned addresses - servers, printers, LAN gateway addresses on routers, management addresses on network devices such as switches, and wireless access points.

Dynamically assigned addresses - large numbers of general-purpose computers and end devices such as IP phones.

Question 9: List the features of IPv6 that distinguish it from IPv4.
Answer: IPv6 has these features compared to IPv4:
- Improved packet handling
- Increased scalability and longevity
- Q o S mechanisms
- Integrated security

To provide these features, IPv6 offers:
- 128-bit hierarchical addressing to expand addressing capabilities.
- Header format simplification to improve packet handling.
- Improved support for extensions and options for increased scalability and longevity and improved packet handling.
- Flow labeling capability as Q o S mechanisms.
- Authentication and privacy capabilities to integrate security.

Question 10: State the purpose of the subnet mask in IPv4 addressing.
Answer: Network devices use the subnet mask to determine the network or subnet address of an IP address that the device is processing.

Question 11: List factors that should be considered when planning an IPv4 addressing scheme.
Answer: Networks are subnetted to overcome issues with location, size, and control. In designing the addressing, consider these factors for grouping the hosts:
- Grouping based on common geographic location.
- Grouping hosts used for specific purposes.
- Grouping based on ownership.

Question 12: State three possible levels at which to use the ping utility to test and verify a host's network connectivity.
Answer:
- Ping 127.0.0.1 loopback test.
- Ping the host's gateway address or another host on the same network.
- Ping a host on a remote network.

Question 13: When would using a trace route utility be more useful than ping?
Answer: When a remote address cannot be accessed and ping fails. Using trace route shows how many hops toward the destination that the source host could successfully reach. This can help determine where the network is failing or where security restrictions are.

Question 14: List the reasons why ICMPv4 is an important protocol to have operating with IPv4.
Answer: IPv4 is an unreliable best-effort protocol. ICMPv4 provides a means for network problems, such as dropped packets or congestion, to be reported back to the source network or host. Messages include:
- Host conformation
- Unreachable destination or service
- Time exceeded
- Route redirection
- Source quench
Note: ICMP does not make IP reliable.


Page 3:
In this activity, you will apply your newly learned skill of subnetting to the ongoing goal of building an increasingly sophisticated model of the Exploration lab topology.

Packet Tracer Skills Integration Instructions (PDF)

Click the Packet Tracer icon to launch the Packet Tracer activity.


6.8.1 - Summary and Review
Link to Packet Tracer Exploration: Planning Subnets and Configuring IP Addresses.

In this activity, you apply your newly learned skill of subnetting to the ongoing goal of building an increasingly sophisticated model of the Exploration lab topology.


Page 4:
To Learn More
Reflection Questions

Discuss the requirements of an IPv4 addressing plan for an organization whose operations are spread over a number of locations. The organization has a number of different functional areas at most locations that require servers, printers, and mobile devices in addition to regular desktop PCs and laptops. What other address space issues would have to be considered if the organization required Internet access for its users as well as access to specific servers by its customers?

Discuss and consider how an organization could rearrange its current /20 IPv4 addressing plan if it needed to expand its network to have more, smaller subnetworks, each with a varying number of potential hosts.


6.8.1 - Summary and Review
The diagram depicts a collage of people using computers and networks.


6.9 Chapter Quiz

6.9.1 Chapter Quiz

Page 1:


6.9.1 - Chapter Quiz
1.What are the differences between binary and decimal numbers? (Choose two.)
A.Decimal numbers are based on powers of 1, and binary numbers are based on powers of 2.
B.Binary numbers are based on powers of 2, and decimal numbers are based on powers of 10.
C.Computers use binary numbers, and people normally use decimal numbers.
D.Numbers typed on a keyboard are entered as binary and converted to decimal by the computer.
E.Binary numbers consist of three states: on, off, null. Decimal numbers do not have states.

2.Refer to the topology description below and current PC and server configurations to answer the question.

Network Topology:
Clerical LAN:
PC A, PC B, and Clerical server are attached to the Clerical switch, which is connected to interface FA0/0 of the New York router.
-PC A IP address: 192.168.100.105/26
-PC B IP address: 192.168.100.99/27
-Clerical server IP address: 192.168.100.98/27
-New York router FA0/0 IP address: 192.168.100.97/27

Admin LAN:
PC C, PC D, and Admin server are attached to the Admin switch, which is connected to interface FA0/1 of the New York router.
-PC C IP address: 192.168.100.85/27
-PC D IP address: 192.168.100.75/27
-Admin server IP address: 192.168.100.66/27
-New York router FA0/1 IP address: 192.168.100.65/27

Host A in the Clerical office failed and was replaced. Although a ping to 127.0.0.1 was successful, the replacement computer cannot access the company network. With proxy ARP disabled on the FA0/0 interface of the New York router, what is the likely cause of the problem?
A.Network card failure
B.Network cables unplugged
C.IP address incorrectly entered
D.Subnet mask incorrectly entered

3.Refer to the following output from the ping commands to answer the question.

C:\>ping 127.0.0.1

Pinging 127.0.0.1 with 32 bytes of data:

Reply from 127.0.0.1: bytes=32 time<1ms TTL 128
Reply from 127.0.0.1: bytes=32 time<1ms TTL 128
Reply from 127.0.0.1: bytes=32 time<1ms TTL 128
Reply from 127.0.0.1: bytes=32 time<1ms TTL 128

Ping statistics for 127.0.0.1:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms

A network administrator is testing the configuration on a host computer. What type of address is 127.0.0.1?
A.Link-local
B.Loopback
C.Public
D.Default route

4.What portion of the IP address does the prefix represent?
A.Broadcast
B.Host
C.Network
D.Unicast

5.Which is true regarding IP network addresses?
A.All host bits are set to 0.
B.All host bits are set to 1.
C.They are assigned the highest address in a range.
D.All network bits are set to 1.

6.Which address type has all host bits set to 1?
A.Network
B.Broadcast
C.Host
D.Unicast

7.How many binary digits (bits) are in an IPv6 address?
A.64 bits
B.48 bits
C.128 bits
D.32 bits

8.What is the primary reason for development of IPv6?
A.Security
B.Header format simplification
C.Expanded addressing capabilities
D.Addressing simplification

9.Refer to the IP addresses listed below:
192.168.223.99 192.168.223.107 192.168.223.117 192.168.223.127

These addresses are part of a single subnet. Which three statements are true regarding these addresses? (Choose three.)
A.Their final octet has 4 of the most significant bits in common.
B.They have 5 low-order bits in common.
C.They have 27 high-order bits in common.
D.192.168.223.99 is a feasible network number for their range.
E.255.255.255.224 is an appropriate mask for their range.
F.192.168.223.127 is the broadcast address for their range.

10.Match the options with the correct statement.
Options:
A. 192.168.12.192/30
B. 172.27.64.98/23
C. 172.18.125.6/20
D. 10.1.167.36/13
E. 192.168.87.212/24
F. 172.31.16.128/19

Statements:
Four bits borrowed from classful network subnets.
Eight subnets from the classful network.
Two usable hosts per subnet.
A classful network.
512 addresses per subnet.

0 comments:

Post a Comment