10.4.3 Packet Tracer - Basic Device Configuration (Instructions Answer)

10.4.3 Packet Tracer - Basic Device Configuration Instructor Version

Instructor Note: Red font color or gray highlights indicate text that appears in the instructor copy only.

Topology

10.4.3 Packet Tracer - Basic Device Configuration

10.4.3 Packet Tracer - Basic Device Configuration

Addressing Table

Device Interface IP Address Default Gateway
College G0/0 128.107.20.1/24 N/A
G0/0 2001:db8:a::1/64
G0/0 FE80::1
G0/1 128.107.30.1/24 N/A
G0/1 2001:db8:b::1/64
G0/1 FE80::1
Class-A VLAN 1 128.107.20.2/24 128.107.20.1
Class-B VLAN 1 128.107.30.15/24 128.107.30.1
Student-1 NIC 128.107.20.25/24 128.107.20.1
Student-1 NIC 2001:db8:a::2/64 FE80::1
Student-2 NIC 128.107.20.30/24 128.107.20.1
Student-2 NIC 2001:db8:a::3/64 FE80::1
Student-3 NIC 128.107.30.25/24 128.107.30.1
Student-3 NIC 2001:db8:b::2/64 FE80::1
Student-4 NIC 128.107.30.30/24 128.107.30.1
Student-4 NIC 2001:db8:b::3/64 FE80::1

Objectives

  • Complete the network documentation.
  • Perform basic device configurations on a router and a switch.
  • Verify connectivity and troubleshoot any issues.

Scenario

Your network manager is impressed with your performance in your job as a LAN technician. She would like you to demonstrate your ability to configure a router that connects two LANs. Your tasks include configuring basic settings on a router and a switch using the Cisco IOS. You will also configure IPv6 addresses on network devices and hosts. You will then verify the configurations by testing end-to-end connectivity. You goal is to establish connectivity between all devices.

Note: The VLAN1 interface on Class-A will not be reachable over IPv6.

In this activity you will configure the College router, Class-B switch, and the PC hosts.

Note: Packet Tracer will not score some configured values, however these values are required to accomplish full connectivity in the network.

Requirements

  • Provide the missing information in the Addressing Table.
  • Name the router College and the second switch Class-B. You will not be able to access the Class-A switch.
  • Use cisco as the user EXEC password for all lines.
  • Use class as the encrypted privileged EXEC password.
  • Encrypt all plaintext passwords.
  • Configure an appropriate banner.
  • Configure IPv4 and IPv6 addressing for the College switch according to the Addressing Table.
  • Configure IPv4 and IPv6 addressing for the Class-B switch according to the Addressing Table.
  • The hosts are partially configured. Complete the IPv4 addressing, and fully configure the IPv6 addresses according to the Addressing Table.
  • Document interfaces with descriptions, including the Class-B VLAN 1 interface.
  • Save your configurations.
  • Verify connectivity between all devices. All devices should be able to ping all other devices with IPv4 and IPv6.
  • Troubleshoot and document any issues.
  • Implement the solutions necessary to enable and verify full end-to-end connectivity.

Note: Click Check Results button to see your progress. Click the Reset Activity button to generate a new set of requirements

Answers Key

College Router

! ==============================================================
!--- 10.4.3 Packet Tracer - Basic Device Configuration
!--- ANSWER SCRIPT FOR THE ROUTER (instructor sample instance: name College)
!--- WARNING: This PT activity is RANDOMIZED - each Reset generates different names/IPs (one of three topologies). The values below match the instructor sample. Substitute your own assigned name, IPv4/IPv6 addresses, and descriptions from YOUR Addressing Table before use.
! ==============================================================

enable
configure terminal

! --------------------------------------------------------------
!--- Basic settings
! --------------------------------------------------------------

!--- Name the router (sample: College).
hostname College

!--- Set the encrypted privileged EXEC password to "class".
enable secret class

!--- Set the console password to "cisco" and require login.
line console 0
 password cisco
 login
 exit

!--- Set the VTY password to "cisco" on all lines and require login.
line vty 0 15
 password cisco
 login
 exit

!--- Encrypt all plaintext passwords.
service password-encryption

!--- Configure a banner warning against unauthorized access.
banner motd #Unauthorized access to this device is prohibited!#

! --------------------------------------------------------------
!--- Interfaces (IPv4 + IPv6 per the Addressing Table)
! --------------------------------------------------------------

!--- G0/0 - LAN toward the first switch (sample: Link to Class-A).
interface g0/0
 ip address 128.107.20.1 255.255.255.0
 ipv6 address 2001:db8:a::1/64
 ipv6 address fe80::1 link-local
 description Link to Class-A
 no shutdown
 exit

!--- G0/1 - LAN toward the second switch (sample: Link to Class-B).
interface g0/1
 ip address 128.107.30.1 255.255.255.0
 ipv6 address 2001:db8:b::1/64
 ipv6 address fe80::1 link-local
 description Link to Class-B
 no shutdown
 exit

!--- Enable IPv6 routing so the router forwards IPv6 between the two LANs.
ipv6 unicast-routing

end

! --------------------------------------------------------------
!--- Save the configuration to NVRAM. (Press Enter when prompted.)
! --------------------------------------------------------------
copy running-config startup-config


! ==============================================================
!--- Verification:
!---   show ip interface brief   -> G0/0 and G0/1 up/up
!---   show ipv6 interface brief -> IPv6 GUA + link-local set
!---   show ipv6 route           -> both connected IPv6 LANs present
! ==============================================================

Class-B Switch

! ==============================================================
!--- 10.4.3 Packet Tracer - Basic Device Configuration
!--- ANSWER SCRIPT FOR THE SECOND SWITCH (instructor sample instance: name Class-B)
!--- WARNING: RANDOMIZED activity - substitute your own assigned name, VLAN 1 IP, and gateway from YOUR Addressing Table. The first switch is NOT accessible, so there is no script for it.
! ==============================================================

enable
configure terminal

! --------------------------------------------------------------
!--- Basic settings
! --------------------------------------------------------------

!--- Name the switch (sample: Class-B).
hostname Class-B

!--- Configure a banner warning against unauthorized access.
banner motd #Unauthorized access to this device is prohibited!#

!--- Set the encrypted privileged EXEC password to "class".
enable secret class

!--- Set the console password to "cisco" and require login.
line console 0
 password cisco
 login
 exit

!--- Set the VTY password to "cisco" and require login.
line vty 0 4
 password cisco
 login
 exit

!--- Encrypt all plaintext passwords.
service password-encryption

! --------------------------------------------------------------
!--- Management interface (VLAN 1)
! --------------------------------------------------------------

!--- Configure VLAN 1 with the switch's IPv4 address and a description, then activate it.
interface vlan 1
 description Vlan 1
 ip address 128.107.30.15 255.255.255.0
 no shutdown
 exit

!--- REQUIRED FOR FULL CONNECTIVITY (omitted in the instructor block): set the default gateway so the switch can reply to pings from remote subnets. PT may not score this, but connectivity needs it.
ip default-gateway 128.107.30.1

end

! --------------------------------------------------------------
!--- Save the configuration to NVRAM. (Press Enter when prompted.)
! --------------------------------------------------------------
copy running-config startup-config


! ==============================================================
!--- Verification:
!---   show ip interface brief  -> VLAN 1 up/up with its IP
!---   ping 128.107.20.10       -> switch can reach a remote-subnet host
! ==============================================================

PCs host

Download Packet Tracer (.pka) file:

Subscribe
Notify of
guest

21 Corrections & Clarifications