Lab 3 Worksheet
Lab 3 Worksheet
CLI Topology
Addressing Table
Device Interface IP Address Subnet Mask Default Gateway
Objectives
Part 1: Set Up the Topology and Initialize Devices
• Cable equipment to match the network topology.
• Initialize and restart the router and switch.
Part 2: Configure Devices and Verify Connectivity
• Assign static IPv4 information to the PC interfaces.
• Configure basic router settings.
• Verify network connectivity.
• Configure the router for SSH.
Part 3: Display Router Information
• Retrieve hardware and software information from the router.
• Interpret the output from the startup configuration.
• Interpret the output from the routing table.
• Verify the status of the interfaces.
Background / Scenario
This is a comprehensive lab to review previously covered IOS router commands. In Parts 1 and 2, you
will cable the equipment and complete basic configurations and IPv4 interface settings on the router.
In Part 3, you will use SSH to connect to the router remotely and utilize IOS commands to retrieve
information from the device to answer questions about the router.
For review purposes, this lab provides the commands necessary for specific router configurations.
© 2018 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public.
Lab – Configuring Basic Router Settings with IOS CLI
Note: The routers used with CCNA hands-on labs are Cisco 1941 Integrated Services Routers (ISRs)
with Cisco IOS Release 15.2(4)M3 (universalk9 image). The switches used are Cisco Catalyst 2960
with Cisco IOS Release 15.0(2) (lanbasek9 image). Other routers, switches, and Cisco IOS versions
can be used. Depending on the model and Cisco IOS version, the commands available and output
produced might vary from what is shown in the labs. Refer to the Router Interface Summary Table at
the end of this lab for the correct interface identifiers.
Note: Make sure that the router and switch have been erased and have no startup configurations.
Refer to Appendix A for the procedures to initialize and reload devices.
Required Resources
• 1 Router (Cisco 1941 with Cisco IOS Release 15.2(4)M3 universal image or
comparable) • 1 Switch (Cisco 2960 with Cisco IOS Release 15.0(2) lanbasek9 image or
comparable) • 2 PCs (Windows 7, Vista, or XP with terminal emulation program, such as
Tera Term) • Console cables to configure the Cisco IOS devices via the console ports
• Ethernet cables as shown in the topology
Note: The Gigabit Ethernet interfaces on Cisco 1941 ISRs are autosensing and an Ethernet
straight-through cable can be used between the router and PC-B. If using another model Cisco router, it
may be necessary to use an Ethernet crossover cable.
2
Lab – Configuring Basic Router Settings with IOS CLI
d. Disable DNS lookup to prevent the router from attempting to translate incorrectly entered commands
as though they were hostnames.
R1(config)# no ip domain-lookup
e. Require that a minimum of 10 characters be used for all passwords.
R1(config)# security passwords min-length 10
Besides setting a minimum length, list other ways to strengthen passwords.
Put capital letters and numbers and symbols
f. Assign cisco12345 as the privileged EXEC encrypted password.
R1(config)# enable secret cisco12345
g. Assign ciscoconpass as the console password, establish a timeout, enable login, and add the
logging synchronous command. The logging synchronous command synchronizes debug and
Cisco IOS software output and prevents these messages from interrupting your keyboard input.
R1(config)# line con 0
R1(config-line)# password ciscoconpass
R1(config-line)# exec-timeout 5 0
R1(config-line)# login
R1(config-line)# logging synchronous
R1(config-line)# exit
R1(config)#
For the exec-timeout command, what do the 5 and 0 represent?
It represents time out for 5 minutes 0 seconds
h. Assign ciscovtypass as the vty password, establish a timeout, enable login, and add the
logging synchronous command.
R1(config)# line vty 0 4
R1(config-line)# password ciscovtypass
R1(config-line)# exec-timeout 5 0
R1(config-line)# transport input telnet
R1(config-line)# login
R1(config-line)# logging synchronous
R1(config-line)# exit
R1(config)#
i. Encrypt the clear text passwords.
R1(config)# service password-encryption
j. Create a banner that warns anyone accessing the device that unauthorized access is
prohibited. R1(config)# banner motd #Unauthorized access prohibited!#
k. Configure an IP address and interface description. Activate both interfaces on the
router. R1(config)# int f0/0
R1(config-if)# description Connection to PC-B
R1(config-if)# ip address 192.168.0.1 255.255.255.0
R1(config-if)# no shutdown
R1(config-if)# int f0/1
R1(config-if)# description Connection to S1
3
Lab – Configuring Basic Router Settings with IOS CLI
b. Remotely access R1 from PC-A using the Tera Term Telnet client.
Open Tera Term and enter the F0/1 interface IP address of R1 in the Host: field of the Tera Term:
New Connection window. Ensure that the Telnet radio button is selected and then click OK to
connect to the router.
4
Lab – Configuring Basic Router Settings with IOS CLI
5
Lab – Configuring Basic Router Settings with IOS CLI
239k bytes
How much Flash memory does the router have?
125184k bytes
b. The show commands often provide multiple screens of outputs. Filtering the output allows a user to
display certain sections of the output. To enable the filtering command, enter a pipe (|) character after
a show command, followed by a filtering parameter and a filtering expression. You can match the
output to the filtering statement by using the include keyword to display all lines from the output that
contain the filtering expression. Filter the show version command, using show version | include
register to answer the following question.
0x2142
6
Lab – Configuring Basic Router Settings with IOS CLI
What is the boot process for the router on the next reload?
Will have to enter password for terminal, privilege mode and virtual terminal
An encrypted key
no shutdown
c. Issue the reload command to remove an old configuration from memory. When prompted to
Proceed with reload, press Enter to confirm the reload. (Pressing any other key aborts the
reload.)
Router# reload
7
Lab – Configuring Basic Router Settings with IOS CLI
Note: You may be prompted to save the running configuration prior to reloading the router. Type no
and press Enter.
System configuration has been modified. Save? [yes/no]: no
d. After the router reloads, you are prompted to enter the initial configuration dialog. Enter no and
press Enter.
Would you like to enter the initial configuration dialog? [yes/no]: no
e. You are prompted to terminate autoinstall. Type yes and then press Enter.
Would you like to terminate autoinstall? [yes]: yes
c. If the vlan.dat file was found in flash, then delete this file.
Switch# delete vlan.dat
Delete filename [vlan.dat]?
d. You are prompted to verify the filename. At this point, you can change the filename or just press Enter
if you have entered the name correctly.
e. You are prompted to confirm deleting this file. Press Enter to confirm deletion. (Pressing any other
key aborts the deletion.)
Delete flash:/vlan.dat? [confirm]
Switch#
f. Use the erase startup-config command to erase the startup configuration file from NVRAM. You are
prompted to confirm removing the configuration file. Press Enter to confirm to erase this file.
(Pressing any other key aborts the operation.)
Switch# erase startup-config
Erasing the nvram filesystem will remove all configuration files! Continue? [confirm]
[OK]
Erase of nvram: complete
8
Lab – Configuring Basic Router Settings with IOS CLI
Switch#
g. Reload the switch to remove any old configuration information from memory. You are prompted to
confirm reloading the switch. Press Enter to proceed with the reload. (Pressing any other key aborts
the reload.) Switch# reload
Proceed with reload? [confirm]
Note: You may be prompted to save the running configuration prior to reloading the switch. Type no
and press Enter.
System configuration has been modified. Save? [yes/no]: no
h. After the switch reloads, you should be prompted to enter the initial configuration dialog. Type no
and press Enter.
Would you like to enter the initial configuration dialog? [yes/no]: no
Switch>
Take-Home Message
1. Summarize the code snippet for different functions (e.g. how to enable “ssh connection”).
Password set for privilege :
R1(config)# no ip domain-lookup
R1(config)# security passwords min-length 10
R1(config)# enable secret cisco12345
Password set for terminal
R1(config)# line con 0
R1(config-line)# password ciscoconpass
R1(config-line)# exec-timeout 5 0
R1(config-line)# login
R1(config-line)# logging synchronous
R1(config-line)# exit
R1(config)#