Labccna15 PDF
Labccna15 PDF
Configuration and
Verification
Task 1:
Switch#config t
Enter configuration commands, one per line. End with CTRL/Z.
Switch(config)#hostname Sw1
Sw1(config)#
Switch#config t
Enter configuration commands, one per line. End with CTRL/Z.
Switch(config)#hostname Sw2
Sw1(config)#
Router#config t
Enter configuration commands, one per line. End with CTRL/Z.
Router(config)#hostname R1
R1(config)#
Router#config t
Enter configuration commands, one per line. End with CTRL/Z.
Router(config)#hostname R3
R3(config)#
Task 2:
NOTE: By default, Cisco switches are VTP servers so no
configuration is necessary for server mode on Sw1. This can be
verified using the show vtp status command. However, you do need to
configure the domain.
Sw1#config t
Enter configuration commands, one per line. End with CTRL/Z.
Sw1(config)#vtp domain CISCO
Changing VTP domain name from Null to CISCO
Sw1(config)#
Sw2#config t
Enter configuration commands, one per line. End with CTRL/Z.
Sw2(config)#vtp mode client
Setting device to VTP CLIENT mode.
Sw2(config)#vtp domain CISCO
Changing VTP domain name from Null to CISCO
Sw2(config)#end
Task 3:
NOTE: Some Cisco switches default to 802.1Q trunking so no
explicit configuration is required. The 2960 Switch (used in the
exam) is set to dynamic auto so you will have to set at least one side
to trunk.
Task 4:
Sw1#config t
Enter configuration commands, one per line. End with CTRL/Z.
Sw1(config)#vlan10
Sw1(config-vlan)#name SALES
Sw1(config-vlan)#exit
Sw1(config)#vlan20
Sw1(config-vlan)#name MANAGERS
Sw1(config-vlan)#exit
Sw1(config)#interface fastethernet0/2
Sw1(config-if)#switchport mode access
Sw1(config-if)#switchport access vlan10
Sw1(config-if)#end
Sw1#
Sw1#show vlan brief
Sw2#config t
Enter configuration commands, one per line. End with CTRL/Z.
Sw2(config)#interface fastethernet0/2
Sw2(config-if)#switchport mode access
Sw2(config-if)#switchport access vlan10
Sw2(config-if)#end
Sw2#
Sw2#show vlan brief
Task 5:
R1#config t
Enter configuration commands, one per line. End with CTRL/Z.
R1(config)#interface fastethernet0/0
R1(config-if)#ip address 10.0.0.1 255.255.255.240
R1(config-if)#no shutdown
R1(config-if)#end
R1#
R3#config t
Enter configuration commands, one per line. End with CTRL/Z.
R3(config)#interface fastethernet0/0
R3(config-if)#ip address 10.0.0.3 255.255.255.240
R3(config-if)#no shutdown
R3(config-if)#end
R3#
R1#ping 10.0.0.3