0% found this document useful (0 votes)
5 views

EXP-8

The document outlines the basic configuration steps for router R1, including establishing a HyperTerminal session, entering privileged EXEC mode, and configuring various settings such as the router name, passwords, and interface IP addresses. Key commands include setting the hostname, disabling DNS lookup, and configuring both FastEthernet and Serial interfaces. The final step involves saving the configuration to ensure it persists after a reboot.

Uploaded by

SajedurRahman
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views

EXP-8

The document outlines the basic configuration steps for router R1, including establishing a HyperTerminal session, entering privileged EXEC mode, and configuring various settings such as the router name, passwords, and interface IP addresses. Key commands include setting the hostname, disabling DNS lookup, and configuring both FastEthernet and Serial interfaces. The final step involves saving the configuration to ensure it persists after a reboot.

Uploaded by

SajedurRahman
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

Lab: Basic Router Configuration

Topology Diagram

Addressing Table
Device Interface IP Address Subnet Mask Def. Gateway

Fa0/0 192.168.1.1 255.255.255.0 N/A


R1
S0/0/0 192.168.2.1 255.255.255.0 N/A

Fa0/0 192.168.3.1 255.255.255.0 N/A


R2
S0/0/0 192.168.2.2 255.255.255.0 N/A

PC1 N/A 192.168.1.10 255.255.255.0 192.168.1.1

PC2 N/A 192.168.3.10 255.255.255.0 192.168.3.1

Task: Perform Basic Configuration of Router R1.

Step 1: Establish a HyperTerminal session to router R1.

Step 2: Enter privileged EXEC mode.


Router>enable Router#

Step 3: Enter global configuration mode.


Router#configure terminal

Step 4: Configure the router name as R1.


Router(config)#hostname R1

Step 5: Disable DNS lookup.


R1(config)#no ip domain-lookup

All contents are Copyright © 1992– Page 1 of 2


Step 6: Configure the EXEC mode password.
R1(config)#enable secret class

Step 7: Configure a message-of-the-day banner.


R1(config)#banner motd &
********************************
!!!AUTHORIZED ACCESS ONLY!!!
********************************
&

Step 8: Configure the console password on the router.


R1(config)#line console 0
R1(config-line)#password cisco
R1(config-line)#login
R1(config-line)#exit
R1(config)#

Step 9: Configure the password for the virtual terminal lines.


R1(config)#line vty 0 4
R1(config-line)#password cisco
R1(config-line)#login
R1(config-line)#exit
R1(config)#

Step 10: Configure the FastEthernet0/0 interface.


R1(config)#interface fastethernet 0/0
R1(config-if)#ip address 192.168.1.1 255.255.255.0
R1(config-if)#no shutdown

Step 11: Configure the Serial0/0/0 interface.


R1(config-if)#interface serial 0/0/0
R1(config-if)#ip address 192.168.2.1 255.255.255.0
R1(config-if)#clock rate 64000
R1(config-if)#no shutdown
R1(config-if)#

Step 12: Return to privileged EXEC mode.


R1(config-if)#end

R1#

Step 13: Save the R1 configuration.


Save the R1 configuration using the copy running-config startup-config command.
R1#copy running-config startup-config
Building configuration...
[OK] R1#

. Page 2 of 2

You might also like