<?xml version="1.0" encoding="UTF-8"?>

<rss version="2.0" xmlns:blogChannel="http://backend.userland.com/blogChannelModule">

<channel>
<title>Re: VoIP issues with my Cisco 831.  (torrents &#x26; pulsing voice) in Cisco</title>
<link>http://www.dslreports.com/forum/r18910596</link>
<description></description>
<language>en</language>
<pubDate>Tue, 15 Dec 2009 02:19:07 EDT</pubDate>
<lastBuildDate>Tue, 15 Dec 2009 02:19:07 EDT</lastBuildDate>

<item>
<title>Re: VoIP issues with my Cisco 831.  (torrents &#x26; pulsing voice)</title>
<link>http://www.dslreports.com/forum/remark,18957817</link>
<description><![CDATA[<A HREF="/useremail/u/990390"><b>mplex</b></A> : 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:<br><br>policy-map MyQoSPolicy  <br>class VoIP  <br>set dscp ef  <br>priority percent 50   <br>  class normal_traffic  <br>   bandwidth percent 20  <br>  class warcraft  <br>   bandwidth percent 20  <br>  class class-default  <br>   bandwidth percent 10<br><br>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.<br><br>Don't forget to combine the parent policy in my last post to wrap this policy in a rate limiter.<br><br>Good luck.]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,18957817</guid>
<pubDate>Mon, 27 Aug 2007 08:36:23 EDT</pubDate>
</item>

<item>
<title>Re: VoIP issues with my Cisco 831.  (torrents &#x26; pulsing voice)</title>
<link>http://www.dslreports.com/forum/remark,18957804</link>
<description><![CDATA[<A HREF="/useremail/u/990390"><b>mplex</b></A> : Add this policy and use it as the outgoing policy on the wan ethernet interface:<br><br>policy-map MyQosPolicy-Parent<br> class class-default<br>  shape average 330000 !! I use this for my 384k uplink<br>  service-policy MyQosPolicy<br><br>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.]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,18957804</guid>
<pubDate>Mon, 27 Aug 2007 08:27:55 EDT</pubDate>
</item>

<item>
<title>Re: VoIP issues with my Cisco 831.  (torrents &#x26; pulsing voice)</title>
<link>http://www.dslreports.com/forum/remark,18955149</link>
<description><![CDATA[<A HREF="/useremail/u/100717"><b>Sameer</b></A> : thanks.  i'll give it a try.]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,18955149</guid>
<pubDate>Sun, 26 Aug 2007 19:29:18 EDT</pubDate>
</item>

<item>
<title>Re: VoIP issues with my Cisco 831.  (torrents &#x26; pulsing voice)</title>
<link>http://www.dslreports.com/forum/remark,18953721</link>
<description><![CDATA[<A HREF="/useremail/u/1100218"><b>bbtech6650</b></A> : I have qos setup on my 2621... I have a rate-limit on my external facing interface....<br><br>no ip address<br> rate-limit input access-group 106 128000 65536 65536 conform-action set-prec-transmit 5 exceed-action set-prec-continue 0<br> rate-limit input 4096000 4096000 4096000 conform-action transmit exceed-action drop<br><br>Heres the access-list 106<br><br>access-list 106 permit udp any any eq 4569<br>access-list 106 permit udp any any eq 5004<br>access-list 106 permit udp any any eq 5060<br>access-list 106 permit ip host 70.87.18.x any<br>access-list 106 permit ip host 67.55.159.x any<br>access-list 106 permit ip host 216.89.79.x any<br>access-list 106 permit ip host 207.174.202.x any<br>access-list 106 permit udp any any eq 5061<br>access-list 106 permit udp any any eq 5062<br><br>I don't know if this applies to your ios feature set or not...<br><br>Cisco Internetwork Operating System Software<br>IOS (tm) C2600 Software (C2600-IK9O3S3-M), Version 12.3(12a), RELEASE SOFTWARE (fc2)<br><br>Is mine]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,18953721</guid>
<pubDate>Sun, 26 Aug 2007 15:15:31 EDT</pubDate>
</item>

<item>
<title>Re: VoIP issues with my Cisco 831.  (torrents &#x26; pulsing voice)</title>
<link>http://www.dslreports.com/forum/remark,18910596</link>
<description><![CDATA[<A HREF="/useremail/u/1069980"><b>LilYoda</b></A> : 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.<br><br>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)<br><br>Link to the old post: &raquo;<A HREF="/forum/remark,12421459#12421846">[Config] QoS+VoIP on a Cisco - sample config</A><br><br>If you take 384Kbps as the total uplink, I'd say the config should look something like<br><br><textarea name="code" class="text" cols=50 rows=10>policy-map MyQoSPolicy  &#012;  class VoIP&#012;   set dscp ef  &#012;    priority 90&#012;  class sip  &#012;   set dscp ef  &#012;   priority 10  &#012;  class normal_traffic  &#012;   bandwidth 20  &#012;  class warcraft  &#012;   bandwidth 10  &#012;  class class-default&#012;   shape average 234000&#012;   bandwidth 234&#012;   fair-queue&#012;!&#012;interface Ethernet1&#012; bandwidth 384&#012; max-reserved-bandwidth 95&#012; service-policy output MyQoSPolicy  &#012; tx-ring-limit 2&#012; tx-queue-limit 2&#012;</textarea><!--end code block--><br>The only drawback is that you force the class default to use 234Kbps max, even if there is nothing else in the other classes.<br><br>234 comes from 384x95%-(all the bandwidth assigned to the other classes=130)<br><br>There may be a better way, but that's the best I could find<br><br><SMALL>--<br>"Money and sex, storage and bandwidth: only too much is ever enough"<br>Arno Penzias - Former Head of Bell Labs, and Nobel prizewinner</SMALL>]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,18910596</guid>
<pubDate>Mon, 20 Aug 2007 08:21:02 EDT</pubDate>
</item>

<item>
<title>Re: VoIP issues with my Cisco 831.  (torrents &#x26; pulsing voice)</title>
<link>http://www.dslreports.com/forum/remark,18910369</link>
<description><![CDATA[<A HREF="/useremail/u/100717"><b>Sameer</b></A> : i appreciate the fast response! <br><br>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.)<br><br><A HREF="http://speedtest.dslreports.com"><IMG SRC="http://www.dslreports.com/im/35489083/2950.png" border=0></A><br><A HREF="http://speedtest.dslreports.com"><IMG SRC="http://www.dslreports.com/im/35489100/7949.png" border=0></A><br><A HREF="http://speedtest.dslreports.com"><IMG SRC="http://www.dslreports.com/im/35489121/5965.png" border=0></A><br><A HREF="http://speedtest.dslreports.com"><IMG SRC="http://www.dslreports.com/im/35489137/8436.png" border=0></A><br><A HREF="http://speedtest.dslreports.com"><IMG SRC="http://www.dslreports.com/im/35489162/66740.png" border=0></A><br><br>so i guess that averages out to 479.8]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,18910369</guid>
<pubDate>Mon, 20 Aug 2007 06:01:09 EDT</pubDate>
</item>

<item>
<title>Re: VoIP issues with my Cisco 831.  (torrents &#x26; pulsing voice)</title>
<link>http://www.dslreports.com/forum/remark,18910304</link>
<description><![CDATA[<A HREF="/useremail/u/1069980"><b>LilYoda</b></A> : Heya.  What is your uplink speed.  The problem sounds like the torrent traffic is adding too much jitter on your voice traffic.]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,18910304</guid>
<pubDate>Mon, 20 Aug 2007 05:29:18 EDT</pubDate>
</item>

<item>
<title>VoIP issues with my Cisco 831.  (torrents &#x26; pulsing voice)</title>
<link>http://www.dslreports.com/forum/remark,18907577</link>
<description><![CDATA[<A HREF="/useremail/u/100717"><b>Sameer</b></A> : 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.<br><br>the moment i terminate the torrents, everything is fine again.<br><br>i thought i had this problem solved with my current configuration, but it seems like it's not the case.<br><br>can someone please look at my configuration and see what needs to be tweaked?<br><br>thanks.<br><br><textarea name="code" class="text" cols=50 rows=10>version 12.3&#012;no service pad&#012;service timestamps debug datetime msec&#012;service timestamps log datetime msec&#012;no service password-encryption&#012;!&#012;hostname pluto&#012;!&#012;boot-start-marker&#012;boot-end-marker&#012;!&#012;enable secret 5 xxxxxx&#012;!&#012;aaa new-model&#012;!&#012;!&#012;!&#012;aaa session-id common&#012;!&#012;resource policy&#012;!&#012;ip subnet-zero&#012;!&#012;!&#012;ip nbar port-map sip udp 5060 5061 5062 5063 5064 5065&#012;no ip dhcp use vrf connected&#012;!&#012;!&#012;ip cef&#012;no ip domain lookup&#012;ip domain name solhome.com&#012;no ip ips deny-action ips-interface&#012;ip ssh time-out 60&#012;ip ssh authentication-retries 2&#012;ip ssh logging events&#012;ip ssh version 2&#012;!&#012;no ftp-server write-enable&#012;!&#012;!&#012;username xxx password 0 xxx&#012;!&#012;!&#012;class-map match-any warcraft&#012;description warcraft&#012; match access-group name warcraft&#012;class-map match-any VoIP&#012; match protocol rtp audio&#012;class-map match-any normal_traffic&#012; match protocol http&#012; match protocol secure-http&#012; match protocol dns&#012; match protocol smtp&#012; match protocol pop3&#012; match protocol ntp&#012; match protocol icmp&#012;class-map match-any sip&#012; match protocol sip&#012;!&#012;!&#012;policy-map MyQoSPolicy&#012; class VoIP&#012;  set dscp ef&#012;  priority 90&#012; class sip&#012;  set dscp ef&#012;  priority 10&#012; class normal_traffic&#012;  bandwidth 20&#012; class warcraft&#012;  bandwidth 10&#012; class class-default&#012;  fair-queue&#012;!&#012;!&#012;no crypto isakmp ccm&#012;!&#012;no crypto ipsec nat-transparency udp-encaps&#012;!&#012;!&#012;interface Ethernet0&#012; description LAN Link&#012; ip address 10.10.100.1 255.255.255.248&#012; ip nat inside&#012; no ip virtual-reassembly&#012;!&#012;interface Ethernet1&#012; description WAN Link&#012; ip address dhcp&#012; ip nbar protocol-discovery&#012; ip nat outside&#012; no ip virtual-reassembly&#012; duplex auto&#012; service-policy output MyQoSPolicy&#012;!&#012;interface Ethernet2&#012; no ip address&#012; shutdown&#012;!&#012;interface FastEthernet1&#012; duplex auto&#012; speed auto&#012;!&#012;interface FastEthernet2&#012; duplex auto&#012; speed auto&#012;!&#012;interface FastEthernet3&#012; duplex auto&#012; speed auto&#012;!&#012;interface FastEthernet4&#012; duplex auto&#012; speed auto&#012;!&#012;ip classless&#012;ip route 0.0.0.0 0.0.0.0 dhcp&#012;!&#012;ip http server&#012;no ip http secure-server&#012;!&#012;ip nat inside source list OUTBOUND_ADDRESSES interface Ethernet1 overload&#012;ip nat inside source list VPN interface Ethernet1 overload&#012;ip nat inside source static udp 10.10.100.6 12365 interface Ethernet1 12365&#012;ip nat inside source static tcp 10.10.100.6 12365 interface Ethernet1 12365&#012;ip nat inside source static udp 10.10.100.6 6112 interface Ethernet1 6112&#012;ip nat inside source static tcp 10.10.100.6 6112 interface Ethernet1 6112&#012;!&#012;!&#012;ip access-list standard OUTBOUND_ADDRESSES&#012; permit 10.10.100.4&#012; permit 10.10.100.5&#012; permit 10.10.100.6&#012; permit 10.10.100.2&#012; permit 10.10.100.3&#012;!&#012;ip access-list extended VPN&#012; permit ahp any host 10.10.100.3&#012; permit esp any host 10.10.100.3&#012; permit udp any host 10.10.100.3 eq isakmp&#012; permit udp any host 10.10.100.3 eq non500-isakmp&#012; permit tcp any host 10.10.100.3 eq 500&#012;ip access-list extended allowed_ssh&#012; permit tcp host 10.10.100.6 host 10.10.100.1 eq 22&#012;ip access-list extended warcraft&#012; permit udp any any eq 6112&#012; permit tcp any any eq 6112&#012;!&#012;!&#012;control-plane&#012;!&#012;banner motd ^CC&#012;You are connected to $(hostname) on a private network.&#012;Use of this system may be logged or monitored without further notice.&#012; Unauthorized access is prohibited.&#012;Violators will be prosecuted.&#012;^C&#012;!&#012;line con 0&#012; no modem enable&#012;line aux 0&#012;line vty 0 4&#012; transport input ssh&#012;!&#012;scheduler max-task-time 5000&#012;ntp clock-period 17179404&#012;ntp server 192.5.41.41&#012;end&#012;</textarea><!--end code block-->]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,18907577</guid>
<pubDate>Sun, 19 Aug 2007 17:43:16 EDT</pubDate>
</item>

</channel>
</rss>
