cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
476
Views
9
Helpful
2
Replies

MPLS QoS

KaliRathinam
Level 1
Level 1

Hi,

Can you provide the sample commands based on following requirements?

1. 10 mbps Ethernet link towards customer.

2. I need to allocate 2 mbps vpn link for customer on PE interface

3. Inside the 2 mbps I need to define the QoS for various applications. Like EF 1.5 mbps AF2 -200 kbps …

2 Replies 2

mheusing
Cisco Employee
Cisco Employee

Hi,

a hierarchical policy will allow you to achieve your results assuming you have defined the class-maps properly:

policy-map CBWFQ

class EF

priority 1500

class AF2

bandwidth 200

...

class class-default

fair-queue

random-detect

policy-map Shape2mbps

class class-default

shape average 2000000

service-policy output CBWFQ

interface Ethernet0/0

service-policy output Shape2mbps

Please note, not every IOS and platform does support hierarchical policies. You need to check with the Feature Navigator, what is available in your particular case.

Hope this helps! Pease use the rating system.

Regards, Martin

Thanks Martin