Elec 472 Lab Exp 2
Elec 472 Lab Exp 2
LAB REPORT 2
Router Foundations
Rosalynn Nguyen
ID: 4711165
Concordia University
EXPERIMENT 2
1. OBJECTIVES
The objective of this second lab is to achieve better understanding about the basic router
configuration commands.
II, INTRODUCTION
Using the modular Cisco 3700 Series Multiservice Access Routers we also learn about WAN
interface, WICS, Advanced Integration Modules ( AIMS) from the Cisco 1700, 2600 and 3600
Series Routers for WAN Access, Voice Gateway, Security, Content, Circuit Emulation, and
finally Dial Alpplications. There is a new doublewide form factor which provides support for the
high density services modules. We use HDSM that has the capability to use higher density and
better and enhanced services.
Here we will learn how to use a basic router, by testing commands as well as troubleshooting
for help.
By following the lab manual for experiment 2 the steps 1, 2, 3, we first expect:
We type in ‘no’ and then enter. Afterwards, choosing yes will terminate the autoinstall. Once
the hyperterminal session will begin as the user prompt appears:
We then get to know about the privileged mode prompt. We apply, without forgetting
that we always switch out to user mode prompt by typing disable.
router>enable
router#
What are the other options available with the copy command?
Command Description
Access-enable Create a temporary Access-list entry
Access-profile Apply user-profile to interface
Access-template Create a temporary access-list entry
Archive Manage archive files
Audio-prompt Load IVR prompt
Auto Exec level automation
Call Reload IVR call application accounting template
Debug Debugging function (see also “undebug”)
If your router is already started then how would you get the router setup script back?
There are 4 steps to follow in order to configure the router: we set up the router basics, we
configure interfaces, then configure routing protocols, and and add any other items (ACL’s,
security, routes, etc). We will focus on the first step in this part.
1. Boot up the router and do not use the setup program. Oh sure, setup is easy, but you need to learn it
all from the command line. Enter the privileged mode:
3. Configure the vty lines with a password “colab.” These are the available Telnet ports for use from
the Internet or from other networking devices on your network. Without a password no one will be
able to telnet into the router.
RouterA(config)#line vty 0 4
RouterA(config-line)#password colab
RouterA(config-line)#login
RouterA(config-line)#exit
4. Configure the console line so messages will not interrupt what you are typing and so your session
does not time out:
RouterA(config)#line con 0
RouterA(config-line)#logging synchronous
RouterA(config-line)#exec-timeout 0 0
RouterA(config-line)#exit
Feeling frisky? Change exec-timeout to 0 1. This will cause your router session to time out every
1 second (it can take up to about 5 minutes to start though). There are only two ways to fix it: router
recovery or press the “down” arrow key while you change the exec timeout to a higher number with
your other hand at the same time. Doing this generates a continuous interrupt request to the CPU and
the session, therefore, does not time out. Logging synchronous is a nice command. When you are
configuring a router sometimes messages will interrupt your work. Without this command in your
script when you are interrupted you will have to remember exactly what you typed when you were
interrupted. With this command the router will “refresh” what you typed on the current line.
5. Configure the secret password “concis” and the enable password “class.” The enable secret
password is used to get from user mode into privileged mode. The enable password is something
that shows up from time to time on tests and whether you know how to configure it or not.
To see what you have done so far you can always look at the running-configuration file:
Once you have determined that your configuration is what you would like on your router you need to save
it to your startup-configuration file. Otherwise if your router is re-booted or you loose power then your
configuration will be lost.
So what if you made a mistake when you are typing something? Some things you can just re-type and
they will be changed (like hostname) and some others you can un-do just by typing the word “no” and
repeating the errant command.
r45-1(config)#line vty 0 4
r45-1(config-line)#password csico (darn! We wanted “colab”)
r45-1(config-line)#no password csico
r45-1(config-line)#password colab
CONCLUSION
After the completion of this lab I can understand the many features that are offered from the
Cisco router we have been using since the beginning. We have started to become familiar
with the router settings and configurations.