<?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 Re: QoS across VPN in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/qos-across-vpn/m-p/534607#M1055040</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the info, however, some of your commands are not functional in the CLI, like set dscp ef.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My 831 is using the following IOS:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Version 12.3(8)T11, RELEASE SOFTWARE (fc1)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THanks again.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 16 Jun 2006 13:44:37 GMT</pubDate>
    <dc:creator>millerjr</dc:creator>
    <dc:date>2006-06-16T13:44:37Z</dc:date>
    <item>
      <title>QoS across VPN</title>
      <link>https://community.cisco.com/t5/network-security/qos-across-vpn/m-p/534605#M1055038</link>
      <description>&lt;P&gt;I have a Cisco 831 Broadband router at my remote end.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At my main location I have a VPN 3005 concentrator.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;They are connected via a site-to-site tunnel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am running data and VOIP across the tunnel.  The VOIP not using Cisco, but another national 3d party telco provider.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do I set up QoS across the tunnel?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;</description>
      <pubDate>Fri, 21 Feb 2020 08:58:21 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/qos-across-vpn/m-p/534605#M1055038</guid>
      <dc:creator>millerjr</dc:creator>
      <dc:date>2020-02-21T08:58:21Z</dc:date>
    </item>
    <item>
      <title>Re: QoS across VPN</title>
      <link>https://community.cisco.com/t5/network-security/qos-across-vpn/m-p/534606#M1055039</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A 3005 does not really support qos, especially per flow like you need to properly prioritize the voip traffic. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, since the 3005 is probably not the location that is bandwidth constrained (it better had not be) you can prioritize the traffic at the spoke (the 831).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On the 831 use the basic mqc (modular qos command line) to mark on the way into each interface, and use llq on the way out)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so on f0/0 of the router you mark such as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class-map voice_mark&lt;/P&gt;&lt;P&gt;match protocol rtp&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(or match access-group XXX) if your voip application just uses a bunch of specific udp ports, etc)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;policy-map qosmarking&lt;/P&gt;&lt;P&gt;class voice_mark&lt;/P&gt;&lt;P&gt;set dscp ef&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class-map voice1&lt;/P&gt;&lt;P&gt;match dscp ef&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;policy-map qosaction&lt;/P&gt;&lt;P&gt;class voice1&lt;/P&gt;&lt;P&gt;!here you need to determine how much of your wan&lt;/P&gt;&lt;P&gt;!will voice get to "OWN". After this level, the&lt;/P&gt;&lt;P&gt;!packets will be policed in this config, becareful&lt;/P&gt;&lt;P&gt;priority 384&lt;/P&gt;&lt;P&gt;class class-default&lt;/P&gt;&lt;P&gt;fair-queue&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;int f0/0&lt;/P&gt;&lt;P&gt;!prevent crypto from hiding markings, etc&lt;/P&gt;&lt;P&gt;!if you have a tunnel0 interface use there&lt;/P&gt;&lt;P&gt;!if the tunnel interface is used for vpn&lt;/P&gt;&lt;P&gt;qos pre-classify&lt;/P&gt;&lt;P&gt;ip nbar protocol-discovery&lt;/P&gt;&lt;P&gt;service-policy input qosmarking&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;int s0/0&lt;/P&gt;&lt;P&gt;service-policy output qosaction&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now do the same thing for the inbound, only since vpn traffic is coming from the 3005 you cant really go by markings, as the 3005 wont mark traffic that way... You just need to make an egress policy on f0/0 to boost voice and limit everything else... so using incoming ip source of 3005 network's voip server is bests...&lt;/P&gt;&lt;P&gt;! 1.1.1.1 is the voip host in the 3005 side of the&lt;/P&gt;&lt;P&gt;! tunnel&lt;/P&gt;&lt;P&gt;access-list 101 permit ip host 1.1.1.1 any&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class-map incoming_voip&lt;/P&gt;&lt;P&gt;match access-group 101&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;policy-map incoming_traffic&lt;/P&gt;&lt;P&gt;class incoming_voip&lt;/P&gt;&lt;P&gt;priority 384&lt;/P&gt;&lt;P&gt;class class-default&lt;/P&gt;&lt;P&gt;fair-queue&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;int f0/0&lt;/P&gt;&lt;P&gt;service-policy output incoming_traffic&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENJOY!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and RATE POSTS!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Jun 2006 16:10:05 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/qos-across-vpn/m-p/534606#M1055039</guid>
      <dc:creator>jbrunner007</dc:creator>
      <dc:date>2006-06-15T16:10:05Z</dc:date>
    </item>
    <item>
      <title>Re: QoS across VPN</title>
      <link>https://community.cisco.com/t5/network-security/qos-across-vpn/m-p/534607#M1055040</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the info, however, some of your commands are not functional in the CLI, like set dscp ef.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My 831 is using the following IOS:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Version 12.3(8)T11, RELEASE SOFTWARE (fc1)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THanks again.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2006 13:44:37 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/qos-across-vpn/m-p/534607#M1055040</guid>
      <dc:creator>millerjr</dc:creator>
      <dc:date>2006-06-16T13:44:37Z</dc:date>
    </item>
    <item>
      <title>Re: QoS across VPN</title>
      <link>https://community.cisco.com/t5/network-security/qos-across-vpn/m-p/534608#M1055041</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ok, sorry I'm using a 2811 with 12.4&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try set ip dscp ef &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2006 15:54:44 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/qos-across-vpn/m-p/534608#M1055041</guid>
      <dc:creator>jbrunner007</dc:creator>
      <dc:date>2006-06-16T15:54:44Z</dc:date>
    </item>
  </channel>
</rss>

