Here is one of our Cisco CCNA 200-301 labs we have decided to provide FREE to you!  These labs were created and we felt they were not advanced enough for our partner’s CCNA Lab Workbook.  They are either not complex enough, do not cover multiple concepts, or do not have enough commentary explaining what we want to accomplish in each lab and why you are doing each step.  These labs are basically just simple configurations and not what we would really call labs. Why? Because they do not really help you learn.

Objective: The objective of this lab is to complete the basic initial configuration of a router.  This does not include any interface configuration.

Hardware Requirements

  • One router
  • IOS version 12.x or later
  • A PC running a terminal emulation program
  • Cisco console kit

Setup

  • If the routers have a startup-config, erase it and perform a reload of the routers.

Router Configuration

Router>en    (Enters privileged exec mode)

Router#config t    (Enters global configuration mode)

Enter configuration commands, one per line. End with CNTL/Z.

Router(config)#hostname R1        (Assign a hostname to the device)

R1(config)#no ip domain-lookup    (Prevent domain name lookup)

R1(config)#ip domain-name certificationkits.com    (Assign a domain name to the device)

R1(config)#enable password ciscoenpa$$    (Assign a password to secure the privileged exec mode)

R1(config)#enable secret ciscosecpa$$    (Assign an encrypted password to secure privileged exec mode)

R1(config)#service password-encryption    (Encrypt all plain-text passwords in the running-configuration)

R1(config)#line con 0        (Enter the console interface configuration)

R1(config-line)#pass ciscoconpa$$    (Assign a password to the console connection)

R1(config-line)#login    (Assign that password to the login action)

R1(config-line)#exit

R1(config)#

R1(config)#banner motd ”    (Open the message of the day banner dialog)

Enter TEXT message. End with the character ‘”‘.

WARNING!!! All unauthorized access is strictly prohibited.”

R1(config)#

R1#show run        (View the running configuration to confirm commands were accepted)

R1#copy run start    (Copy the running configuration to NVRAM as startup configuration)

Destination filename [startup-config]?

Building configuration…

[OK]

R1#

End of Lab