<?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: Extreme Switch ACL in ExtremeSwitching (EXOS/Switch Engine)</title>
    <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-switch-acl/m-p/42814#M10164</link>
    <description>Hi Jawn,&lt;BR /&gt;
I edited this post so that it was public, and not private. This way, other community members can respond to you.&lt;BR /&gt;</description>
    <pubDate>Mon, 13 Nov 2017 21:38:00 GMT</pubDate>
    <dc:creator>Drew_C</dc:creator>
    <dc:date>2017-11-13T21:38:00Z</dc:date>
    <item>
      <title>Extreme Switch ACL</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-switch-acl/m-p/42813#M10163</link>
      <description>Hi Support,&lt;BR /&gt;
&lt;BR /&gt;
I would like to ask about ACL configuration.&lt;BR /&gt;
&lt;BR /&gt;
Assuming I have 3 Vlan created. &lt;BR /&gt;
Vlan 10 , HR , 192.168.10.1/24&lt;BR /&gt;
Vlan 20 , IT, 192.168.20.1/24&lt;BR /&gt;
Vlan 30, GM, 192.168.30.1/24&lt;BR /&gt;
&lt;BR /&gt;
I would like all 3 Vlan to be isolated from each other; not able to ping/communicate to each other.&lt;BR /&gt;
This is the command i have created but not sure if it works anot. &lt;BR /&gt;
below is the example of blocking HR to IT &amp;amp; GM.&lt;BR /&gt;
&lt;BR /&gt;
vi HR.pol          &lt;BR /&gt;
press"i" to insert&lt;BR /&gt;
entry IT{&lt;BR /&gt;
    if match all {&lt;BR /&gt;
        destination-address 192.168.20.1/255.255.255.0&lt;BR /&gt;
        destination-address 192.168.30.1/255.255.255.0&lt;BR /&gt;
    } then {&lt;BR /&gt;
        deny;&lt;BR /&gt;
    }&lt;BR /&gt;
}&lt;BR /&gt;
&lt;BR /&gt;
Please advise if this is the right way to configure.&lt;BR /&gt;
&lt;BR /&gt;
Thanks&lt;BR /&gt;
Regards&lt;BR /&gt;
Jawn&lt;BR /&gt;
&lt;BR /&gt;</description>
      <pubDate>Mon, 13 Nov 2017 15:59:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-switch-acl/m-p/42813#M10163</guid>
      <dc:creator>Jawn</dc:creator>
      <dc:date>2017-11-13T15:59:00Z</dc:date>
    </item>
    <item>
      <title>RE: Extreme Switch ACL</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-switch-acl/m-p/42814#M10164</link>
      <description>Hi Jawn,&lt;BR /&gt;
I edited this post so that it was public, and not private. This way, other community members can respond to you.&lt;BR /&gt;</description>
      <pubDate>Mon, 13 Nov 2017 21:38:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-switch-acl/m-p/42814#M10164</guid>
      <dc:creator>Drew_C</dc:creator>
      <dc:date>2017-11-13T21:38:00Z</dc:date>
    </item>
    <item>
      <title>RE: Extreme Switch ACL</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-switch-acl/m-p/42815#M10165</link>
      <description>Thank Drew !&lt;BR /&gt;
Appreciated much.&lt;BR /&gt;</description>
      <pubDate>Mon, 13 Nov 2017 21:38:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-switch-acl/m-p/42815#M10165</guid>
      <dc:creator>Jawn</dc:creator>
      <dc:date>2017-11-13T21:38:00Z</dc:date>
    </item>
    <item>
      <title>RE: Extreme Switch ACL</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-switch-acl/m-p/42816#M10166</link>
      <description>Hi Jawn,&lt;BR /&gt;
&lt;BR /&gt;
if you use &lt;I&gt;match-all&lt;/I&gt;, all the conditions given must match. But the destination IP address is never in both IP ranges you have specified, thus this ACL entry never matches.&lt;BR /&gt;
&lt;BR /&gt;
You can change the &lt;I&gt;match-all&lt;/I&gt; to &lt;I&gt;match-any&lt;/I&gt;. This way if any one of the given conditions matches, e.g. the IP address falls into the first IP range, the entry will match and the &lt;I&gt;then&lt;/I&gt; part executed (the packet denied in your example).&lt;BR /&gt;
&lt;BR /&gt;
Thanks,&lt;BR /&gt;
Erik</description>
      <pubDate>Tue, 14 Nov 2017 00:02:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-switch-acl/m-p/42816#M10166</guid>
      <dc:creator>Erik_Auerswald</dc:creator>
      <dc:date>2017-11-14T00:02:00Z</dc:date>
    </item>
    <item>
      <title>RE: Extreme Switch ACL</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-switch-acl/m-p/42817#M10167</link>
      <description>Hi Erik,&lt;BR /&gt;
&lt;BR /&gt;
Thanks for the advise.&lt;BR /&gt;
If I want to block HR (.10) to IT &amp;amp; GM.&lt;BR /&gt;
&lt;BR /&gt;
Does the below command work?&lt;BR /&gt;
&lt;BR /&gt;
entry block_IT_and_GM {&lt;BR /&gt;
  if match any{&lt;BR /&gt;
      source-address 192.168.10.1/24;           #this is HR&lt;BR /&gt;
      destination-address 192.168.20.1/24;    # this is IT &lt;BR /&gt;
      destination-address 192.168.30.1/24;    # this is GM&lt;BR /&gt;
  } then {&lt;BR /&gt;
      deny;&lt;BR /&gt;
  }&lt;BR /&gt;
}&lt;BR /&gt;</description>
      <pubDate>Tue, 14 Nov 2017 00:02:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-switch-acl/m-p/42817#M10167</guid>
      <dc:creator>Jawn</dc:creator>
      <dc:date>2017-11-14T00:02:00Z</dc:date>
    </item>
    <item>
      <title>RE: Extreme Switch ACL</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-switch-acl/m-p/42818#M10168</link>
      <description>Hi,&lt;BR /&gt;
&lt;BR /&gt;
just wanted to state the obvious, in case of. If ipforwarding is not enabled, these 3 VLANs will not communicate to each other.&lt;BR /&gt;
&lt;BR /&gt;
Now, assuming ipforwarding is enabled, ACLs will have to be written clearly for every flows. ACL only have a "match all" match condition, so you'll have to write various rules, each with a specific src/dest pair, and deny/permit accordingly. As always, you'll have to figure out if in your case it's easier to deny all, then permit some, or the opposite.&lt;BR /&gt;
&lt;BR /&gt;
Regarding match condition, the "match any" is available only for routing policies, not ACL. But as this is the same preprocessor, it doesn't tell you that you are making a mistake trying to use it.&lt;BR /&gt;
&lt;BR /&gt;
Hope it helps.&lt;BR /&gt;</description>
      <pubDate>Tue, 14 Nov 2017 13:32:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-switch-acl/m-p/42818#M10168</guid>
      <dc:creator>Stephane_Grosj1</dc:creator>
      <dc:date>2017-11-14T13:32:00Z</dc:date>
    </item>
    <item>
      <title>RE: Extreme Switch ACL</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-switch-acl/m-p/42819#M10169</link>
      <description>Hi Stephane,&lt;BR /&gt;
&lt;BR /&gt;
The ipforwarding is already enabled on all the 3 VLANS.&lt;BR /&gt;
&lt;BR /&gt;
For now I only managed to block HR to IT by using this command. &lt;BR /&gt;
-----------------------------------------------------------------------------&lt;BR /&gt;
vi blockIT.pol&lt;BR /&gt;
entry HR{&lt;BR /&gt;
  if match all&lt;BR /&gt;
      destination-address 192.168.20.1/24;    # this is IT &lt;BR /&gt;
  } then {&lt;BR /&gt;
      deny;&lt;BR /&gt;
  }&lt;BR /&gt;
}&lt;BR /&gt;
configure access-list blockIT vlan "HR" ingress&lt;BR /&gt;
-----------------------------------------------------------------------------&lt;BR /&gt;
However, I have no idea how to combine all the destination-address that I would like to block in a specific policy. Reason being, if I were to continue to create another policy) shown below). The result came out that Error: ACL is already configured on vlan HR !&lt;BR /&gt;
&lt;BR /&gt;
-----------------------------------------------------------------------------&lt;BR /&gt;
vi blockGM.pol&lt;BR /&gt;
entry HR{&lt;BR /&gt;
  if match all&lt;BR /&gt;
      destination-address 192.168.30.1/24;    # this is IT &lt;BR /&gt;
  } then {&lt;BR /&gt;
      deny;&lt;BR /&gt;
  }&lt;BR /&gt;
}&lt;BR /&gt;
configure access-list blockGM vlan "HR" ingress&lt;BR /&gt;
----------------------------------------------------------------------------&lt;BR /&gt;
Is there any way to fix this?&lt;BR /&gt;
&lt;BR /&gt;</description>
      <pubDate>Tue, 14 Nov 2017 13:32:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-switch-acl/m-p/42819#M10169</guid>
      <dc:creator>Jawn</dc:creator>
      <dc:date>2017-11-14T13:32:00Z</dc:date>
    </item>
    <item>
      <title>RE: Extreme Switch ACL</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-switch-acl/m-p/42820#M10170</link>
      <description>Hi,&lt;BR /&gt;
&lt;BR /&gt;
you could apply an ACL to ports, rather than VLAN, and have several rules in that ACL. Something like that:&lt;BR /&gt;
&lt;BR /&gt;
myACL.pol&lt;BR /&gt;
entry HR-IT {&lt;BR /&gt;
  if match all {&lt;BR /&gt;
    source-address 192.168.10.0/24;&lt;BR /&gt;
    destination-address 192.168.20.0/24;&lt;BR /&gt;
  } then {&lt;BR /&gt;
    deny;&lt;BR /&gt;
  }&lt;BR /&gt;
}&lt;BR /&gt;
&lt;BR /&gt;
entry HR-GM {&lt;BR /&gt;
  if match all {&lt;BR /&gt;
    source-address 192.168.10.0/24;&lt;BR /&gt;
    destination-address 192.168.30.0/24;&lt;BR /&gt;
  } then {&lt;BR /&gt;
    deny;&lt;BR /&gt;
  }&lt;BR /&gt;
}&lt;BR /&gt;
&lt;BR /&gt;
etc.&lt;BR /&gt;
&lt;BR /&gt;
or follow the same logic as you, per VLAN, but with several entries in each ACL.&lt;BR /&gt;</description>
      <pubDate>Tue, 14 Nov 2017 13:32:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/extreme-switch-acl/m-p/42820#M10170</guid>
      <dc:creator>Stephane_Grosj1</dc:creator>
      <dc:date>2017-11-14T13:32:00Z</dc:date>
    </item>
  </channel>
</rss>

