CCNP3 Case Study
CCNP3 Case Study
VLAN Name
10 Red
20 Blue
30 Orange
40 Green
Arbab Nazar
1. Disable the links between the access layer switches.
2. Place all switches in the VTP domain CISCO. Make DS1 the VTP server and all
other switches VTP clients.
3.Create the VLANs shown in the VLAN table and assign the names given. For
subnet planning, allocate a subnet for each VLAN.
DS1(config)#vlan 10
DS1(config-vlan)#name Red
DS1(config-vlan)#exit
DS1(config)#vlan 20
DS1(config-vlan)#name Blue
DS1(config-vlan)#exit
DS1(config)#vlan 30
DS1(config-vlan)#name Orange
DS1(config-vlan)#exit
DS1(config)#vlan 40
DS1(config-vlan)#name Green
DS1(config-vlan)#exit
Arbab Nazar
4. Make DS1 the primary spanning-tree root for all VLANs. Make DS2 the backup root.
DS1(config)#spanning-tree vlan 1,10,20,30,40,1002,1003,1004,1005 root primary
5. Make F0/12 between DS1 and DS2 a layer 3 link and assign a subnet to it.
DS1(config)#interface fa 0/12
DS1(config-if)#no switchport
DS1(config-if)#ip address 172.16.50.1 255.255.255.0
DS1(config-if)#no sh
DS2(config)#interface fa 0/12
DS2(config-if)#no switchport
DS2(config-if)#ip address 172.16.50.2 255.255.255.0
DS2(config-if)#no sh
DS1(config)#interface loopback 0
DS1(config-if)#ip address 172.16.60.1 255.255.255.0
DS1(config)#interface fa 0/11
DS1(config-if)#switchport trunk encapsulation isl
DS1(config-if)#switchport mode trunk
DS1(config-if)#no sh
DS2(config)#interface fa 0/11
DS2(config-if)#switchport trunk encapsulation isl
DS2(config-if)#switchport mode trunk
DS2(config-if)#no sh
9. Make sure that all inter-switch links are statically set as trunks
10. The links from DS1 to each access switch must be bound together in an EtherChannel.
12. Put F0/15 through F0/17 on AS1 and AS2 in VLAN 10. Place F0/18 and F0/19 on AS1
and AS2 in VLAN 20. Place F0/20 on AS1 and AS2 in VLAN 30.
AS1(config)#interface fa 0/20
AS1(config-if-range)#switchport access vlan 30
AS1(config-if-range)#switchport mode access
AS2(config)#interface fa 0/20
AS2(config-if-range)#switchport access vlan 30
AS2(config-if-range)#switchport mode access
Arbab Nazar
13. Create an 802.1q trunk link between R1 and AS2. Allow only VLANs 10 and 40 to pass
through the trunk.
AS2(config)#interface fa 0/1
AS2(config-if)#switchport trunk encapsulation dot1q
AS2(config-if)#switchport mode trunk
AS2(config-if)#switchport trunk allowed vlan 10,40
R1(config)#interface fa 0/0
R1(config-if)#no sh
R1(config)#interface fa 0/0.10
R1(config-subif)#encapsulation dot1Q 10
R1(config)#interface fa 0/0.40
R1(config-subif)#encapsulation dot1Q 40
R1(config)#interface fa 0/0.10
R1(config-subif)#ip address 172.16.10.1 255.255.255.0
R1(config)#interface fa 0/0.40
R1(config-subif)#ip address 172.16.40.1 255.255.255.0
15. Create an SVI interface on DS1 in VLANs 20, 30 and 40. Create an SVI interface on
DS2 in VLAN 10, an SVI interface on AS1 in VLAN 30, and an SVI interface on AS2 in
VLAN 40.
DS1(config)#interface vlan 20
DS1(config-if)#ip address 172.16.20.1 255.255.255.0
DS1(config-if)#no sh
DS1(config)#interface vlan 30
DS1(config-if)#ip address 172.16.30.1 255.255.255.0
DS1(config-if)#no sh
DS1(config)#interface vlan 40
DS1(config-if)#ip address 172.16.40.2 255.255.255.0
DS1(config-if)#no sh
DS2(config)#interface vlan 10
DS2(config-if)#ip address 172.16.10.2 255.255.255.0
DS2(config-if)#no sh
AS1(config)#interface vlan 30
AS1(config-if)#ip address 172.16.30.2 255.255.255.0
AS1(config-if)#no sh
AS2(config)#interface vlan 40
AS2(config-if)#ip address 172.16.40.3 255.255.255.0
AS2(config-if)#no sh
Arbab Nazar
16. Enable IP routing on DS1. On R1 and DS1, configure EIGRP for the whole major
network (172.16.0.0/16) and disable automatic summarization.
DS1(config)#ip routing
DS1(config)#router eigrp 1
DS1(config-router)#no auto-summary
DS1(config-router)#network 172.16.0.0
R1(config)#router eigrp 1
R1(config-router)#no auto-summary
R1(config-router)#network 172.16.0.0
Arbab Nazar