Sei sulla pagina 1di 6

COURSE NUMBER:

CIN 4106

COURSE NAME

ADVANCED SWITCHING

EXAM DATE

: FIRST SIT:

25TH MARCH 2015

*SUPPLEMENTAL
ASSESSMENT
STUDENT NAME :
STUDENT ID :
SECTION :

05B8CIN01

NUMBER OF PAGES INCLUDING COVER

TIME ALLOWED

90 MINUTES

PERMITTED STUDENT MATERIALS

5 HAND-WRITTEN SINGLE-SIDED NOTE SHEETS WITHOUT


DIAGRAMS

INSTRUCTIONS TO STUDENTS

PLACE ALL CAPTURE FILES IN A FOLDER WITH YOUR ID


AND NAME. CLEAR ALL CONFIGS AND REMOVE ALL
CABLES BEFORE LEAVING EXAM ROOM

INSTRUCTIONS TO INVIGILATORS

COPY STUDENT CAPTURE TO USB FLASH AND ENSURE


STUDENTS CLEAR ALL CONFIGS & REMOVE CLABLES

SPECIAL ROOM SETUP REQUIREMENTS

CISCO CCNP LAB

IMPORTANT REMINDER:
1. The penalty of cheating issevere and may lead to dismissal from the Higher Colleges of
Technology.
.
2.

Mobile phones and unauthorized electronic devices are NOT ALLOWED in exams.
.

3.

Having or using unauthorized mobile or electronic devices during the exam is considered an act of
CHEATING and leads to disciplinary actions.
.

4. *SUPPLEMENTAL ASSESSMENTS (=Re-sits) are NOT automatically allowed.


You must check with your Program Supervisor if you are allowed to sit the
Supplemental Assessment on the date shown above.

.
I have read and understood the above examination rules.
. .
Page 1 of 6

Student signature:----------------------------------------------

Topology Diagram:

Instructions:
Configure the switches according to the topology diagram and the following specifications.
Distribution layer switches refer to DLS1 and DLS2, and accesslayer switches refer to ALS1
and ALS2.
For any IP requirements, use /24subnets from the 172.20.0.0 /16 range.

Page 2 of 6

Requirements
1. ALS1 and ALS2 were previously connected through their Fa0/11 and Fa0/12
interfaces. If connected, disable the links between ALS1 and ALS2. [1 Marks]

ALS1(config)#interface range fastEthernet 0/11-12


ALS1(config-if-range)#shutdown
ALS2(config)#interface range fastEthernet 0/11-12
ALS2(config-if-range)#shutdown

2. Create loopback interfaces on DLS1 and DLS2 and assign a subnet to each.
[4 Marks]

DLS1(config)#int loopback 1
DLS1(config-if)#ip address 172.20.0.1 255.255.255.255
DLS1(config-if)#no shutdown
DLS2(config)#int loopback 1
DLS2(config-if)#ip address 172.20.0.2 255.255.255.255
DLS2(config-if)#no shutdown
3. Configure all switches in VTP domain DMC, and configure all to be in
transparent mode. Make sure that any VLANs referenced in these instructions
exist on all switches.
[10 Marks]
DLS1(config)#vtp domain DMC
DLS1(config)#vtp mode server
DLS2(config)#vtp domain DMC
DLS2(config)#vtp mode client
ALS1(config)#vtp domain DMC
ALS1(config)#vtp mode client
ALS2(config)#vtp domain DMC
ALS2(config)#vtp mode client

Page 3 of 6

4. Configure the Fa0/12 link between DLS1 and DLS2 as an ISL trunk, and
statically set all other inter-switch links as 802.1q trunks .
[10 Marks]
DLS1(config)#interface fastEthernet 0/12
DLS1(config-if)#switchport mode trunk
DLS1(config-if)#switchport trunk encapsulation isl
DLS1(config-if)#no shutdown
DLS1(config)#interface range fastEthernet 0/7 - 11
DLS1(config-if-range)#switchport trunk encapsulation dot1q
DLS1(config-if-range)#switchport mode trunk
DLS1(config-if-range)#no shutdown
DLS2(config)#interface fastEthernet 0/12
DLS2(config-if)#switchport mode trunk
DLS2(config-if)#switchport trunk encapsulation isl
DLS2(config-if)#no shutdown
DLS2(config)#interface range fastEthernet 0/7 - 11
DLS2(config-if-range)#switchport trunk encapsulation dot1q
DLS2(config-if-range)#switchport mode trunk
DLS2(config-if-range)#no shutdown
ALS1(config)#interface range fastEthernet 0/7 - 11
ALS1(config-if-range)#switchport trunk encapsulation dot1q
ALS1(config-if-range)#switchport mode trunk
ALS1(config-if-range)#no shutdown
ALS2(config)#interface range fastEthernet 0/7 - 11
ALS2(config-if-range)#switchport trunk encapsulation dot1q
ALS2(config-if-range)#switchport mode trunk
ALS2(config-if-range)#no shutdown
5. Give DLS1 and DLS2 SVIs in VLAN 1 (management VLAN), VLAN 10 and
VLAN 20, and assign a subnet to each VLAN.
[10 Marks]
DLS1(config)#int vlan 1
DLS1(config-if)#ip address 172.20.1.1 255.255.255.0
DLS1(config-if)#no shutdown
DLS1(config-if)# exit
DLS1(config)#int vlan 10
DLS1(config-if)#ip address 172.20.10.1 255.255.255.0
DLS1(config-if)#no shutdown
DLS1(config-if)# exit
DLS1(config)#int vlan 20
DLS1(config-if)#ip address 172.20.20.1 255.255.255.0
DLS1(config-if)#no shutdown
Page 4 of 6

DLS2(config)#int vlan 1
DLS2(config-if)#ip address 172.20.1.2 255.255.255.0
DLS2(config-if)#no shutdown
DLS2(config-if)# exit
DLS2(config)#int vlan 10
DLS2(config-if)#ip address 172.20.10.2 255.255.255.0
DLS2(config-if)#no shutdown
DLS2(config-if)# exit
DLS2(config)#int vlan 20
DLS2(config-if)#ip address 172.20.20.2 255.255.255.0
DLS2(config-if)#no shutdown
6. Enable and configure IP routing on DLS1 and DLS2, and use EIGRP for
172.20.0.0/16 with automatic summarization disabled.
[10 Marks]
DLS1(config)#ip routing
DLS1(config)#router eigrp 1
DLS1(config-router)#no auto-summary
DLS1(config-router)#network 172.16.0.0
DLS2(config)#ip routing
DLS2(config)#router eigrp 1
DLS2(config-router)#no auto-summary
DLS2(config-router)#network 172.16.0.0
7. Enable PortFast and BPDU Guard on all access ports on all four switches.
[10 Marks]

DLS1(config)# spanning-tree portfast bpduguard


DLS2(config)# spanning-tree portfast bpduguard
ALS1(config)# spanning-tree portfast bpduguard
ALS2(config)# spanning-tree portfast bpduguard
8. Make sure that DLS1 becomes the spanning tree root of VLAN 1 and VLAN 20,
and that DLS2 becomes the backup root.
[10 Marks]
DLS1(config)#spanning-tree vlan 1,20 root primary
DLS2(config)#spanning-tree vlan 1, 20 root secondary
9. Make sure that DLS2 becomes the spanning tree root of VLAN 10, and that
DLS1 becomes the backup root.
[10 Marks]
DLS1(config)#spanning-tree vlan 10 root secondary
DLS2(config)#spanning-tree vlan 10 root primary
Page 5 of 6

10. Bind the links between DLS2 and ALS2 in an EtherChannel.


DLS1(config)#interface range fastEthernet 0/7 - 8
DLS1(config-if-range)#channel-group 1 mode desirable
DLS1(config-if)#exit
DLS1(config)#interface port-channel 1
DLS1(config-if)#switchport trunk encapsulation dot1q
DLS1(config-if)#switchport mode trunk

[10 Marks]

ALS1(config)#interface range fastEthernet 0/7 - 8


ALS1(config-if-range)#channel-group 1 mode desirable
ALS1(config-if)#exit
ALS1(config)#interface port-channel 1
ALS1(config-if)#switchport trunk encapsulation dot1q
ALS1(config-if)#switchport mode trunk
11. Only allow VLAN 20 on the F0/7 link between DLS2 and ALS2.

[5 Marks]

ALS2(config)#interface fastEthernet 0/7


ALS2(config-if)#switchport trunk encapsulation dot1q
ALS2(config-if)#switchport mode trunk
ALS2(config-if)#switchport trunk allowed vlan 20
12. Configure Fa0/3 on ALS1 as part of VLAN 20 and Fa0/5 on ALS2 as part of
VLAN 10.
.
[5 Marks]
ALS1(config)#interface fastEthernet 0/3
ALS1(config-if)#switchport access vlan 20
ALS1(config-if)#switchport mode access
ALS2(config)#interface fastEthernet 0/5
ALS2(config-if)#switchport access vlan 10
ALS2(config-if)#switchport mode access
Verify Configuration:(5 marks)
1.
Verify your configuration by connecting workstations to ALS1 Fa0/3 and ALS2
Fa0/5 ports and configuring them with appropriate IP addresses. You need to capture
the output of appropriate show commands which must include (at least) the running
configurationand save it to your desktop using filename: device hostname.txt and
place them in a folder with your firstname lastname ID.
END

Page 6 of 6

Potrebbero piacerti anche