1.1.4.6 Lab - Configuring Basic Router Settings With IOS CLI
1.1.4.6 Lab - Configuring Basic Router Settings With IOS CLI
SWITCHING
© 2013 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 0 of 17
Lab – Configuring Basic Router Settings with IOS CLI
Addressing Table
Device Interface IP Address Subnet Mask Default Gateway
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. In Part 4, you will configure IPv6 on the router so that
PC-B can acquire an IP address and then verify connectivity.
For review purposes, this lab provides the commands necessary for specific router configurations.
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.
© 2013 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 1 of 17
Lab – Configuring Basic Router Settings with IOS CLI
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.
© 2013 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 2 of 17
Lab – Configuring Basic Router Settings with IOS CLI
© 2013 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 3 of 17
Lab – Configuring Basic Router Settings with IOS CLI
Router(config)#
c. Assign a device name to the router.
Router(config)# hostname R1
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.
In global config mode, type “service password-encryption” to encrypt all passwords. (In enable
secret command).
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)# 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!#
© 2013 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 4 of 17
Lab – Configuring Basic Router Settings with IOS CLI
k. Configure an IP address and interface description. Activate both interfaces on the router.
R1(config)# int g0/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 g0/1
R1(config-if)# description Connection to S1
R1(config-if)# ip address 192.168.1.1 255.255.255.0
R1(config-if)# no shutdown
R1(config-if)# exit
R1(config)# exit
R1#
l. Set the clock on the router; for example:
R1# clock set 17:00:00 18 Feb 2013
m. Save the running configuration to the startup configuration file.
R1# copy running-config startup-config
Destination filename [startup-config]?
Building configuration...
[OK]
R1#
What would be the result of reloading the router prior to completing the copy running-config
startupconfig command?
It would load the most recent configurations since it saves to the NVRAM.
© 2013 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 5 of 17
Lab – Configuring Basic Router Settings with IOS CLI
© 2013 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 6 of 17
Lab – Configuring Basic Router Settings with IOS CLI
After completing this series of commands, what type of remote access could be used to access R1?
Stuff like Telnet, Tera Terminal and other software’s.
b. Remotely access R1 from PC-A using the Tera Term Telnet client.
© 2013 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 7 of 17
Lab – Configuring Basic Router Settings with IOS CLI
Open Tera Term and enter the G0/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.
© 2013 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 8 of 17
Lab – Configuring Basic Router Settings with IOS CLI
How much non-volatile random-access memory (NVRAM) does the router have?
255 Kilobytes
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.
What is the boot process for the router on the next reload?
Configuration register 0x2102
© 2013 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 9 of 17
Lab – Configuring Basic Router Settings with IOS CLI
© 2013 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 10 of 17
Lab – Configuring Basic Router Settings with IOS CLI
Reflection
1. In researching a network connectivity issue, a technician suspects that an interface was not enabled. What
show command could the technician use to troubleshoot this issue?
show ip interface brief
2. In researching a network connectivity issue, a technician suspects that an interface was assigned an incorrect
subnet mask. What show command could the technician use to troubleshoot this issue?
show ip interface or show interface
3. After configuring IPv6 on the R1 G0/0 PC-B LAN, if you were to ping from PC-A to the PC-B IPv6 address,
would the ping succeed? Why or why not?
No because PC-A wasn’t configured for IPV6, just the router.
Router Interface Summary Table
Router Interface Summary
Router Model Ethernet Interface #1 Ethernet Interface #2 Serial Interface #1 Serial Interface #2
1800 Fast Ethernet 0/0 Fast Ethernet 0/1 Serial 0/0/0 (S0/0/0) Serial 0/0/1 (S0/0/1)
(F0/0) (F0/1)
1900 Gigabit Ethernet 0/0 Gigabit Ethernet 0/1 Serial 0/0/0 (S0/0/0) Serial 0/0/1 (S0/0/1)
(G0/0) (G0/1)
2801 Fast Ethernet 0/0 Fast Ethernet 0/1 Serial 0/1/0 (S0/1/0) Serial 0/1/1 (S0/1/1)
(F0/0) (F0/1)
© 2013 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 11 of 17
Lab – Configuring Basic Router Settings with IOS CLI
2811 Fast Ethernet 0/0 Fast Ethernet 0/1 Serial 0/0/0 (S0/0/0) Serial 0/0/1 (S0/0/1)
(F0/0) (F0/1)
2900 Gigabit Ethernet 0/0 Gigabit Ethernet 0/1 Serial 0/0/0 (S0/0/0) Serial 0/0/1 (S0/0/1)
(G0/0) (G0/1)
Note: To find out how the router is configured, look at the interfaces to identify the type of router and how many
interfaces the router has. There is no way to effectively list all the combinations of configurations for each router
class. This table includes identifiers for the possible combinations of Ethernet and Serial interfaces in the device.
The table does not include any other type of interface, even though a specific router may contain one. An
example of this might be an ISDN BRI interface. The string in parenthesis is the legal abbreviation that can be
used in Cisco IOS commands to represent the interface.
Appendix A: Initializing and Reloading a Router and Switch
Step 1: Initialize and reload the router.
a. Console into the router and enable privileged EXEC mode.
Router> enable
Router#
b. Type the erase startup-config command to remove the startup configuration from NVRAM.
Router# erase startup-config
Erasing the nvram filesystem will remove all configuration files! Continue? [confirm]
[OK]
Erase of nvram: complete
Router#
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
Proceed with reload? [confirm]
*Nov 29 18:28:09.923: %SYS-5-RELOAD: Reload requested by console. Reload Reason:
Reload Command.
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 Step
© 2013 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 12 of 17
Lab – Configuring Basic Router Settings with IOS CLI
Directory of flash:/
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
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]
© 2013 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 13 of 17
Lab – Configuring Basic Router Settings with IOS CLI
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>
© 2013 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. 14 of 17
Lab – Configuring Basic Router Settings with IOS CLI
Page
© 2013 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. 15 of 17