<?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 on specific TCP port. in ExtremeSwitching (EXOS/Switch Engine)</title>
    <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/qos-on-specific-tcp-port/m-p/47877#M12420</link>
    <description>Create Date: Jul  3 2012  6:51AM&lt;BR /&gt;
&lt;BR /&gt;
 Hi again and thanks for the information. &lt;BR /&gt;
&lt;BR /&gt;
 I still do not understand how to apply the policy. I have it on the switch, in a file called qos.pol. I want to enable it accross all of the ports on the switch. I am completely new at this - I don't know the command syntax very well. Your help is much appriciated!&lt;BR /&gt;
&lt;BR /&gt;
  (from Tyler_Dami)</description>
    <pubDate>Wed, 08 Jan 2014 05:54:00 GMT</pubDate>
    <dc:creator>EtherNation_Use</dc:creator>
    <dc:date>2014-01-08T05:54:00Z</dc:date>
    <item>
      <title>QoS on specific TCP port.</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/qos-on-specific-tcp-port/m-p/47872#M12415</link>
      <description>Create Date: Jun 28 2012 10:48AM&lt;BR /&gt;
&lt;BR /&gt;
 &lt;BR /&gt;
&lt;BR /&gt;
 I'm new, and need help setting a QoS profile for a specific TCP port. How would I set a profile that prioritized traffic to and from a specific ip port? For example give all traffic from TCP port 2000 a priority of qp3 on all physical ports of my switch? I am currently running a 450e.&lt;BR /&gt;
&lt;BR /&gt;
 Thanks, Tyler.&lt;BR /&gt;
&lt;BR /&gt;
  &lt;BR /&gt;
&lt;BR /&gt;
  (from Tyler_Dami)</description>
      <pubDate>Wed, 08 Jan 2014 05:54:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/qos-on-specific-tcp-port/m-p/47872#M12415</guid>
      <dc:creator>EtherNation_Use</dc:creator>
      <dc:date>2014-01-08T05:54:00Z</dc:date>
    </item>
    <item>
      <title>RE: QoS on specific TCP port.</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/qos-on-specific-tcp-port/m-p/47873#M12416</link>
      <description>Create Date: Jun 28 2012 11:29AM&lt;BR /&gt;
&lt;BR /&gt;
 This is what i've gathered from the internet.&lt;BR /&gt;
&lt;BR /&gt;
 create qosprofile qp2&lt;BR /&gt;
&lt;BR /&gt;
  create access-list smb tcp destination any ip-port range 445 445 source any ip-port range 445 445 permit qosprofile qp2 ports any&lt;BR /&gt;
&lt;BR /&gt;
 conf qosprofile egress qp2 minbw 0 maxbw 50 ports any&lt;BR /&gt;
&lt;BR /&gt;
 Would that work to restrict the bandwidth that windows file operation use?&lt;BR /&gt;
&lt;BR /&gt;
 Thanks!&lt;BR /&gt;
&lt;BR /&gt;
 &lt;BR /&gt;
&lt;BR /&gt;
  (from Tyler_Dami)</description>
      <pubDate>Wed, 08 Jan 2014 05:54:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/qos-on-specific-tcp-port/m-p/47873#M12416</guid>
      <dc:creator>EtherNation_Use</dc:creator>
      <dc:date>2014-01-08T05:54:00Z</dc:date>
    </item>
    <item>
      <title>RE: QoS on specific TCP port.</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/qos-on-specific-tcp-port/m-p/47874#M12417</link>
      <description>Create Date: Jun 28 2012 12:55PM&lt;BR /&gt;
&lt;BR /&gt;
Hey Tyler&lt;BR /&gt;
&lt;BR /&gt;
There are two types of access-lists in XOS dynamic and static.  Static ACLs require a policy file that has the entries for the type of traffic you want to look at.  Static ACLs will exist after a reboot dynamic will not and are usually done as part of a script where you want to affect traffic based on a network event.&lt;BR /&gt;
&lt;BR /&gt;
In this case I think what you want is a static script.  The policy file can be created on the switch using vi (if you are comfortable with vi) or created in a txt editor and TFTPed to the switch.&lt;BR /&gt;
&lt;BR /&gt;
You are correct that you first need to create a qosprofile.&lt;BR /&gt;
&lt;BR /&gt;
Create qosprofile qp2  (this adds the queue on all ports)&lt;BR /&gt;
&lt;BR /&gt;
Here's how the policy would be built.  Please look in the concepts guide for all of the options for the match and action modifiers.&lt;BR /&gt;
&lt;BR /&gt;
entry allow_tcp_2000_source {&lt;BR /&gt;
if {&lt;BR /&gt;
protocol tcp;&lt;BR /&gt;
source-port 2000;&lt;BR /&gt;
} then {&lt;BR /&gt;
permit;&lt;BR /&gt;
count tcp_2000_1;&lt;BR /&gt;
qosprofile qp2;&lt;BR /&gt;
}&lt;BR /&gt;
}&lt;BR /&gt;
entry allow_tcp_2000_dest {&lt;BR /&gt;
if {&lt;BR /&gt;
protocol tcp;&lt;BR /&gt;
destination-port 2000;&lt;BR /&gt;
} then {&lt;BR /&gt;
permit;&lt;BR /&gt;
count tcp_2000_2;&lt;BR /&gt;
qosprofile qp2;&lt;BR /&gt;
}&lt;BR /&gt;
}&lt;BR /&gt;
&lt;BR /&gt;
You can see if these ACLs are working by doing a show access-list counters in addition you can look on a port level at the qosmonitor using the show port 1 qosm&lt;BR /&gt;
&lt;BR /&gt;
Let me know if this helps.&lt;BR /&gt;
&lt;BR /&gt;
P  (from Paul_Russo)</description>
      <pubDate>Wed, 08 Jan 2014 05:54:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/qos-on-specific-tcp-port/m-p/47874#M12417</guid>
      <dc:creator>EtherNation_Use</dc:creator>
      <dc:date>2014-01-08T05:54:00Z</dc:date>
    </item>
    <item>
      <title>RE: QoS on specific TCP port.</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/qos-on-specific-tcp-port/m-p/47875#M12418</link>
      <description>Create Date: Jun 28 2012  8:47PM&lt;BR /&gt;
&lt;BR /&gt;
 Thanks! I really appriciate it. Once I get the policy uploaded, how do I activate it? Is there an online reasource with this information?&lt;BR /&gt;
&lt;BR /&gt;
 Thanks Again!,&lt;BR /&gt;
&lt;BR /&gt;
  &lt;BR /&gt;
&lt;BR /&gt;
 Tyler&lt;BR /&gt;
&lt;BR /&gt;
  (from Tyler_Dami)</description>
      <pubDate>Wed, 08 Jan 2014 05:54:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/qos-on-specific-tcp-port/m-p/47875#M12418</guid>
      <dc:creator>EtherNation_Use</dc:creator>
      <dc:date>2014-01-08T05:54:00Z</dc:date>
    </item>
    <item>
      <title>RE: QoS on specific TCP port.</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/qos-on-specific-tcp-port/m-p/47876#M12419</link>
      <description>Create Date: Jun 28 2012  8:53PM&lt;BR /&gt;
&lt;BR /&gt;
 conf access-list acldemo&lt;BR /&gt;
&lt;BR /&gt;
 &lt;OPTIONS&gt;&lt;BR /&gt;
&lt;BR /&gt;
   any             ANY HELP   ports           PORTS HELP   vlan            VLAN HELP   So; configure access-list acldemo ports 1-12  (from Richard_Porter)&lt;/OPTIONS&gt;</description>
      <pubDate>Wed, 08 Jan 2014 05:54:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/qos-on-specific-tcp-port/m-p/47876#M12419</guid>
      <dc:creator>EtherNation_Use</dc:creator>
      <dc:date>2014-01-08T05:54:00Z</dc:date>
    </item>
    <item>
      <title>RE: QoS on specific TCP port.</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/qos-on-specific-tcp-port/m-p/47877#M12420</link>
      <description>Create Date: Jul  3 2012  6:51AM&lt;BR /&gt;
&lt;BR /&gt;
 Hi again and thanks for the information. &lt;BR /&gt;
&lt;BR /&gt;
 I still do not understand how to apply the policy. I have it on the switch, in a file called qos.pol. I want to enable it accross all of the ports on the switch. I am completely new at this - I don't know the command syntax very well. Your help is much appriciated!&lt;BR /&gt;
&lt;BR /&gt;
  (from Tyler_Dami)</description>
      <pubDate>Wed, 08 Jan 2014 05:54:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/qos-on-specific-tcp-port/m-p/47877#M12420</guid>
      <dc:creator>EtherNation_Use</dc:creator>
      <dc:date>2014-01-08T05:54:00Z</dc:date>
    </item>
    <item>
      <title>RE: QoS on specific TCP port.</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/qos-on-specific-tcp-port/m-p/47878#M12421</link>
      <description>Create Date: Jul  3 2012  6:54AM&lt;BR /&gt;
&lt;BR /&gt;
 Hi again and thanks for the information. &lt;BR /&gt;
&lt;BR /&gt;
 I still do not understand how to apply the policy. I have it on the switch, in a file called qos.pol. I want to enable it accross all of the ports on the switch. I am completely new at this - I don't know the command syntax very well. Your help is much appriciated!&lt;BR /&gt;
&lt;BR /&gt;
  (from Tyler_Dami)</description>
      <pubDate>Wed, 08 Jan 2014 05:54:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/qos-on-specific-tcp-port/m-p/47878#M12421</guid>
      <dc:creator>EtherNation_Use</dc:creator>
      <dc:date>2014-01-08T05:54:00Z</dc:date>
    </item>
    <item>
      <title>RE: QoS on specific TCP port.</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/qos-on-specific-tcp-port/m-p/47879#M12422</link>
      <description>Create Date: Jul  3 2012  6:54AM&lt;BR /&gt;
&lt;BR /&gt;
 Hi again and thanks for the information. &lt;BR /&gt;
&lt;BR /&gt;
 I still do not understand how to apply the policy. I have it on the switch, in a file called qos.pol. I want to enable it accross all of the ports on the switch. I am completely new at this - I don't know the command syntax very well. Your help is much appriciated!&lt;BR /&gt;
&lt;BR /&gt;
  (from Tyler_Dami)</description>
      <pubDate>Wed, 08 Jan 2014 05:54:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/qos-on-specific-tcp-port/m-p/47879#M12422</guid>
      <dc:creator>EtherNation_Use</dc:creator>
      <dc:date>2014-01-08T05:54:00Z</dc:date>
    </item>
    <item>
      <title>RE: QoS on specific TCP port.</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/qos-on-specific-tcp-port/m-p/47880#M12423</link>
      <description>Create Date: Jul  3 2012  6:54AM&lt;BR /&gt;
&lt;BR /&gt;
 Hi again and thanks for the information. &lt;BR /&gt;
&lt;BR /&gt;
 I still do not understand how to apply the policy. I have it on the switch, in a file called qos.pol. I want to enable it accross all of the ports on the switch. I am completely new at this - I don't know the command syntax very well. Your help is much appriciated!&lt;BR /&gt;
&lt;BR /&gt;
  (from Tyler_Dami)</description>
      <pubDate>Wed, 08 Jan 2014 05:54:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/qos-on-specific-tcp-port/m-p/47880#M12423</guid>
      <dc:creator>EtherNation_Use</dc:creator>
      <dc:date>2014-01-08T05:54:00Z</dc:date>
    </item>
    <item>
      <title>RE: QoS on specific TCP port.</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/qos-on-specific-tcp-port/m-p/47881#M12424</link>
      <description>Create Date: Jul  3 2012  6:54AM&lt;BR /&gt;
&lt;BR /&gt;
 Hi again and thanks for the information. &lt;BR /&gt;
&lt;BR /&gt;
 I still do not understand how to apply the policy. I have it on the switch, in a file called qos.pol. I want to enable it accross all of the ports on the switch. I am completely new at this - I don't know the command syntax very well. Your help is much appriciated!&lt;BR /&gt;
&lt;BR /&gt;
  (from Tyler_Dami)</description>
      <pubDate>Wed, 08 Jan 2014 05:54:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/qos-on-specific-tcp-port/m-p/47881#M12424</guid>
      <dc:creator>EtherNation_Use</dc:creator>
      <dc:date>2014-01-08T05:54:00Z</dc:date>
    </item>
    <item>
      <title>RE: QoS on specific TCP port.</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/qos-on-specific-tcp-port/m-p/47882#M12425</link>
      <description>Create Date: Jul  3 2012  6:54AM&lt;BR /&gt;
&lt;BR /&gt;
 Hi again and thanks for the information. &lt;BR /&gt;
&lt;BR /&gt;
 I still do not understand how to apply the policy. I have it on the switch, in a file called qos.pol. I want to enable it accross all of the ports on the switch. I am completely new at this - I don't know the command syntax very well. Your help is much appriciated!&lt;BR /&gt;
&lt;BR /&gt;
  (from Tyler_Dami)</description>
      <pubDate>Wed, 08 Jan 2014 05:54:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/qos-on-specific-tcp-port/m-p/47882#M12425</guid>
      <dc:creator>EtherNation_Use</dc:creator>
      <dc:date>2014-01-08T05:54:00Z</dc:date>
    </item>
    <item>
      <title>RE: QoS on specific TCP port.</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/qos-on-specific-tcp-port/m-p/47883#M12426</link>
      <description>Create Date: Jul  3 2012  6:54AM&lt;BR /&gt;
&lt;BR /&gt;
 Hi again and thanks for the information. &lt;BR /&gt;
&lt;BR /&gt;
 I still do not understand how to apply the policy. I have it on the switch, in a file called qos.pol. I want to enable it accross all of the ports on the switch. I am completely new at this - I don't know the command syntax very well. Your help is much appriciated!&lt;BR /&gt;
&lt;BR /&gt;
  (from Tyler_Dami)</description>
      <pubDate>Wed, 08 Jan 2014 05:54:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/qos-on-specific-tcp-port/m-p/47883#M12426</guid>
      <dc:creator>EtherNation_Use</dc:creator>
      <dc:date>2014-01-08T05:54:00Z</dc:date>
    </item>
    <item>
      <title>RE: QoS on specific TCP port.</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/qos-on-specific-tcp-port/m-p/47884#M12427</link>
      <description>Create Date: Jul  3 2012  6:54AM&lt;BR /&gt;
&lt;BR /&gt;
 Hi again and thanks for the information. &lt;BR /&gt;
&lt;BR /&gt;
 I still do not understand how to apply the policy. I have it on the switch, in a file called qos.pol. I want to enable it accross all of the ports on the switch. I am completely new at this - I don't know the command syntax very well. Your help is much appriciated!&lt;BR /&gt;
&lt;BR /&gt;
  (from Tyler_Dami)</description>
      <pubDate>Wed, 08 Jan 2014 05:54:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/qos-on-specific-tcp-port/m-p/47884#M12427</guid>
      <dc:creator>EtherNation_Use</dc:creator>
      <dc:date>2014-01-08T05:54:00Z</dc:date>
    </item>
    <item>
      <title>RE: QoS on specific TCP port.</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/qos-on-specific-tcp-port/m-p/47885#M12428</link>
      <description>Create Date: Jul  3 2012  6:57AM&lt;BR /&gt;
&lt;BR /&gt;
 Hi again and thanks for the information. &lt;BR /&gt;
&lt;BR /&gt;
 I still do not understand how to apply the policy. I have it on the switch, in a file called qos.pol. I want to enable it accross all of the ports on the switch. I am completely new at this - I don't know the command syntax very well. Your help is much appriciated!&lt;BR /&gt;
&lt;BR /&gt;
  (from Tyler_Dami)</description>
      <pubDate>Wed, 08 Jan 2014 05:54:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/qos-on-specific-tcp-port/m-p/47885#M12428</guid>
      <dc:creator>EtherNation_Use</dc:creator>
      <dc:date>2014-01-08T05:54:00Z</dc:date>
    </item>
    <item>
      <title>RE: QoS on specific TCP port.</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/qos-on-specific-tcp-port/m-p/47886#M12429</link>
      <description>Create Date: Jul  3 2012  6:57AM&lt;BR /&gt;
&lt;BR /&gt;
 Hi again and thanks for the information. &lt;BR /&gt;
&lt;BR /&gt;
 I still do not understand how to apply the policy. I have it on the switch, in a file called qos.pol. I want to enable it accross all of the ports on the switch. I am completely new at this - I don't know the command syntax very well. Your help is much appriciated!&lt;BR /&gt;
&lt;BR /&gt;
  (from Tyler_Dami)</description>
      <pubDate>Wed, 08 Jan 2014 05:54:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/qos-on-specific-tcp-port/m-p/47886#M12429</guid>
      <dc:creator>EtherNation_Use</dc:creator>
      <dc:date>2014-01-08T05:54:00Z</dc:date>
    </item>
    <item>
      <title>RE: QoS on specific TCP port.</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/qos-on-specific-tcp-port/m-p/47887#M12430</link>
      <description>Create Date: Jul  3 2012  6:57AM&lt;BR /&gt;
&lt;BR /&gt;
 Hi again and thanks for the information. &lt;BR /&gt;
&lt;BR /&gt;
 I still do not understand how to apply the policy. I have it on the switch, in a file called qos.pol. I want to enable it accross all of the ports on the switch. I am completely new at this - I don't know the command syntax very well. Your help is much appriciated!&lt;BR /&gt;
&lt;BR /&gt;
  (from Tyler_Dami)</description>
      <pubDate>Wed, 08 Jan 2014 05:54:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/qos-on-specific-tcp-port/m-p/47887#M12430</guid>
      <dc:creator>EtherNation_Use</dc:creator>
      <dc:date>2014-01-08T05:54:00Z</dc:date>
    </item>
    <item>
      <title>RE: QoS on specific TCP port.</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/qos-on-specific-tcp-port/m-p/47888#M12431</link>
      <description>Create Date: Jul  3 2012  6:57AM&lt;BR /&gt;
&lt;BR /&gt;
 Hi again and thanks for the information. &lt;BR /&gt;
&lt;BR /&gt;
 I still do not understand how to apply the policy. I have it on the switch, in a file called qos.pol. I want to enable it accross all of the ports on the switch. I am completely new at this - I don't know the command syntax very well. Your help is much appriciated!&lt;BR /&gt;
&lt;BR /&gt;
  (from Tyler_Dami)</description>
      <pubDate>Wed, 08 Jan 2014 05:54:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/qos-on-specific-tcp-port/m-p/47888#M12431</guid>
      <dc:creator>EtherNation_Use</dc:creator>
      <dc:date>2014-01-08T05:54:00Z</dc:date>
    </item>
  </channel>
</rss>

