0% found this document useful (0 votes)
57 views3 pages

Banner MOTD-Setting Message of The Day: Description

This document contains instructions for several configuration tasks on a router: 1. Setting the message of the day (MOTD) banner to display "Welcome to local host" when users log in. 2. Changing the hostname to "cisco". 3. Configuring IP addresses and subnet masks on serial interface 0 and Ethernet interface 0. 4. Setting the console password to "cisco" and removing the console password. 5. Setting the privileged mode password to "cisco" and removing the privileged mode password.

Uploaded by

Rahul Sollapure
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
57 views3 pages

Banner MOTD-Setting Message of The Day: Description

This document contains instructions for several configuration tasks on a router: 1. Setting the message of the day (MOTD) banner to display "Welcome to local host" when users log in. 2. Changing the hostname to "cisco". 3. Configuring IP addresses and subnet masks on serial interface 0 and Ethernet interface 0. 4. Setting the console password to "cisco" and removing the console password. 5. Setting the privileged mode password to "cisco" and removing the privileged mode password.

Uploaded by

Rahul Sollapure
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3

Banner MOTD-Setting message of the day

Description: This exercise helps in understanding the procedure of setting message of the day and the show banner command . Note that the banner is set in a single command line here. You can also use multi-line banner motd command. Instructions: 1. Enter into privileged mode 2. Enter into global Configuration Mode 3. Set banner to: "Welcome to local host". Starting and ending character of the banner should be "Z" (Do not use quotes) 4. Use show banner command to view the banner that has been set R1>enable R1#configure terminal R1(config)#banner motd Z Welcome to local host Z R1(config)#exit R1#show banner

Setting Host Name


Description: This basic exercise illustrates the steps required to set a hostname to a router. Instructions: 1. Enter into privileged mode 2. Enter into global Configuration Mode 3. Set hostname as cisco. R1>enable R1#configure terminal R1(config)#hostname cisco

Router Interface Configuration


Description: In this lab, you will learn to enable interfaces on a router i.e, configure Serial 0 and Ethernet 0 interfaces on a router with specified IP Address and Subnet Mask. Instructions: 1. Enter into privileged mode 2. Enter into global Configuration Mode 3. Set IP Address of Serial 0 as 196.20.32.15 and Subnet Mask as 255.255.255.5 4. Set IP Address of Ethernet 0 as 195.20.32.10 and Subnet Mask as 255.255.255.10 R1>enable R1#configure terminal R1(config)#interface serial 0 R1(config-if)#ip address 196.20.32.15 255.255.255.5 R1(config-if)#no shutdown R1(config-if)#exit R1(config)#interface ethernet 0 R1(config-if)#ip address 195.20.32.10 255.255.255.10 R1(config-if)#no shutdown

To set console password R1>enable R1#configure terminal R1(config)#line console 0 R1(config-line)#password cisco R1(config-line)#login R1(config-line)#exit R1(config)#exit To remove console password R1>enable R1#configure terminal R1(config)#line console 0 R1(config-line)#no password R1(config-line)#exit R1(config)#exit

To set Privilege mode password Router>enable R1#configure terminal Router(config)#enable password cisco Router(config)#exit To remove privilege mode password Router>enable R1#configure terminal Router(config)#no enable password Router(config)#exit

You might also like