<?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: error on egress (dynamic) acl in ExtremeSwitching (EXOS/Switch Engine)</title>
    <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/error-on-egress-dynamic-acl/m-p/54915#M15753</link>
    <description>Create Date: Sep 27 2013 12:09PM&lt;BR /&gt;
&lt;BR /&gt;
Good Morning LNU&lt;BR /&gt;
&lt;BR /&gt;
Can you give me information about the switch you are doing this on also what version of code?&lt;BR /&gt;
&lt;BR /&gt;
Thanks&lt;BR /&gt;
P  (from Paul_Russo)</description>
    <pubDate>Wed, 08 Jan 2014 06:05:00 GMT</pubDate>
    <dc:creator>EtherNation_Use</dc:creator>
    <dc:date>2014-01-08T06:05:00Z</dc:date>
    <item>
      <title>error on egress (dynamic) acl</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/error-on-egress-dynamic-acl/m-p/54914#M15752</link>
      <description>Create Date: Sep 27 2013  9:57AM&lt;BR /&gt;
&lt;BR /&gt;
I want to block traffic from vlan1 to vlan2&lt;BR /&gt;
&lt;BR /&gt;
setup acl:&lt;BR /&gt;
&lt;BR /&gt;
create access-list deny-v1-v2 "source-address 10.99.36.0/24;destination-address 10.99.35.0/24" "deny"&lt;BR /&gt;
config access-list add deny-v1-v2 first any egress&lt;BR /&gt;
&lt;BR /&gt;
applying responses in following error:&lt;BR /&gt;
Error: ACL install operation failed - port 5:8, rule "deny-v1-v2", feature unavailable.&lt;BR /&gt;
&lt;BR /&gt;
What does this means? And how do I solve this issue?&lt;BR /&gt;
&lt;BR /&gt;
Also tried ingress, but this will block traffic to both directions... &lt;BR /&gt;
&lt;BR /&gt;
please advice.&lt;BR /&gt;
   (from LNU)</description>
      <pubDate>Wed, 08 Jan 2014 06:05:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/error-on-egress-dynamic-acl/m-p/54914#M15752</guid>
      <dc:creator>EtherNation_Use</dc:creator>
      <dc:date>2014-01-08T06:05:00Z</dc:date>
    </item>
    <item>
      <title>RE: error on egress (dynamic) acl</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/error-on-egress-dynamic-acl/m-p/54915#M15753</link>
      <description>Create Date: Sep 27 2013 12:09PM&lt;BR /&gt;
&lt;BR /&gt;
Good Morning LNU&lt;BR /&gt;
&lt;BR /&gt;
Can you give me information about the switch you are doing this on also what version of code?&lt;BR /&gt;
&lt;BR /&gt;
Thanks&lt;BR /&gt;
P  (from Paul_Russo)</description>
      <pubDate>Wed, 08 Jan 2014 06:05:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/error-on-egress-dynamic-acl/m-p/54915#M15753</guid>
      <dc:creator>EtherNation_Use</dc:creator>
      <dc:date>2014-01-08T06:05:00Z</dc:date>
    </item>
    <item>
      <title>RE: error on egress (dynamic) acl</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/error-on-egress-dynamic-acl/m-p/54916#M15754</link>
      <description>Create Date: Sep 27 2013  3:14PM&lt;BR /&gt;
&lt;BR /&gt;
Hi Prusso,&lt;BR /&gt;
thanks for your reply&lt;BR /&gt;
&lt;BR /&gt;
It a BB8810 - xos version 12.3.3.6&lt;BR /&gt;
&lt;BR /&gt;
I decided to work with static policies. I found out that this give me more overview. &lt;BR /&gt;
&lt;BR /&gt;
Below is the test acl policy (applied on any / ingress) - but still can't get this working right;&lt;BR /&gt;
&lt;BR /&gt;
The rules from vlan2 to vlan 1 are working fine (got ping reply, rdp, telnet and all other traffic is blocked).&lt;BR /&gt;
But in the policy I created an entry to allow all traffic from vlan1 to vlan2, but all traffic is blocked..&lt;BR /&gt;
&lt;BR /&gt;
vlan1 (10.99.35.0/24)&lt;BR /&gt;
vlan 2 (10.99.36.0/24)&lt;BR /&gt;
&lt;BR /&gt;
Policy:&lt;BR /&gt;
entry permit-prd-inf-ping {&lt;BR /&gt;
        if match all {&lt;BR /&gt;
        source-address 10.99.36.0/24;&lt;BR /&gt;
        destination-address 10.99.35.0/24;&lt;BR /&gt;
        protocol icmp;&lt;BR /&gt;
        icmp-type echo-request;&lt;BR /&gt;
        } then {&lt;BR /&gt;
        count permit-prd-inf-ping;&lt;BR /&gt;
        permit;&lt;BR /&gt;
        }}&lt;BR /&gt;
&lt;BR /&gt;
entry permit-prd-inf-telnet {&lt;BR /&gt;
       if match all {&lt;BR /&gt;
       source-address 10.99.36.0/24;&lt;BR /&gt;
       destination-address 10.99.35.0/24;&lt;BR /&gt;
       protocol tcp;&lt;BR /&gt;
       destination-port 23;&lt;BR /&gt;
       } then {&lt;BR /&gt;
       count permit-prd-inf-telnet;&lt;BR /&gt;
       permit;&lt;BR /&gt;
       }}&lt;BR /&gt;
&lt;BR /&gt;
entry permit-prd-inf-rdp {&lt;BR /&gt;
        if match all {&lt;BR /&gt;
        source-address 10.99.36.0/24;&lt;BR /&gt;
        destination-address 10.99.35.0/24;&lt;BR /&gt;
        protocol tcp;&lt;BR /&gt;
        destination-port 3389;&lt;BR /&gt;
        } then {&lt;BR /&gt;
        count permit-prd-inf-rdp;&lt;BR /&gt;
        permit;&lt;BR /&gt;
        }}&lt;BR /&gt;
&lt;BR /&gt;
entry deny-prd-inf-other {&lt;BR /&gt;
        if match all {&lt;BR /&gt;
        source-address 10.99.36.0/24;&lt;BR /&gt;
        destination-address 10.99.35.0/24;&lt;BR /&gt;
        } then {&lt;BR /&gt;
        count deny-prd-inf-other;&lt;BR /&gt;
        deny;&lt;BR /&gt;
        }}&lt;BR /&gt;
&lt;BR /&gt;
entry permit-all-other {&lt;BR /&gt;
        if match all {&lt;BR /&gt;
        source-address 10.99.35.0/24;&lt;BR /&gt;
        destination-address 10.99.36.0/24;&lt;BR /&gt;
        } then {&lt;BR /&gt;
        count permit-all-other;&lt;BR /&gt;
        permit;&lt;BR /&gt;
        }}&lt;BR /&gt;
&lt;BR /&gt;
  (from LNU)</description>
      <pubDate>Wed, 08 Jan 2014 06:05:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/error-on-egress-dynamic-acl/m-p/54916#M15754</guid>
      <dc:creator>EtherNation_Use</dc:creator>
      <dc:date>2014-01-08T06:05:00Z</dc:date>
    </item>
    <item>
      <title>RE: error on egress (dynamic) acl</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/error-on-egress-dynamic-acl/m-p/54917#M15755</link>
      <description>Create Date: Oct  1 2013  2:11PM&lt;BR /&gt;
&lt;BR /&gt;
nobody?  (from LNU)</description>
      <pubDate>Wed, 08 Jan 2014 06:05:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/error-on-egress-dynamic-acl/m-p/54917#M15755</guid>
      <dc:creator>EtherNation_Use</dc:creator>
      <dc:date>2014-01-08T06:05:00Z</dc:date>
    </item>
    <item>
      <title>RE: error on egress (dynamic) acl</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/error-on-egress-dynamic-acl/m-p/54918#M15756</link>
      <description>Create Date: Oct  7 2013 11:31AM&lt;BR /&gt;
&lt;BR /&gt;
Have you check the policy ?&lt;BR /&gt;
example:&lt;BR /&gt;
D-Lab.5 # check policy MS-VLAN-BRIDGE&lt;BR /&gt;
Policy file check successful.&lt;BR /&gt;
BD-Lab.6 #&lt;BR /&gt;
  (from Pascal_Lurquin)</description>
      <pubDate>Wed, 08 Jan 2014 06:05:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/error-on-egress-dynamic-acl/m-p/54918#M15756</guid>
      <dc:creator>EtherNation_Use</dc:creator>
      <dc:date>2014-01-08T06:05:00Z</dc:date>
    </item>
  </channel>
</rss>

