cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
657
Views
0
Helpful
3
Replies

QoS using precedence config question

jasonww04
Level 1
Level 1

I would like to use precedence values as a way to prioritize traffic. My idea is to have all RDP traffic at precedence 2, traffic from/to VLAN 1 at precedence 1 and all other traffic at precedence 0.

 

Is this a good idea and do I have the correct config?

 

This is how I would implement it.

ip access-list extended Priority2_traffic-ACL
 permit tcp any any eq 3389
 permit tcp any any eq 3390
 

ip access-list extended Priority1_traffic-ACL

permit ip 192.168.29.0 0.0.0.255 any

 

class-map match-all Priority2-CM
 match access-group name Priority2_traffic-ACL

class-map match-all Priority1-CM
 match access-group name Priority1_traffic-ACL
!
policy-map Priority-PM
 class Priority2-CM
  set ip precedence 2
 class Priority1-CM
  set ip precedence 1
 class class-default
  set ip precedence 0

 

interface GigabitEthernet0/1
 description WAN
 ip address x.x.x.x
 service-policy output Priority-PM

1 Accepted Solution

Accepted Solutions

Cisco Freak
Level 4
Level 4

Hi Jason,

This is fine.

This configuration will apply the IP precedence value in outbound direction when packet flow out of Gi0/1 interface.

CF

View solution in original post

3 Replies 3

Cisco Freak
Level 4
Level 4

Hi Jason,

This is fine.

This configuration will apply the IP precedence value in outbound direction when packet flow out of Gi0/1 interface.

CF

rtnet_4820
Level 1
Level 1

Hi Jason,

It will work definitely and don't wait for an RDP traffic to be generated don't know when. Just use an extended PING and use the TOS value in it 64 and ping to any device attached to the gig interface. 

Then the results shows in the "show policy-map interface" command. How many packet marked with IPP2 or IPP1.

jasonww04
Level 1
Level 1

Thanks for the help.

Review Cisco Networking products for a $25 gift card