Banner MOTD-Setting Message of The Day: Description

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 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