cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1284
Views
0
Helpful
2
Replies

how to limit the flodding of UDP traffic

Hello All,

We are troubleshooting a performance issue in our Network. UDP traffic from a particular application is completely congesting the link.

Though we have QoS to throttle the traffic from the application to use only 9% bandwith of the link but that application flodding the traffic around 80% of the link. The traffic from the application is getting categorised as default traffic CS0.

 

Class class-default
      fair-queue
      bandwidth remaining 9 (%)

 

Is there anything we are missing in the configuration of the class-map that is alowing the flodding of the UDP traffic?

Regards,

Thiyagu

 

 

 

 

 

 

2 Replies 2

Walter Astori
Level 1
Level 1

If you use a router you must configure a policy-map as below (example):

class-map match-any TrafficoVoipCTRL
 match protocol skinny
 match access-group name TrafficoVoiceCtrl
 match access-group name TrafficoICM
 match protocol sip

policy-map QosIdcToTrapani
 class TrafficoVoipCTRL
  set ip dscp af31
  priority percent 20
or
policy-map QosIdcToTrapani
 class TrafficoROUTING
  set ip dscp cs6
  bandwidth percent 3
  random-detect

and

interface GigabitEthernet0/0
 service-policy output QosIdcToTrapani

 

Joseph W. Doherty
Hall of Fame
Hall of Fame

Disclaimer

The Author of this posting offers the information contained within this posting without consideration and with the reader's understanding that there's no implied or expressed suitability or fitness for any purpose. Information provided is for informational purposes only and should not be construed as rendering professional advice of any kind. Usage of this posting's information is solely at reader's own risk.

Liability Disclaimer

In no event shall Author be liable for any damages whatsoever (including, without limitation, damages for loss of use, data or profit) arising out of the use or inability to use the posting's information even if Author has been advised of the possibility of such damage.

Posting

You might misunderstand the purpose of the CBWFQ bandwidth statement.  It guarantees a minimum, it doesn't limit the class from using all the link bandwidth.

The latter, though, isn't necessarily bad. Other classes should be able to obtain their bandwidth guarantees, and as you've defined FQ in the class, a high rate flow shouldn't monopolize the bandwidth (i.e. other flows will get their share to).

With QoS, the question shouldn't be whether your UDP traffic can acquire 80% of the link, but rather it is adverse to other applications when it does acquire 80%.  If it is adverse, you can often just lower its bandwidth guarantee.

Review Cisco Networking for a $25 gift card