CCNA-RT-W07-L1-RouterBasics-PT-v1

Lab ID: CCNA-RT-W01-L1-RouterBasics-PT-v1

Objective

You are given two PCs located in different networks. Your task is to configure the network so that both PCs can communicate through a router. You must also identify key router components using IOS show commands.

Lab Topology

The lab topology displays information about the network devices in the lab.

Key Commands

CommandPurpose / What It Does
enableEnters privileged EXEC mode (allows advanced commands).
configure terminalEnters global configuration mode to modify device settings.
endExits configuration mode and returns to privileged EXEC mode.
exitLeaves the current mode or interface context.
interface <type>/<number>Enters interface configuration mode for the specified port.
ip address <address> <mask>Assigns an IPv4 address and subnet mask to an interface.
no shutdownActivates (brings up) an interface that is administratively down.
show ip interface briefDisplays a summary of interface IP addresses and up/down status.
show interfacesShows detailed information about interface status, hardware, errors, and statistics.
show running-configDisplays the device’s active configuration stored in RAM.
show startup-configDisplays the saved configuration stored in NVRAM.
show ip routeShows the routing table, including connected and local routes.
show versionDisplays hardware/memory details, IOS version, uptime, and ROM/Flash info.
ping <address>Tests connectivity to another device using ICMP echo requests.
ip route <network> <mask> <next-hop> (optional)Creates a static route to a destination network.

The IP addresses and subset masks used in this lab are shown in the tables below:

IP Addresses

DeviceInterfaceIP AddressSubnet MaskDefault Gateway
PC1NIC192.168.10.10255.255.255.0192.168.10.1
PC2NIC192.168.20.10255.255.255.0192.168.20.1
Routerg0/0192.168.10.1/24
Routerg0/1192.168.20.1/24

Challenge Tasks

Task 1 — Build the Physical Topology

Create the following topology using Packet Tracer:

  • PC1 must connect to router interface g0/0
  • PC2 must connect to router interface g0/1
  • Use appropriate copper cables
  • Ensure all physical links are active
Solution

Task 2 — Configure End Devices

Assign IP addressing to each PC according to the table:

  • PC1 → 192.168.10.10 /24, gateway 192.168.10.1
  • PC2 → 192.168.20.10 /24, gateway 192.168.20.1

Record your settings and confirm they match the addressing plan exactly.

Solution

PC1

PC2


Task 3 — Configure Router Interfaces

Configure the router interfaces with the following requirements:

  • g0/0 must use IP 192.168.10.1 /24
  • g0/1 must use IP 192.168.20.1 /24
  • Both interfaces must be operational (administratively up)
  • Use “hostname” command to rename Router to R1

No additional routing configuration is required in this lab.

Solution
  1. Access the router CLI and enter privileged EXEC mode:
    • enable
  2. Enter global configuration mode:
    • configure terminal
    • hostname R1
  3. Configure g0/0 with the correct IP address and bring the interface up:
    • interface g0/0
    • ip address 192.168.10.1 255.255.255.0
    • no shutdown
  4. Configure g0/1 with the correct IP address and bring the interface up:
    • interface g0/1
    • ip address 192.168.20.1 255.255.255.0
    • no shutdown
  5. Exit back to privileged EXEC mode:
    • end

Task 4 — View Device Configuration

Inspect and record:

  • The active configuration currently in memory
  • The configuration stored in persistent memory
Solution
  • Display the running configuration:
    • show running-config
  • Display the startup configuration:
    • show startup-config


Task 5 — Validate Interface Status

Verify and document:

  • Operational status (up/down) of all router interfaces
  • IP addressing applied to each interface
Solution
  • Check the operational status of all interfaces:
    • show ip interface brief
  • Verify:
    • g0/0 is up/up with IP 192.168.10.1
    • g0/1 is up/up with IP 192.168.20.1
  • For deeper inspection, run:
    • show interfaces g0/0
    • show interfaces g0/1

Task 6 — Verify Routing Behavior

Examine the router’s routing table and confirm that:

  • Both LAN networks appear as connected routes
  • Interface IPs appear as local routes
  • No static or dynamic routes appear unless intentionally configured

Record your findings.

Solution
  • On the router, view the routing table:
    • show ip route
  • Verify entries for:
    • 192.168.10.0/24 (connected)
    • 192.168.20.0/24 (connected)
    • Local routes for both router interface addresses

    Task 7 — Test End-to-End Connectivity

    Test communication between devices:

    • From PC1, test reachability to PC2 (192.168.20.10)
    • From PC2, test reachability to PC1 (192.168.10.10)

    If connectivity fails, identify which layer is causing the issue and correct it.

    Solution

    ping 192.168.20.10
    ping 192.168.10.10

    • If pings fail, troubleshoot:
      • Interface status
      • IP configuration
      • Cabling
      • Router interface shutdown status

    Task 8 — Functional Validation

    You have completed the challenge successfully when:

    • Both PCs can communicate with each other
    • Router interfaces are up with correct addressing
    • Routing table displays correct connected networks
    • No misconfigurations exist in IP assignments or cabling

    Document all your verification results.


    Keep Practicing!

    This activity is part of the From Zero To CCNA learning path. fromzerotoccna.com

    Leave a Comment

    Your email address will not be published. Required fields are marked *

    Scroll to Top