<?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: ACL for CobraNet traffic,  Ethernet protocol identifier (0x8819) in ExtremeSwitching (EXOS/Switch Engine)</title>
    <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/acl-for-cobranet-traffic-ethernet-protocol-identifier-0x8819/m-p/21398#M1486</link>
    <description>Hi Ron, were you able to get this working with JS or Brandon's suggestions?&lt;BR /&gt;</description>
    <pubDate>Tue, 14 Jun 2016 00:52:00 GMT</pubDate>
    <dc:creator>Drew_C</dc:creator>
    <dc:date>2016-06-14T00:52:00Z</dc:date>
    <item>
      <title>ACL for CobraNet traffic,  Ethernet protocol identifier (0x8819)</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/acl-for-cobranet-traffic-ethernet-protocol-identifier-0x8819/m-p/21395#M1483</link>
      <description>I work for an audio engineering company and thus have audio engineers constantly plugging the wrong things into the wrong ports and introducing various traffic to my network.  I'd like to put an ACL together to limit CobraNet traffic to one particular vlan only instead of having it constantly show up on desktop vlan(s).&lt;BR /&gt;
&lt;BR /&gt;
The Ehternet Protocol Identifier is 0x8819, I just don't know how to write an ACL using that information to catch the traffic.</description>
      <pubDate>Wed, 01 Jun 2016 05:01:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/acl-for-cobranet-traffic-ethernet-protocol-identifier-0x8819/m-p/21395#M1483</guid>
      <dc:creator>Ron_Prague</dc:creator>
      <dc:date>2016-06-01T05:01:00Z</dc:date>
    </item>
    <item>
      <title>RE: ACL for CobraNet traffic,  Ethernet protocol identifier (0x8819)</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/acl-for-cobranet-traffic-ethernet-protocol-identifier-0x8819/m-p/21396#M1484</link>
      <description>Hello Ron,&lt;BR /&gt;
&lt;BR /&gt;
     &lt;BR /&gt;
&lt;BR /&gt;
    You would have two ways to implement this :&lt;BR /&gt;
&lt;BR /&gt;
        If you use “dynamic ACL” [assuming you want to deny it on a  “desktop” vlan] , what you could do is &lt;BR /&gt;
&lt;BR /&gt;
    &lt;B&gt;# create the ACL rule&lt;/B&gt;&lt;BR /&gt;
&lt;BR /&gt;
    create access-list Cobranet-deny  "ethernet-type 0x8819;" "count cobranet-pkt; deny;"&lt;BR /&gt;
&lt;BR /&gt;
    &lt;B&gt;#for each desktop vlan&lt;/B&gt;&lt;BR /&gt;
&lt;BR /&gt;
    configure access-list add  "Cobranet-deny" first vlan "Desktop" ingress&lt;BR /&gt;
&lt;BR /&gt;
     &lt;BR /&gt;
&lt;BR /&gt;
    &lt;B&gt;X670-48x.8 # sh access-list dynamic  rule "Cobranet-deny" &lt;/B&gt;&lt;BR /&gt;
&lt;BR /&gt;
    entry Cobranet-deny { &lt;BR /&gt;
&lt;BR /&gt;
    if match all {&lt;BR /&gt;
&lt;BR /&gt;
        ethernet-type  0x8819 ;&lt;BR /&gt;
&lt;BR /&gt;
    } then {&lt;BR /&gt;
&lt;BR /&gt;
        count cobranet-pkt  ;&lt;BR /&gt;
&lt;BR /&gt;
        deny  ;&lt;BR /&gt;
&lt;BR /&gt;
    } }&lt;BR /&gt;
&lt;BR /&gt;
     &lt;BR /&gt;
&lt;BR /&gt;
    &lt;B&gt;X670-48x.9 # sh access-list dynamic  counter &lt;/B&gt;&lt;BR /&gt;
&lt;BR /&gt;
     Vlan  Name        Port   Direction   &lt;BR /&gt;
&lt;BR /&gt;
        Counter  Name                    Packet Count         Byte  Count           &lt;BR /&gt;
&lt;BR /&gt;
    ==================================================================&lt;BR /&gt;
&lt;BR /&gt;
    *                 *      ingress   &lt;BR /&gt;
&lt;BR /&gt;
        cobranet-pkt                    0&lt;BR /&gt;
&lt;BR /&gt;
     &lt;BR /&gt;
&lt;BR /&gt;
     &lt;BR /&gt;
&lt;BR /&gt;
    If you use a policy file, the ACL would probably look like this   &lt;BR /&gt;
&lt;BR /&gt;
     &lt;BR /&gt;
&lt;BR /&gt;
    # create a policy file&lt;BR /&gt;
&lt;BR /&gt;
    &lt;B&gt;X670-48x.17 # edit policy cobranet&lt;/B&gt;&lt;BR /&gt;
&lt;BR /&gt;
    # edit policy cobranet&lt;BR /&gt;
&lt;BR /&gt;
    entry  Cobranet {&lt;BR /&gt;
&lt;BR /&gt;
    if  {&lt;BR /&gt;
&lt;BR /&gt;
    ethernet-type  0x8819;&lt;BR /&gt;
&lt;BR /&gt;
    }  then {&lt;BR /&gt;
&lt;BR /&gt;
    deny  ;&lt;BR /&gt;
&lt;BR /&gt;
    count  cobranet;&lt;BR /&gt;
&lt;BR /&gt;
    }&lt;BR /&gt;
&lt;BR /&gt;
    }&lt;BR /&gt;
&lt;BR /&gt;
     &lt;BR /&gt;
&lt;BR /&gt;
    # apply the policy file to a vlan&lt;BR /&gt;
&lt;BR /&gt;
    &lt;B&gt;X670-48x.14 # configure access-list  cobranet vlan default&lt;/B&gt;&lt;BR /&gt;
&lt;BR /&gt;
    &lt;B&gt;X670-48x.15 # show access-list &lt;/B&gt;&lt;BR /&gt;
&lt;BR /&gt;
    Vlan Name     Port   Policy  Name           Dir      Rules  Dyn Rules &lt;BR /&gt;
&lt;BR /&gt;
    ===================================================================&lt;BR /&gt;
&lt;BR /&gt;
    Default       *       cobranet              ingress  1       1       &lt;BR /&gt;
&lt;BR /&gt;
     &lt;BR /&gt;
&lt;BR /&gt;
    &lt;B&gt;X670-48x.16 # show access-list counter  &lt;/B&gt;&lt;BR /&gt;
&lt;BR /&gt;
    Policy  Name       Vlan  Name        Port   Direction   &lt;BR /&gt;
&lt;BR /&gt;
        Counter  Name                    Packet Count         Byte  Count           &lt;BR /&gt;
&lt;BR /&gt;
    ==================================================================&lt;BR /&gt;
&lt;BR /&gt;
    cobranet           Default           *      ingress   &lt;BR /&gt;
&lt;BR /&gt;
        cobranet                        0&lt;BR /&gt;
&lt;BR /&gt;
     &lt;BR /&gt;
&lt;BR /&gt;
     &lt;BR /&gt;
&lt;BR /&gt;
    There is a good document around ACL : &lt;A href="https://www.extremenetworks.com/wp-content/uploads/2014/10/ACL_Solutions_Guide.pdf" target="_blank" rel="nofollow noreferrer noopener"&gt;https://www.extremenetworks.com/wp-content/uploads/2014/10/ACL_Solutions_Guide.pdf&lt;/A&gt;  &lt;BR /&gt;
&lt;BR /&gt;
     &lt;BR /&gt;
&lt;BR /&gt;
     &lt;BR /&gt;
&lt;BR /&gt;
     &lt;BR /&gt;
&lt;BR /&gt;
    &lt;BR /&gt;
&lt;BR /&gt;</description>
      <pubDate>Wed, 01 Jun 2016 05:41:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/acl-for-cobranet-traffic-ethernet-protocol-identifier-0x8819/m-p/21396#M1484</guid>
      <dc:creator>JS4</dc:creator>
      <dc:date>2016-06-01T05:41:00Z</dc:date>
    </item>
    <item>
      <title>RE: ACL for CobraNet traffic,  Ethernet protocol identifier (0x8819)</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/acl-for-cobranet-traffic-ethernet-protocol-identifier-0x8819/m-p/21397#M1485</link>
      <description>Hi Ron, &lt;BR /&gt;
&lt;BR /&gt;
I may be misunderstanding your question, but you can actually put all CobraNet traffic into one VLAN, regardless of the port.&lt;BR /&gt;
&lt;BR /&gt;
EXOS will allow you to configure two untagged VLANs on a port, assuming at least one has a protocol filter set up. In this case, we can create a protocol filter to match CobraNet, then create a CobraNet VLAN and add all ports untagged. Then, all CobraNet traffic will get put into this VLAN, while all other traffic will go into the other untagged VLAN. An example config is below:&lt;BR /&gt;
&lt;BR /&gt;
create protocol cobranet configure protocol filter cobranet add etype 0x8819 create vlan cobra create vlan other_traffic configure vlan cobra protocol cobranet configure vlan cobra add port all untagged configure vlan other_traffic add port all untagged&lt;BR /&gt;
Let me know if you have any questions.&lt;BR /&gt;
&lt;BR /&gt;
-Brandon</description>
      <pubDate>Wed, 01 Jun 2016 08:31:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/acl-for-cobranet-traffic-ethernet-protocol-identifier-0x8819/m-p/21397#M1485</guid>
      <dc:creator>BrandonC</dc:creator>
      <dc:date>2016-06-01T08:31:00Z</dc:date>
    </item>
    <item>
      <title>RE: ACL for CobraNet traffic,  Ethernet protocol identifier (0x8819)</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/acl-for-cobranet-traffic-ethernet-protocol-identifier-0x8819/m-p/21398#M1486</link>
      <description>Hi Ron, were you able to get this working with JS or Brandon's suggestions?&lt;BR /&gt;</description>
      <pubDate>Tue, 14 Jun 2016 00:52:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/acl-for-cobranet-traffic-ethernet-protocol-identifier-0x8819/m-p/21398#M1486</guid>
      <dc:creator>Drew_C</dc:creator>
      <dc:date>2016-06-14T00:52:00Z</dc:date>
    </item>
    <item>
      <title>RE: ACL for CobraNet traffic,  Ethernet protocol identifier (0x8819)</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/acl-for-cobranet-traffic-ethernet-protocol-identifier-0x8819/m-p/21399#M1487</link>
      <description>Worked perfectly with JS' suggestion, should have commented on that </description>
      <pubDate>Tue, 14 Jun 2016 00:54:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/acl-for-cobranet-traffic-ethernet-protocol-identifier-0x8819/m-p/21399#M1487</guid>
      <dc:creator>Ron_Prague</dc:creator>
      <dc:date>2016-06-14T00:54:00Z</dc:date>
    </item>
    <item>
      <title>RE: ACL for CobraNet traffic,  Ethernet protocol identifier (0x8819)</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/acl-for-cobranet-traffic-ethernet-protocol-identifier-0x8819/m-p/21400#M1488</link>
      <description>Awesome!&lt;BR /&gt;</description>
      <pubDate>Tue, 14 Jun 2016 00:54:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/acl-for-cobranet-traffic-ethernet-protocol-identifier-0x8819/m-p/21400#M1488</guid>
      <dc:creator>Drew_C</dc:creator>
      <dc:date>2016-06-14T00:54:00Z</dc:date>
    </item>
  </channel>
</rss>

