Exercise - Basic Configuration
Exercise - Basic Configuration
R1>en
R1#config
Configuring from terminal, memory, or network [terminal]?
Enter configuration commands, one per line. End with CNTL/Z.
R1(config)#hostname R1
R1(config)#banner motd #Authorized Access Only#
R1(config)#line console 0
R1(config-line)#password class
R1(config-line)#login
R1(config-line)#line vty 0 4
R1(config-line)#password cisco
R1(config-line)#login
R1(config-line)#exit
R1(config)#exit
R1#
step 2:
R1>en
Password:
R1#config
Configuring from terminal, memory, or network [terminal]?
Enter configuration commands, one per line. End with CNTL/Z.
R1(config)#hostname R1
R1(config)#banner motd #Authorized Access Only#
R1(config)#line console 0
R1(config-line)#password class
R1(config-line)#login
R1(config-line)#line vty 0 4
R1(config-line)#password cisco
R1(config-line)#login
R1(config-line)#exit
R1(config)#exit
R1#
step 3:
R1(config)#interface Serial0/0/0
R1(config-if)#ip address 172.17.0.1 255.255.0.0
R1(config-if)#description to link R2
R1(config-if)#clock rate 64000
R1(config-if)#no shutdown
R1(config-if)#exit
R1(config)#exit
R1#
step 1:
Router>en
Router#config
Configuring from terminal, memory, or network [terminal]?
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#hostname R2
R2(config)#banner motd #Authorized Access Only#
R2(config)#line console 0
R2(config-line)#password class
R2(config-line)#login
R2(config-line)#line vty 0 4
R2(config-line)#password cisco
R2(config-line)#login
R2(config-line)#exit
R2(config)#
R2(config)#interface Serial0/0/0
R2(config-if)#
R2#
step 2:
R2(config)#interface FastEthernet0/0
R2(config-if)#ip address 172.18.0.2 255.255.0.0
R2(config-if)#description link to R2 LAN
R2(config-if)#no shutdown
R2(config-if)#exit
R2(config)#
step 3:
R2(config)#interface Serial0/0/0
R2(config-if)#ip address 172.17.0.2 255.255.0.0
R2(config-if)#description link to R1
R2(config-if)#no shutdown
R2(config-if)#exit
R2(config)#