 Sameer
join:1999-07-24 Yorba Linda, CA
| VoIP issues with my Cisco 831. (torrents & pulsing voice)
when i download torrents and am on the phone (lingo VoIP service) the person on the other end complains that my voice constantly cuts in and out.
the moment i terminate the torrents, everything is fine again.
i thought i had this problem solved with my current configuration, but it seems like it's not the case.
can someone please look at my configuration and see what needs to be tweaked?
thanks.
|
|
  LilYoda Feline with squirel personality disorder Premium join:2004-09-02 Mountains | Heya. What is your uplink speed. The problem sounds like the torrent traffic is adding too much jitter on your voice traffic. |
|
 Sameer
join:1999-07-24 Yorba Linda, CA
| i appreciate the fast response!
here's a list of the tests i just ran, because i'm unsure as to the upload speed as well (roadrunner keeps changing it.)





so i guess that averages out to 479.8 |
|
  LilYoda Feline with squirel personality disorder Premium join:2004-09-02 Mountains
edit: August 20th, @08:22AM
| reply to Sameer I'm guessing you might have a problem where your router doesn't know about the uplink speed, since you're connected via ethernet... I had the same problem with Charter and my 4500.
If you look on my (very) old post, I think there are additional policies where I force the uplink traffic to a specific speed (I used to shape it to 171 to have up to 256Kbps uplink, but you can probably go for a total of 384 or 448 Kbps)
Link to the old post: »[Config] QoS+VoIP on a Cisco - sample config
If you take 384Kbps as the total uplink, I'd say the config should look something like
The only drawback is that you force the class default to use 234Kbps max, even if there is nothing else in the other classes.
234 comes from 384x95%-(all the bandwidth assigned to the other classes=130)
There may be a better way, but that's the best I could find
-- "Money and sex, storage and bandwidth: only too much is ever enough" Arno Penzias - Former Head of Bell Labs, and Nobel prizewinner |
|
 bbtech6650 Premium join:2004-10-28 Pittsburgh, PA
| reply to Sameer I have qos setup on my 2621... I have a rate-limit on my external facing interface....
no ip address rate-limit input access-group 106 128000 65536 65536 conform-action set-prec-transmit 5 exceed-action set-prec-continue 0 rate-limit input 4096000 4096000 4096000 conform-action transmit exceed-action drop
Heres the access-list 106
access-list 106 permit udp any any eq 4569 access-list 106 permit udp any any eq 5004 access-list 106 permit udp any any eq 5060 access-list 106 permit ip host 70.87.18.x any access-list 106 permit ip host 67.55.159.x any access-list 106 permit ip host 216.89.79.x any access-list 106 permit ip host 207.174.202.x any access-list 106 permit udp any any eq 5061 access-list 106 permit udp any any eq 5062
I don't know if this applies to your ios feature set or not...
Cisco Internetwork Operating System Software IOS (tm) C2600 Software (C2600-IK9O3S3-M), Version 12.3(12a), RELEASE SOFTWARE (fc2)
Is mine |
|
 Sameer
join:1999-07-24 Yorba Linda, CA | thanks. i'll give it a try. |
|
 mplex
join:2004-04-15 Charleston, SC
| reply to Sameer Add this policy and use it as the outgoing policy on the wan ethernet interface:
policy-map MyQosPolicy-Parent class class-default shape average 330000 !! I use this for my 384k uplink service-policy MyQosPolicy
This will prioritize the traffic under the MyQosPolicy policy at the specified rate. You can not use 384000 since you have to account for docsis overhead and bad cable service. Play with this number if you want, but always start low and increase it. If you go over, QoS will fail. |
|
 mplex
join:2004-04-15 Charleston, SC
| Sorry for the quick follow-up, but I saw that you misconfigured your original policy-map. First of all, there is only one priority queue no matter how you configure it, so I would combine the VoIP and sip classes in to one class. Also, I would switch to percentages but that is a personal thing. If I was writing this policy map, I would do this:
policy-map MyQoSPolicy class VoIP set dscp ef priority percent 50 class normal_traffic bandwidth percent 20 class warcraft bandwidth percent 20 class class-default bandwidth percent 10
For class-default, you can not combine bandwidth with fair-queue, and the way the algorithm works can completely starve that class down to nothing. This is a better configuration IMO. Also, for VOIP, throw the sip classification in with the other VOIP class.
Don't forget to combine the parent policy in my last post to wrap this policy in a rate limiter.
Good luck. |
|