<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Bandwidth throttling via QoS in Routing and SD-WAN</title>
    <link>https://community.cisco.com/t5/routing-and-sd-wan/bandwidth-throttling-via-qos/m-p/2187133#M212299</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Also note I am configuring this on a tunnel interface, if that makes any difference.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 11 Apr 2013 14:34:48 GMT</pubDate>
    <dc:creator>Ricky S</dc:creator>
    <dc:date>2013-04-11T14:34:48Z</dc:date>
    <item>
      <title>Bandwidth throttling via QoS</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/bandwidth-throttling-via-qos/m-p/2187123#M212289</link>
      <description>&lt;P&gt;Hi folks, I am fairly new to the world of QoS. Although I have a basic understanding of what it is, I don't have any real experience in implementing it in production network. We have a new requirement between two of our major offices located in Chicago and Toronto where they will be replicating large amount of data between each other on a nightly basis. We checked with the vendor of the replication software/server and there is no way to throttle the bandwidth usage in software. They said this is usually done via QoS.&lt;/P&gt;&lt;P&gt;I'm wondering if anyone can shine some light as to how I can configure my routers in both offices to throttle the bandwidth usage for traffic between these two specific servers. Would I need to use ACLs to do the QoS?&lt;/P&gt;</description>
      <pubDate>Tue, 05 Mar 2019 03:25:07 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/bandwidth-throttling-via-qos/m-p/2187123#M212289</guid>
      <dc:creator>Ricky S</dc:creator>
      <dc:date>2019-03-05T03:25:07Z</dc:date>
    </item>
    <item>
      <title>Re: Bandwidth throttling via QoS</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/bandwidth-throttling-via-qos/m-p/2187124#M212290</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One of the quickest solutions is this, and works pretty well imho. Use ACL's to class the traffic (this can be extended ACL's I believe too) e.g. if i wanted to limit to 3mb up and down, you can do this e.g. for servers 10.0.0.1, 172.16.0.1 from and towards each other:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #f7fafb; border-collapse: collapse; font-size: 12px; list-style: none; font-family: Arial, verdana, sans-serif;"&gt;&lt;EM style="border-collapse: collapse; list-style: none;"&gt;&lt;STRONG style="border-collapse: collapse; list-style: none;"&gt;### To match the traffic&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P style="background-color: #f7fafb; border-collapse: collapse; font-size: 12px; list-style: none; font-family: Arial, verdana, sans-serif;"&gt;ip access-list extended ACL_3Mbps&lt;/P&gt;&lt;P style="background-color: #f7fafb; border-collapse: collapse; font-size: 12px; list-style: none; font-family: Arial, verdana, sans-serif;"&gt;permit ip host 10.0.0.1 host 172.16.0.1&lt;/P&gt;&lt;P style="background-color: #f7fafb; border-collapse: collapse; font-size: 12px; list-style: none; font-family: Arial, verdana, sans-serif;"&gt;permit ip host 172.16.0.1 host 10.0.0.1&lt;/P&gt;&lt;P style="background-color: #f7fafb; border-collapse: collapse; font-size: 12px; list-style: none; font-family: Arial, verdana, sans-serif;"&gt;!&lt;/P&gt;&lt;P style="background-color: #f7fafb; border-collapse: collapse; font-size: 12px; list-style: none; font-family: Arial, verdana, sans-serif;"&gt;&lt;EM style="border-collapse: collapse; list-style: none;"&gt;&lt;STRONG style="border-collapse: collapse; list-style: none;"&gt;### Class the traffic&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P style="background-color: #f7fafb; border-collapse: collapse; font-size: 12px; list-style: none; font-family: Arial, verdana, sans-serif;"&gt;class-map Link_3Mbps&lt;/P&gt;&lt;P style="background-color: #f7fafb; border-collapse: collapse; font-size: 12px; list-style: none; font-family: Arial, verdana, sans-serif;"&gt;match access-group ACL_3Mbps&lt;/P&gt;&lt;P style="background-color: #f7fafb; border-collapse: collapse; font-size: 12px; list-style: none; font-family: Arial, verdana, sans-serif;"&gt;!&lt;/P&gt;&lt;P style="background-color: #f7fafb; border-collapse: collapse; font-size: 12px; list-style: none; font-family: Arial, verdana, sans-serif;"&gt;&lt;EM style="border-collapse: collapse; list-style: none;"&gt;&lt;STRONG style="border-collapse: collapse; list-style: none;"&gt;### Apply policy against the class (type of traffic specified by your class-map)&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P style="background-color: #f7fafb; border-collapse: collapse; font-size: 12px; list-style: none; font-family: Arial, verdana, sans-serif;"&gt;policy-map Policy_3Mbps&lt;/P&gt;&lt;P style="background-color: #f7fafb; border-collapse: collapse; font-size: 12px; list-style: none; font-family: Arial, verdana, sans-serif;"&gt;class Link_3Mbps&lt;/P&gt;&lt;P style="background-color: #f7fafb; border-collapse: collapse; font-size: 12px; list-style: none; font-family: Arial, verdana, sans-serif;"&gt;police 3000000 8000 exceed-action drop &lt;EM&gt;(8000 is the burst rate)&lt;/EM&gt;&lt;/P&gt;&lt;P style="background-color: #f7fafb; border-collapse: collapse; font-size: 12px; list-style: none; font-family: Arial, verdana, sans-serif;"&gt;!&lt;/P&gt;&lt;P style="background-color: #f7fafb; border-collapse: collapse; font-size: 12px; list-style: none; font-family: Arial, verdana, sans-serif;"&gt;interface gigabitethernet1/0&lt;/P&gt;&lt;P style="background-color: #f7fafb; border-collapse: collapse; font-size: 12px; list-style: none; font-family: Arial, verdana, sans-serif;"&gt;&lt;STRONG style="border-collapse: collapse; list-style: none;"&gt;&lt;EM style="border-collapse: collapse; list-style: none;"&gt;### Applies the policies inbound and outbound, both directions&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="background-color: #f7fafb; border-collapse: collapse; font-size: 12px; list-style: none; font-family: Arial, verdana, sans-serif;"&gt;service-policy input Policy_3Mbps&lt;/P&gt;&lt;P style="background-color: #f7fafb; border-collapse: collapse; font-size: 12px; list-style: none; font-family: Arial, verdana, sans-serif;"&gt;service-policy output Policy_3Mbps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where the ACL is you can specify source and destination or just source or source and port depending on how you configure your ACL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Link for your reference:&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://www.cisco.com/en/US/docs/ios/12_2/qos/configuration/guide/qcfpoli_ps1835_TSD_Products_Configuration_Guide_Chapter.html#wp1006389" rel="nofollow"&gt;http://www.cisco.com/en/US/docs/ios/12_2/qos/configuration/guide/qcfpoli_ps1835_TSD_Products_Configuration_Guide_Chapter.html#wp1006389&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Mar 2013 18:28:01 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/bandwidth-throttling-via-qos/m-p/2187124#M212290</guid>
      <dc:creator>Bilal Nawaz</dc:creator>
      <dc:date>2013-03-26T18:28:01Z</dc:date>
    </item>
    <item>
      <title>Bandwidth throttling via QoS</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/bandwidth-throttling-via-qos/m-p/2187125#M212291</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Perfect. I will test that out and report back. Thanks Bilal. Much appreciated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Mar 2013 18:33:17 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/bandwidth-throttling-via-qos/m-p/2187125#M212291</guid>
      <dc:creator>Ricky S</dc:creator>
      <dc:date>2013-03-26T18:33:17Z</dc:date>
    </item>
    <item>
      <title>Bandwidth throttling via QoS</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/bandwidth-throttling-via-qos/m-p/2187126#M212292</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bilal, thanks once again. One question I do have is why do we need to apply the service policy both for inbound and outbound traffic? Wouldn't the outbound traffic be policed by the inbound rule on the other side?&lt;/P&gt;&lt;P&gt;Both offices are connecting to each other over an IPSEC tunnel. I am going to apply the service policy on the tunnel interface on each side.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Mar 2013 18:54:26 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/bandwidth-throttling-via-qos/m-p/2187126#M212292</guid>
      <dc:creator>Ricky S</dc:creator>
      <dc:date>2013-03-26T18:54:26Z</dc:date>
    </item>
    <item>
      <title>Re: Bandwidth throttling via QoS</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/bandwidth-throttling-via-qos/m-p/2187127#M212293</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rick, I only stated inbound and outbound as an example. But if you have this applied outbound in both directions you should be fine.&lt;/P&gt;&lt;P&gt;I'm not sure about applying to the tunnel interfaces - should work since the sources will be coming from the tunnel interfaces, I've never tried that before. Let us know how it goes &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.cisco.com/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Mar 2013 19:04:22 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/bandwidth-throttling-via-qos/m-p/2187127#M212293</guid>
      <dc:creator>Bilal Nawaz</dc:creator>
      <dc:date>2013-03-26T19:04:22Z</dc:date>
    </item>
    <item>
      <title>Re: Bandwidth throttling via QoS</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/bandwidth-throttling-via-qos/m-p/2187128#M212294</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;EM&gt;&lt;STRONG&gt;Disclaimer&lt;/STRONG&gt;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;EM&gt;The&amp;nbsp; Author of this posting offers the information contained within this&amp;nbsp; posting without consideration and with the reader's understanding that&amp;nbsp; there's no implied or expressed suitability or fitness for any purpose.&amp;nbsp; Information provided is for informational purposes only and should not&amp;nbsp; be construed as rendering professional advice of any kind. Usage of this&amp;nbsp; posting's information is solely at reader's own risk.&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;STRONG&gt;&lt;EM&gt;Liability Disclaimer&lt;/EM&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;EM&gt;In&amp;nbsp; no event shall Author be liable for any damages whatsoever (including,&amp;nbsp; without limitation, damages for loss of use, data or profit) arising out&amp;nbsp; of the use or inability to use the posting's information even if Author&amp;nbsp; has been advised of the possibility of such damage.&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Posting&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As Bilal has shown, one option is to police or rate-limit the replication traffic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Another technique is to use QoS to prioritize traffic.&amp;nbsp; In this case, you might de-prioritize the replication traffic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The big difference between the two techniques, policing traffic limits the replication rate even when there's available bandwidth.&amp;nbsp; Further, if you increase the limit to you might be adverse to other traffic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Depending on your replication service requirement are, sometimes even background bandwidth reservation is sufficient.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;e.g.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;policy-map Sample&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class-map replication&lt;/P&gt;&lt;P&gt;bandwidth percent 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the above, you'll need to define how replication is matched.&amp;nbsp; It might be by hosts, other packets characteristics or some combination.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unlike policing, which can be used in or out, prioritization can only be used outbound (i.e. you configure it on both sides' egress).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Mar 2013 09:20:44 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/bandwidth-throttling-via-qos/m-p/2187128#M212294</guid>
      <dc:creator>Joseph W. Doherty</dc:creator>
      <dc:date>2013-03-27T09:20:44Z</dc:date>
    </item>
    <item>
      <title>Bandwidth throttling via QoS</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/bandwidth-throttling-via-qos/m-p/2187129#M212295</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hi Joseph, thanks for the post. I will look into the QoS as it definitely sounds interesting. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Mar 2013 14:13:47 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/bandwidth-throttling-via-qos/m-p/2187129#M212295</guid>
      <dc:creator>Ricky S</dc:creator>
      <dc:date>2013-03-27T14:13:47Z</dc:date>
    </item>
    <item>
      <title>Bandwidth throttling via QoS</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/bandwidth-throttling-via-qos/m-p/2187130#M212296</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hi Bilal, I ran into a small issue as I was testing the above solution you recommended. Router doesn't have the service-policy input option. Below is what I see.&lt;/P&gt;&lt;P&gt;RTRCOREQ9002(config)#int tunnel 0&lt;/P&gt;&lt;P&gt;RTRCOREQ9002(config-if)#service-policy ?&lt;/P&gt;&lt;P&gt;type&amp;nbsp; type of the policy-map&lt;/P&gt;&lt;P&gt;RTRCOREQ9002(config-if)#service-policy type ?&lt;/P&gt;&lt;P&gt;&amp;nbsp; access-control&amp;nbsp; access-control specific policy-map&lt;/P&gt;&lt;P&gt;RTRCOREQ9002(config-if)#service-policy type access-control input Policy_20Mbps &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;policy map should be of same type&lt;SPAN id="mce_marker"&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Apr 2013 23:40:50 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/bandwidth-throttling-via-qos/m-p/2187130#M212296</guid>
      <dc:creator>Ricky S</dc:creator>
      <dc:date>2013-04-10T23:40:50Z</dc:date>
    </item>
    <item>
      <title>Re: Bandwidth throttling via QoS</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/bandwidth-throttling-via-qos/m-p/2187131#M212297</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, what router are you configuring on? I'm not so sure about the options you have here, I haven't seen them before. Could you kindly show the options you get when you do this please:&lt;BR /&gt;&lt;BR /&gt;RTRCOREQ9002(config-if)#service-policy type policy-map ?&lt;BR /&gt;&lt;BR /&gt;Sent from Cisco Technical Support iPhone App&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Apr 2013 04:39:30 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/bandwidth-throttling-via-qos/m-p/2187131#M212297</guid>
      <dc:creator>Bilal Nawaz</dc:creator>
      <dc:date>2013-04-11T04:39:30Z</dc:date>
    </item>
    <item>
      <title>Bandwidth throttling via QoS</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/bandwidth-throttling-via-qos/m-p/2187132#M212298</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Configuring it on a Cisco 2951 running 2951-universalk9-mz.SPA.151-4.M5.bin&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It doesn't give me the policy-map option (see below)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RTRCOREQ9001(config-if)#service-policy type ?&lt;BR /&gt;&amp;nbsp; access-control&amp;nbsp; access-control specific policy-map&lt;/P&gt;&lt;P&gt;RTRCOREQ9001(config-if)#service-policy type policy-map ?&lt;BR /&gt;% Unrecognized command&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Apr 2013 14:33:51 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/bandwidth-throttling-via-qos/m-p/2187132#M212298</guid>
      <dc:creator>Ricky S</dc:creator>
      <dc:date>2013-04-11T14:33:51Z</dc:date>
    </item>
    <item>
      <title>Bandwidth throttling via QoS</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/bandwidth-throttling-via-qos/m-p/2187133#M212299</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Also note I am configuring this on a tunnel interface, if that makes any difference.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Apr 2013 14:34:48 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/bandwidth-throttling-via-qos/m-p/2187133#M212299</guid>
      <dc:creator>Ricky S</dc:creator>
      <dc:date>2013-04-11T14:34:48Z</dc:date>
    </item>
    <item>
      <title>Bandwidth throttling via QoS</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/bandwidth-throttling-via-qos/m-p/2187134#M212300</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rick,&lt;/P&gt;&lt;P&gt;I was able to do this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NPEVG01#show ver&lt;/P&gt;&lt;P&gt;Cisco IOS Software, C2900 Software (C2900-UNIVERSALK9-M), Version 15.1(4)M1, RELEASE SOFTWARE (fc1)&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Technical Support: &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://www.cisco.com/techsupport"&gt;http://www.cisco.com/techsupport&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Copyright (c) 1986-2011 by Cisco Systems, Inc.&lt;/P&gt;&lt;P&gt;Compiled Tue 14-Jun-11 19:25 by prod_rel_team&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ROM: System Bootstrap, Version 15.0(1r)M9, RELEASE SOFTWARE (fc1)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SQPNPEVG01 uptime is 8 weeks, 6 days, 23 hours, 22 minutes&lt;/P&gt;&lt;P&gt;System returned to ROM by reload at 15:47:53 UTC Thu Feb 7 2013&lt;/P&gt;&lt;P&gt;System restarted at 15:49:12 UTC Thu Feb 7 2013&lt;/P&gt;&lt;P&gt;System image file is "flash0:c2900-universalk9-mz.SPA.151-4.M1.bin"&lt;/P&gt;&lt;P&gt;Last reload type: Normal Reload&lt;/P&gt;&lt;P&gt;Last reload reason: Reload Command&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This product contains cryptographic features and is subject to United&lt;/P&gt;&lt;P&gt;States and local country laws governing import, export, transfer and&lt;/P&gt;&lt;P&gt;use. Delivery of Cisco cryptographic products does not imply&lt;/P&gt;&lt;P&gt;third-party authority to import, export, distribute or use encryption.&lt;/P&gt;&lt;P&gt;Importers, exporters, distributors and users are responsible for&lt;/P&gt;&lt;P&gt;compliance with U.S. and local country laws. By using this product you&lt;/P&gt;&lt;P&gt;agree to comply with applicable laws and regulations. If you are unable&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NPEVG01#show run int t0&lt;/P&gt;&lt;P&gt;Building configuration...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Current configuration : 95 bytes&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;interface Tunnel0&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; no ip address&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; service-policy input TEST&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; service-policy output TEST&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;end&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My config looks like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class-map match-all TEST&lt;/P&gt;&lt;P&gt; match access-group name ACL_TEST&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;policy-map TEST&lt;/P&gt;&lt;P&gt; class TEST&lt;/P&gt;&lt;P&gt;&amp;nbsp; police cir 3000000 bc 8000&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; conform-action transmit&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; exceed-action drop&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;ip access-list extended ACL_TEST&lt;/P&gt;&lt;P&gt; permit ip any any&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;interface Tunnel0&lt;/P&gt;&lt;P&gt; no ip address&lt;/P&gt;&lt;P&gt; service-policy input TEST&lt;/P&gt;&lt;P&gt; service-policy output TEST&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if this is the template you are using. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please rate useful posts and remember to mark any solved questions as answered. Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Apr 2013 15:11:49 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/bandwidth-throttling-via-qos/m-p/2187134#M212300</guid>
      <dc:creator>Bilal Nawaz</dc:creator>
      <dc:date>2013-04-11T15:11:49Z</dc:date>
    </item>
    <item>
      <title>Re:Bandwidth throttling via QoS</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/bandwidth-throttling-via-qos/m-p/2187135#M212301</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&lt;BR /&gt;Personally i would police ingress from your lan and shape on your wan interface ( only necessary when rate-limiting your wan link)&lt;BR /&gt;&lt;BR /&gt;another way has joseph has suggested is to mark your server to server traffic and other traffic (acl is possible) and give them a percentage (total max off my head i think is 99%) need to have at 1% for class deafult which if isnt used would be shared between thee two defined classes you specify.&lt;BR /&gt;&lt;BR /&gt;res&lt;BR /&gt;paul&lt;BR /&gt;&lt;BR /&gt;Sent from Cisco Technical Support Android App&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Apr 2013 16:13:35 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/bandwidth-throttling-via-qos/m-p/2187135#M212301</guid>
      <dc:creator>paul driver</dc:creator>
      <dc:date>2013-04-11T16:13:35Z</dc:date>
    </item>
    <item>
      <title>Re:Bandwidth throttling via QoS</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/bandwidth-throttling-via-qos/m-p/2187136#M212302</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; That's interesting, same still doesn't working for me on the Tunnel interfaces. I was able to configure it on the LAN interface and that seems to be working now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your assistance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Apr 2013 03:08:04 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/bandwidth-throttling-via-qos/m-p/2187136#M212302</guid>
      <dc:creator>Ricky S</dc:creator>
      <dc:date>2013-04-12T03:08:04Z</dc:date>
    </item>
    <item>
      <title>Re:Bandwidth throttling via QoS</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/bandwidth-throttling-via-qos/m-p/2187137#M212303</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Paul thanks. I was able to configure it on the LAN interface and it seems to be working. Can you please let me know what you mean by "shape on your WAN interface"? I have applied the policing service-policy on the inbout traffic from the LAN side on both routers and that seems to be working. Is there anything else that I should do on the WAN interface?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Apr 2013 03:09:57 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/bandwidth-throttling-via-qos/m-p/2187137#M212303</guid>
      <dc:creator>Ricky S</dc:creator>
      <dc:date>2013-04-12T03:09:57Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Bandwidth throttling via QoS</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/bandwidth-throttling-via-qos/m-p/2187138#M212304</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, the differences between both policing and shaping are here: &lt;A href="http://www.cisco.com/en/US/tech/tk543/tk545/technologies_tech_note09186a00800a3a25.shtml" target="_blank"&gt;http://www.cisco.com/en/US/tech/tk543/tk545/technologies_tech_note09186a00800a3a25.shtml&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Class based shaping:&lt;BR /&gt;&lt;BR /&gt;match access-group name ACL_TEST&lt;BR /&gt;!&lt;BR /&gt;!&lt;BR /&gt;policy-map TEST&lt;BR /&gt;class TEST&lt;BR /&gt; Shape average 3000000&lt;BR /&gt; Shape peak 4000000&lt;BR /&gt;!&lt;BR /&gt;ip access-list extended ACL_TEST&lt;BR /&gt;permit ip any any&lt;BR /&gt;!&lt;BR /&gt;interface Tunnel0&lt;BR /&gt;service-policy output TEST&lt;BR /&gt;&lt;BR /&gt;The above example shows to shape traffic to ensure 3000000 kbps with a max of 4000000kbps limit and usable if the bandwidth is available.&lt;BR /&gt;&lt;BR /&gt;If you want to take the option of specifying the percentage of the bandwidth to be used instead of having the shape command you can do:&lt;BR /&gt;&lt;BR /&gt;policy-map TEST&lt;BR /&gt;class TEST&lt;BR /&gt; Bandwidth percent 40&lt;BR /&gt; Shape peak 4000000&lt;BR /&gt;&lt;BR /&gt;Ensure a bandwidth of 40% but allowing throughput of 4000000 Kbps only if enough bandwidth is available&lt;BR /&gt;&lt;BR /&gt;So you could take these options and applying to outbound on the tunnel interface. Although by the sounds of it, the inbound policing sounds like its working.&lt;BR /&gt;&lt;BR /&gt;Obviously class the traffic as close as possible with your ACLs, unlike my 'catch anything' &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt; It's strange that it doesn't work for you, perhaps try shaping on the tunnel interface and see if that works.&lt;BR /&gt;&lt;BR /&gt;Hope this helps&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.cisco.com/en/US/docs/ios-xml/ios/qos/command/send_qdm_message_through_show_atm_bundle_svc_statistics.html#GUID-989CB240-829E-4075-B2AA-3A0C5E3A2CAB" target="_blank"&gt;http://www.cisco.com/en/US/docs/ios-xml/ios/qos/command/send_qdm_message_through_show_atm_bundle_svc_statistics.html#GUID-989CB240-829E-4075-B2AA-3A0C5E3A2CAB&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Sent from Cisco Technical Support iPhone App&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Apr 2013 05:35:44 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/bandwidth-throttling-via-qos/m-p/2187138#M212304</guid>
      <dc:creator>Bilal Nawaz</dc:creator>
      <dc:date>2013-04-12T05:35:44Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Bandwidth throttling via QoS</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/bandwidth-throttling-via-qos/m-p/2187139#M212305</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;Shaping comes into play on your routers when your physical wan lines exceeds the your traffic rate by the ISP&amp;nbsp; or your neighboring site- eg: your access rate is 2mb but your&amp;nbsp; CIR ( committed information rate) is 1MB.&amp;nbsp; or your CIR is 2mb and Toronto is 1mb.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So this means you need to send traffic 1/2 of the time to avoid egress blocking ( Chicago over time can overwhelm the link to Toronto as its CIR is lower then yours), This is where shaping can come into play to shape the link the same at both ends.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can shape an average/peak/percent/rate/percent/percent remaining)&amp;nbsp; - And all are different&amp;nbsp; but &lt;STRONG&gt;shape average&lt;/STRONG&gt; and &lt;STRONG&gt;Shape peak &lt;/STRONG&gt;allow bursting of traffic ( Committed burst =BC &amp;amp; Excessive bursts=BE with a defined Time Interval = TC&amp;nbsp; &lt;/P&gt;&lt;P&gt;Shape value = bps&lt;BR /&gt;Bc/Be value =bytes per second&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;Shaping average &amp;amp; peak tc/bc/values&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Bc=Tc*CIR/8&lt;/P&gt;&lt;P&gt;Tc=Bc/Shaped rate(CIR&lt;/P&gt;&lt;P&gt;Be=Bc&lt;/P&gt;&lt;P&gt;TC= 0.125 default&lt;/P&gt;&lt;P&gt;TC= 0.025 for lower 320kps&lt;/P&gt;&lt;P&gt;TC= 0.010 for sensitive applications&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;Shape average &lt;/SPAN&gt;( default BC no BE)&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Shape average &lt;/STRONG&gt;&lt;STRONG&gt;1024000&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Shape average 1024000(bits) bc of 16000(bytes) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This would send 16K bytes every .125&amp;nbsp; of a secs = 128000 byes *8 =&lt;STRONG&gt;1024000&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;﻿Shape peak&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Shape peak works a bit differently as it allows both Bc&amp;amp; Be to be sent over the TC&lt;SPAN style="text-decoration: underline;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Shape peak 512000 &lt;/STRONG&gt;&lt;STRONG&gt;(shaping at 1024000)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Shape peak 512000 (bits) bc of 8000(bytes)&amp;nbsp; Be 8000(bytes) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;512000 (1+8000/8000) = &lt;STRONG&gt;1024000&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;res&lt;/P&gt;&lt;P&gt;Paul&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please don't forget to rate any posts that have been helpful. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Apr 2013 08:21:45 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/bandwidth-throttling-via-qos/m-p/2187139#M212305</guid>
      <dc:creator>paul driver</dc:creator>
      <dc:date>2013-04-12T08:21:45Z</dc:date>
    </item>
    <item>
      <title>Re:Bandwidth throttling via QoS</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/bandwidth-throttling-via-qos/m-p/2187140#M212306</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;wow great info here guys, you have opened my eyes to a whole new world. Thank you all for that.&lt;/P&gt;&lt;P&gt;One quick question I do have is that I have an ACL with 6 hosts on both sides (Chicago and Toronto) that replicate data between each other. If I police the bandwidth to 20Meg and apply it on an interface, does that bandwidth get shared among the 6 hosts or does each host get 20Meg?&lt;SPAN id="mce_marker"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 13 Apr 2013 14:42:16 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/bandwidth-throttling-via-qos/m-p/2187140#M212306</guid>
      <dc:creator>Ricky S</dc:creator>
      <dc:date>2013-04-13T14:42:16Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Bandwidth throttling via QoS</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/bandwidth-throttling-via-qos/m-p/2187141#M212307</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, Of what I understand, it applies to everything within the ACL. So all 6 have to share 20 megs&lt;BR /&gt;&lt;BR /&gt;Anything matching the class will need to conform within what you have set&lt;BR /&gt;&lt;BR /&gt;Hope this helps&lt;BR /&gt;&lt;BR /&gt;Sent from Cisco Technical Support iPhone App&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 13 Apr 2013 14:45:30 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/bandwidth-throttling-via-qos/m-p/2187141#M212307</guid>
      <dc:creator>Bilal Nawaz</dc:creator>
      <dc:date>2013-04-13T14:45:30Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Bandwidth throttling via QoS</title>
      <link>https://community.cisco.com/t5/routing-and-sd-wan/bandwidth-throttling-via-qos/m-p/2187142#M212308</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&lt;BR /&gt;&lt;BR /&gt;Whatever is matched in class-map and are defined in a policy-map that is policed will be policed at that rate.&lt;BR /&gt;&lt;BR /&gt;FYI-&lt;BR /&gt;You can police/shape on per class or class class-default or both.&lt;BR /&gt;And mark/classify within these classes via acl's/protocol type/ip precedence/dscp/cos values&lt;BR /&gt;Then bind these together with policy-maps which can be nested if necessary or on their own&lt;BR /&gt;&lt;BR /&gt;These policy-maps then can be serviced on the necessary interfaces via service input/output policies&lt;BR /&gt;&lt;BR /&gt;You can also introduce congestion avoidance to prohibit something called tail drop .&lt;BR /&gt;&lt;BR /&gt;I would suggest Ricky , if you would like to dive deeper into Qos then check out the cco docs on at cisco support&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.cisco.com/en/US/docs/ios-xml/ios/qos/config_library/12-4/qos-12-4-library.html" target="_blank"&gt;http://www.cisco.com/en/US/docs/ios-xml/ios/qos/config_library/12-4/qos-12-4-library.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Res&lt;BR /&gt;paul&lt;BR /&gt;&lt;BR /&gt;Sent from Cisco Technical Support iPad App&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 13 Apr 2013 20:34:43 GMT</pubDate>
      <guid>https://community.cisco.com/t5/routing-and-sd-wan/bandwidth-throttling-via-qos/m-p/2187142#M212308</guid>
      <dc:creator>paul driver</dc:creator>
      <dc:date>2013-04-13T20:34:43Z</dc:date>
    </item>
  </channel>
</rss>

