Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 3

BN208 Networked Applications

Laboratory 10: QoS

Submission Due: End of laboratory class, submit the file on Moodle at least 10 minutes
before the end of laboratory class.

Total Marks =10 marks for Week 2 to 11


Marks will be given only to students who attend and participate during 2-hour laboratory
class. Submission on Moodle is mandatory as an evidence of participation.

Description of the laboratory exercise: QoS Configuration

Network Topology

Compiled by Krishna Paudel T2 2023


BN208 Networked Applications Lab 9 Page 2

IP addressing

PC0 192.168.1.2/255.255.255.0
192.178.1.1
PC1 192.168.1.3/255.255.255.0
192.178.1.1
Server 172.16.0.254/255.255.255.0
172.16.0.254
Router0 (hostname= Ingress)
Gig0/0 192.168.1.1/24
Se0/0/0 11.0.0.1/24
Router1 (hostname=Egress)
Gig0/0 172.16.0.1/24
Se0/0/0 11.0.0.2/24

Routing Configuration (OSPF but you can configure any routing protocol)

Router0#hostname Ingress
Ingress(config)#router ospf 10
Ingress(config)#network 11.0.0.0 0.0.0.255 area 0
Ingress(config)#network 192.168.1.0 0.0.0.255 area 0

Router1#hostname Egress
Egress(config)#router ospf 10
Egress(config)#network 11.0.0.0 0.0.0.255 area 0
Egress(config)#network 172.16.0.0 0.0.0.255 area 0

QoS configuration

Creating classes
Ingress#config terminal
#class-map VOICE
#match-protocol rtp
#exit
#class-map WEB
#match-protocol http
#exit
#class-match ICMP
#match-protocol icmp
Creating policy
#config terminal
#policy-map MARK ( any name is OK)

#set ip dscp ef
Compiled by Krishna Paudel T2 2023
BN208 Networked Applications Lab 9 Page 3

#priority 100
#exit
#policy-map MARK
#class WEB
#set ip dscp af31
#bandwidth 50
#exit
#class ICMP
#set ip dscp af11
Appy to the interface

#int Se0/0/0
#service-policy ouput MARK
#wr
#show policy-map int Gig0/0

For more information refer to the following references.

1. https://www.youtube.com/watch?v=KqwMicH-Kr0&t=1112s
2. QoS sample files in packet tracer.
3. https://www.cisco.com/c/en/us/td/docs/switches/lan/catalyst9400/software/release/16-
6/configuration_guide/qos/b_166_qos_9400_cg/b_166_qos_9400_cg_chapter_01.html
4. https://www.youtube.com/watch?
v=IhKsEpxRCAg&list=PLJqb_j53o7BixCXC9YRau226uxCD-xLWL

Compiled by Krishna Paudel T2 2023

You might also like