cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
452
Views
0
Helpful
4
Replies

QOS for voice

gauravm
Level 1
Level 1

hi all,

i have configured LLQ for voice traffic.but still the voice gets choked at one end after sometime.could someone help me in this .i m attaching below the output of the h policy map command:

Policy Map VOICE

Class voice_packets

Strict Priority

Bandwidth 10 (kbps) Burst 250 (Bytes)

Class voice_signal

Bandwidth 8 (kbps) Max Threshold 64 (packets)

Class class-default

Flow based Fair Queueing

Bandwidth 0 (kbps) Max Threshold 64 (packets)

also , please let me know ,what does it mean by threshold here and the bandwidth 0 kbps

Thanks in advance.

4 Replies 4

Hello,

what are your classes (voice_packets and voice_signal) matching on ? Assigning only 10 and 8 kbps might be too low for the actual voice traffic volume. Can you post the entire configuration of your router ?

Regards,

GP

class-map match-all voice_signal

match access-group 112

class-map match-all voice_packets

match access-group 111

access-list 111 remark ** Voice packets **

access-list 111 permit udp any any range 16384 32767

access-list 112 remark ** Voice Signaling **

access-list 112 permit tcp any any eq 1720

access-list 112 permit tcp any eq 1720 any

access-list 112 permit tcp any any range 2000 2002

policy-map VOICE

class voice_packets

priority 10

class voice_signal

bandwidth 8

class class-default

fair-queue

kindly respond urgently..

Regards,

Hello,

first of all, the class-map voice_signal has been configured with ´match-all´, which means that it has to match each statement in your access list 112, I would change that to ´match-any´.

Also, as stated before, the bandwidth assigned to the classes might be too low, you could try and use ´set dcsp cs5´ for both classes, instead of assigning a bandwidth.

So your config would look like this:

class-map match-any voice_signal

match access-group 112

class-map match-all voice_packets

match access-group 111

access-list 111 remark ** Voice packets **

access-list 111 permit udp any any range 16384 32767

access-list 112 remark ** Voice Signaling **

access-list 112 permit tcp any any eq 1720

access-list 112 permit tcp any eq 1720 any

access-list 112 permit tcp any any range 2000 2002

policy-map VOICE

class voice_packets

set dscp cs5

class voice_signal

set dscp cs5

class class-default

fair-queue

Can you try and see if that makes a difference ?

Regards,

GP

spremkumar
Level 9
Level 9

Hi

In additions to GPs post if u want to make your life/work simpler try auto qos option in your boxes on both the ends.

but do remember to go thru the prequiste while doing that like u need to chek up the B/W coded on ur interfaces and also better to have somebody ther in the remote end while doing this.

this link can take you up there..

http://www.cisco.com/en/US/products/sw/iosswrel/ps5207/products_feature_guide09186a00802000a7.html#wp1075284

regds