Config Lab: IPv4 Addresses 4

 In 200-301 V1 Ch17: Router Addresses and Routes, 200-301 V1 Part 5: IPv4 Routing, 200-301 V1 Parts, Config Lab, Config Lab CCNA Vol 1 Part 4, Config Lab CCNA Vol 1 Part 5, Hands-on, Vol1 Ch17 IPv4 Routes

Practice makes memory. So, time for some practice with IPv4 address configuration on routers. This post is a traditional Config Lab exercise: you start with a network diagram and some planned IPv4 subnets. Your job: do some subletting math and configure the router interfaces with the correct IPv4 addresses and masks.

All about Config Labs

The blog has a series of lab exercises called “Config Labs.” Each lab presents a topology with the relevant initial configuration for each device. The lab also lists new requirements, after which you should create the additional configuration to meet those requirements. You can do the lab on paper, in a text editor, or use software tools like Cisco Packet Tracer or Cisco Modeling Labs.

Once you have created your answer, you can click various tabs at the bottom of this post to see the lab answers, comments about the lab, and other helpful information.

The Lab Exercise

Requirements

This lab asks you to configure all the router IP addresses for the design shown in Figure 1, given a set of requirements. At this point, do not configure static routes or a routing protocol; just configure the IP addresses per the following specific instructions:

  1. Use the subnets as listed in Figure 1.
  2. Routers must use the lowest IP address(es) in each subnet.
  3. If more than one router exists in a subnet, the router with the lower number in the hostname gets the lower IPv4 address. EG, R1 would have a lower IPv4 address than R2.
  4. Hosts should use the lowest IPv4 address in the subnet, with the same tiebreaker concept as stated in #3.

Figure 1: Router Triangle with IPv4 Subnets

Table 1 shows a way to organize the addresses for reference.

Location Address/Mask
R1 G0/0
R1 G0/1
R1 G0/2
R2 G0/0
R2 G0/1
R2 G0/2
R3 G0/0
R3 G0/1
R3 G0/2

Table 1: IPv4 Addresses

Answer Options - Click Tabs to Reveal

You can learn a lot and strengthen real learning of the topics by creating the configuration – even without a router or switch CLI. In fact, these labs were originally built to be used solely as a paper exercise!

To answer, just think about the lab. Refer to your primary learning material for CCNA, your notes, and create the configuration on paper or in a text editor. Then check your answer versus the answer post, which is linked at the bottom of the lab, just above the comments section.

You can also implement the lab using the Cisco Packet Tracer network simulator. With this option, you use Cisco’s free Packet Tracer simulator. You open a file that begins with the initial configuration already loaded. Then you implement your configuration and test to determine if it met the requirements of the lab.

(Use this link for more information about Cisco Packet Tracer.)

Use this workflow to do the labs in Cisco Packet Tracer:

  1. Download the .pkt file linked below.
  2. Open the .pkt file, creating a working lab with the same topology and interfaces as the lab exercise.
  3. Add your planned configuration to the lab.
  4. Test the configuration using some of the suggestions below.

Download this lab’s Packet Tracer File

You can also implement the lab using Cisco Modeling Labs – Personal (CML-P). CML-P (or simply CML) replaced Cisco Virtual Internet Routing Lab (VIRL) software in 2020, in effect serving as VIRL Version 2.

If you prefer to use CML, use a similar workflow as you would use if using Cisco Packet Tracer, as follows:

  1. Download the CML file (filetype .yaml) linked below.
  2. Import the lab’s CML file into CML and then start the lab.
  3. Compare the lab topology and interface IDs to this lab, as they may differ (more detail below).
  4. Add your planned configuration to the lab.
  5. Test the configuration using some of the suggestions below.

Download this lab’s CML file!

 

Network Device Info:

The interfaces used in the lab match the interfaces used in CML file.

Lab Answers Below: Spoiler Alert

Lab Answers: Configuration (Click Tab to Reveal)

Answers

Your first task was to calculate the IP addresses to use, based on requirements. For reference, Table 1 lists the results. Note that all subnets sit in class A network 10.0.0.0, but several use different masks, so this design happens to use Variable Length Subnet Masking (VLSM).

Location IP/mask
R1 G0/0 10.1.12.1 /29
R1 G0/1 10.1.12.17 /28
R1 G0/2 10.1.0.1 23
R2 G0/0 10.1.12.2 /29
R2 G0/1 10.1.12.33 /28
R2 G0/2 10.1.6.1 /23
R3 G0/0 10.1.12.18 /28
R3 G0/1 10.1.12.34 /28
R3 G0/2 10.1.2.1 /23

Table 1: IPv4 Addresses

 

To create the configuration, all you have to do is add the ip address command to each interface in configuration mode. Easy once you’d done it a few times; here are the answers to be complete.

interface GigabitEthernet0/0
 ip address 10.1.12.1 255.255.255.248

!
interface GigabitEthernet0/1
 ip address 10.1.12.17 255.255.255.240

!
interface GigabitEthernet0/2
 ip address 10.1.0.1 255.255.254.0

Example 1: R1 IPv4 Address Configuration

 

interface GigabitEthernet0/0
 ip address 10.1.12.2 255.255.255.248

!
interface GigabitEthernet0/1
 ip address 10.1.12.33 255.255.255.240

!
interface GigabitEthernet0/2
 ip address 10.1.6.1 255.255.254.0

Example 2: R2 IPv4 Address Configuration

interface GigabitEthernet0/0
 ip address 10.1.12.18 255.255.255.240

!
interface GigabitEthernet0/1
 ip address 10.1.12.34 255.255.255.240

!
interface GigabitEthernet0/2
 ip address 10.1.2.1 255.255.254.0

Example 3: R3 IPv4 Address Configuration

Commentary, Issues, and Verification Tips (Click Tabs to Reveal)

Commentary

Before configuring any commands for this lab, you needed to plan your IP addresses. In this case, the figure shows the subnet IDs, and you have to find the numerically lowest address(es) to use for the routers. That makes the math pretty easy – just add one to the 4th octet of the subnet ID to get the numerically lowest IP address in the subnet.

Once planned, configuring the IP addresses require one command per interface: the ip address address mask command, with the address and dotted-decimal mask used as the two parameters.

Finally, for this lab, you should have considered adding the no shutdown command to each interface. The lab states that the routers have no configuration other than the hostname command. As a result, the interfaces may be in an administratively disabled (shutdown) state to begin the lab. The no shutdown command would then change the state to administratively enabled.

Known Issues in this Lab

This section of each Config Lab Answers post hopes to help with those issues by listing any known issues with Packet Tracer related to this lab. In this case, the issues are:

# Summary Detail
1 None No known issues related to this lab.

 

Why Would Cisco Packet Tracer Have Issues?

(Note: The below text is the same in every Config Lab.)

Cisco Packet Tracer (CPT) simulates Cisco routers and switches. However, CPT does not run the same software that runs in real Cisco routers and switches. Instead, developers wrote CPT to predict the output a real router or switch would display given the same topology and configuration – but without performing all the same tasks, an actual device has to do. On a positive note, CPT requires far less CPU and RAM than a lab full of devices so that you can run CPT on your computer as an app. In addition, simulators like CPT help you learn about the Cisco router/switch user interface – the Command Line Interface (CLI) – without having to own real devices.

CPT can have issues compared to real devices because CPT does not run the same software as Cisco devices. CPT does not support all commands or parameters of a command. CPT may supply output from a command that differs in some ways from what an actual device would give. Those differences can be a problem for anyone learning networking technology because you may not have experience with that technology on real gear – so you may not notice the differences. So this section lists differences and issues that we have seen when using CPT to do this lab.

Beyond comparing your answers to this lab’s Answers post, you can test in Cisco Packet Tracer (CPT) or Cisco Modeling Labs (CML). In fact, you can and should explore the lab once configured. For this lab, once you have completed the configuration, try these verification steps. 

  1. After opening the supplied .pkt file, but before configuring any commands, test to see which PCs lease an IP address with DHCP:
    1. Use the ipconfig /all command from the PC command prompt to discover if the PCs have an IP address assigned from the DHCP server.
    2. As needed, use the ipconfig /release and ipconfig /renew commands to release the old address and attempt to renew a lease on an IP address.
  2. After configuring the lab:
    1. Repeat the above tests to confirm that all the PCs lease an address.
    2. From each PC, ping the other PC IP addresses. Because the lab begins with routing working, once DHCP works on each PC, the pings should all work as well.
Config Lab: IPv4 Addresses 3
Config Lab: IPv4 Addresses 5