


 



<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://docwiki.cisco.com/w/skins/common/feed.css?270"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://docwiki.cisco.com/w/index.php?title=Inbound_QoS_policy&amp;feed=atom&amp;action=history</id>
		<title>Inbound QoS policy - Revision history</title>
		<link rel="self" type="application/atom+xml" href="http://docwiki.cisco.com/w/index.php?title=Inbound_QoS_policy&amp;feed=atom&amp;action=history"/>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/w/index.php?title=Inbound_QoS_policy&amp;action=history"/>
		<updated>2013-06-19T19:42:01Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.16.0</generator>

	<entry>
		<id>http://docwiki.cisco.com/w/index.php?title=Inbound_QoS_policy&amp;diff=34540&amp;oldid=prev</id>
		<title>Jkratky at 17:14, 6 October 2010</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/w/index.php?title=Inbound_QoS_policy&amp;diff=34540&amp;oldid=prev"/>
				<updated>2010-10-06T17:14:52Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;table style=&quot;background-color: white; color:black;&quot;&gt;
			&lt;col class='diff-marker' /&gt;
			&lt;col class='diff-content' /&gt;
			&lt;col class='diff-marker' /&gt;
			&lt;col class='diff-content' /&gt;
		&lt;tr valign='top'&gt;
		&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;Revision as of 17:14, 6 October 2010&lt;/td&gt;
		&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 63:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 63:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt;-&lt;/td&gt;&lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;[[Category: &lt;del class=&quot;diffchange diffchange-inline&quot;&gt;WAN &lt;/del&gt;Configuration Examples]]&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;[[Category: &lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;QoS &lt;/ins&gt;Configuration Examples]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;</summary>
		<author><name>Jkratky</name></author>	</entry>

	<entry>
		<id>http://docwiki.cisco.com/w/index.php?title=Inbound_QoS_policy&amp;diff=30397&amp;oldid=prev</id>
		<title>Sakella: This example can be used to configure QoS to mark the inbound packets</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/w/index.php?title=Inbound_QoS_policy&amp;diff=30397&amp;oldid=prev"/>
				<updated>2010-06-03T22:55:42Z</updated>
		
		<summary type="html">&lt;p&gt;This example can be used to configure QoS to mark the inbound packets&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;==Introduction==&lt;br /&gt;
This is an example  for inbound QoS policy to mark incoming packets&lt;br /&gt;
&lt;br /&gt;
==Design==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===LAN===&amp;gt;==router---internet&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
==Configuration==&lt;br /&gt;
ip access-list extended VoIP-RTCP&lt;br /&gt;
 permit udp any any range 16384 32767&lt;br /&gt;
!&lt;br /&gt;
ip access-list extended Voice-Control&lt;br /&gt;
 permit tcp any any eq 1720&lt;br /&gt;
 permit tcp any any range 11000 11999&lt;br /&gt;
 permit udp any any eq 2427&lt;br /&gt;
 permit tcp any any eq 2428&lt;br /&gt;
 permit tcp any any range 2000 2002&lt;br /&gt;
 permit udp any any eq 1719&lt;br /&gt;
 permit udp any any eq 5060&lt;br /&gt;
!&lt;br /&gt;
class-map match-any real-time&lt;br /&gt;
 match protocol rtp&lt;br /&gt;
 match protocol icmp&lt;br /&gt;
 match access-group name VoIP-RTCP&lt;br /&gt;
class-map match-any mission-critical&lt;br /&gt;
 match protocol sqlnet&lt;br /&gt;
 match access-group name Voice-Control&lt;br /&gt;
class-map match-all interactive&lt;br /&gt;
 match protocol citrix&lt;br /&gt;
class-map match-all bulk&lt;br /&gt;
 match protocol ftp&lt;br /&gt;
class-map match-any scavenger&lt;br /&gt;
  match protocol kazaa2&lt;br /&gt;
  match protocol napster&lt;br /&gt;
!&lt;br /&gt;
policy-map mark-nbar&lt;br /&gt;
 class real-time&lt;br /&gt;
  set dscp ef&lt;br /&gt;
 class mission-critical&lt;br /&gt;
  set dscp af31&lt;br /&gt;
 class interactive&lt;br /&gt;
  set dscp af21&lt;br /&gt;
 class bulk&lt;br /&gt;
  set dscp af11&lt;br /&gt;
 class scavenger&lt;br /&gt;
  set dscp cs1&lt;br /&gt;
 class class-default&lt;br /&gt;
  set dscp default&lt;br /&gt;
!&lt;br /&gt;
interface fastethernet0/1&lt;br /&gt;
 service-policy input mark-nbar&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Related show Commands==&lt;br /&gt;
&lt;br /&gt;
show policy-map interface fastethernet0/1&lt;br /&gt;
&lt;br /&gt;
==Related Information==&lt;br /&gt;
http://www.cisco.com/en/US/docs/ios/qos/configuration/guide/nbar_mqc_ps6350_TSD_Products_Configuration_Guide_Chapter.html#wp1055125&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: WAN Configuration Examples]]&lt;/div&gt;</summary>
		<author><name>Sakella</name></author>	</entry>

	</feed>