07-15-2002 07:47 AM - edited 03-01-2019 11:53 PM
We're planning to implement basic QOS for VoIP with CBWFQ/LLQ, and wanted to see if unequal cost load balancing would end up affecting the voice quality.
Also, since the volume of packets will traverse the different paths disproportionally, the bandwidth to reserve with the policy-map, for each interface, is unclear. I guess we'll have to determine what the ratios are in the proportion, or look to tag the voice traffic with a DSCP and policy route it through a specific interface.
07-21-2002 08:02 PM
Since there has been no response to your post, it appears to be either too complex or too rare an issue for other forum members to assist you. If you don't get a suitable response to your post, you may wish to review our resources at the online Technical Assistance Center (http://www.cisco.com/tac) or speak with a TAC engineer. You can open a TAC case online at http://www.cisco.com/tac/caseopen
If anyone else in the forum has some advice, please reply to this thread.
Thank you for posting.
07-23-2002 02:44 PM
You should determine what the voice bandwidth requirements are for your call volume. Your class-map should look something like:
class-map voice-class
match ip dscp 40
This will classify your voice traffic
Next create a policy-map
policy-map atm1/0-policy
class class-voice
priority 250
police 250 conform-action transmit exceed-action drop
class class-default
This will create a 250K llq for your voice traffic.
policy-map atm2/0-policy
class class-voice
priority 450
police 450 conform-action transmit exceed-action drop
class class-default
This will create a 450k llq for your voice traffic
Next, apply the policies to your interfaces.
interface atm1/0.1
pvc 1/45
service-policy output atm1/0-policy
!
interface atm2/0.1
pvc 3/45
service-policy output atm2/0-policy
!
You can then policy route on the inbound ethernet interfaces and the traffic will be queued and policed at your desired limit.
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide