<?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: I have multiple VLANs where I want to allow routing all VLANs to/from one particular special VLAN, but I do not want to route traffic between the &amp;quot;normal&amp;quot; VLANs. in ExtremeWireless (General)</title>
    <link>https://community.extremenetworks.com/t5/extremewireless-general/i-have-multiple-vlans-where-i-want-to-allow-routing-all-vlans-to/m-p/32285#M895</link>
    <description>I think I sorted it out in the thread that I started - the problem seems to be that denying via&lt;BR /&gt;
if match all {&lt;BR /&gt;
} then {&lt;BR /&gt;
 deny&lt;BR /&gt;
}&lt;BR /&gt;
truly matches everything - every protocol, every port, every address, and especially every ARP.&lt;BR /&gt;
It also appears that it means that a "deny" rule like that also matches previously "accept"ed packets (because of the ARP test?)&lt;BR /&gt;
Lesson learned: don't deny all like this, deny all in a more specific matter &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;BR /&gt;
&lt;BR /&gt;
(I don't know if that was the intended behavior of "match all {}", but that's how it seems to play out.)&lt;BR /&gt;
&lt;BR /&gt;
Jarek helped me out with that in this thread: &lt;A href="https://community.extremenetworks.com/extreme/topics/access_list_policy_and_selective_routing_between_vlans_in_a_vr" target="_blank" rel="nofollow noreferrer noopener"&gt;https://community.extremenetworks.com/extreme/topics/access_list_policy_and_selective_routing_betwee...&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;</description>
    <pubDate>Tue, 15 Apr 2014 14:13:00 GMT</pubDate>
    <dc:creator>Frank</dc:creator>
    <dc:date>2014-04-15T14:13:00Z</dc:date>
    <item>
      <title>I have multiple VLANs where I want to allow routing all VLANs to/from one particular special VLAN, but I do not want to route traffic between the "normal" VLANs.</title>
      <link>https://community.extremenetworks.com/t5/extremewireless-general/i-have-multiple-vlans-where-i-want-to-allow-routing-all-vlans-to/m-p/32282#M892</link>
      <description>Try this part:&lt;BR /&gt;
&lt;BR /&gt;
...&lt;BR /&gt;
entry EverythingElse { &lt;BR /&gt;
  if match all { &lt;BR /&gt;
    &lt;B&gt;source-address 0.0.0.0/0;&lt;/B&gt;&lt;BR /&gt;
  }&lt;BR /&gt;
  then {&lt;BR /&gt;
    deny  ;&lt;BR /&gt;
    count Deny;&lt;BR /&gt;
  }&lt;BR /&gt;
}&lt;BR /&gt;
&lt;BR /&gt;
I just finished fighting a similar issue. Without specifying "source anywhere", it denies &lt;I&gt;everything&lt;/I&gt;.&lt;BR /&gt;
&lt;BR /&gt;
In my case I have multiple VLANs where I want to allow routing all VLANs to/from one particular special VLAN, but I do &lt;I&gt;not&lt;/I&gt; want to route traffic between the "normal" VLANs.&lt;BR /&gt;
&lt;BR /&gt;
I'll start a thread on that...&lt;BR /&gt;
  Note: This topic was created from a &lt;A href="http://community.extremenetworks.com/extreme/topics/static_acl_question_block_traffic_vlan1_to_vlan2_with_exceptions-1ebmi6/replies/14104751" target="_blank" rel="nofollow noreferrer noopener"&gt;reply&lt;/A&gt; on the &lt;A href="http://community.extremenetworks.com/extreme/topics/static_acl_question_block_traffic_vlan1_to_vlan2_with_exceptions-1ebmi6" target="_blank" rel="nofollow noreferrer noopener"&gt;static ACL question - block traffic vlan1 to vlan2 with exceptions&lt;/A&gt; topic.</description>
      <pubDate>Fri, 04 Apr 2014 20:47:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremewireless-general/i-have-multiple-vlans-where-i-want-to-allow-routing-all-vlans-to/m-p/32282#M892</guid>
      <dc:creator>Frank</dc:creator>
      <dc:date>2014-04-04T20:47:00Z</dc:date>
    </item>
    <item>
      <title>RE: I have multiple VLANs where I want to allow routing all VLANs to/from one particular special VLAN, but I do not want to route traffic between the "normal" VLANs.</title>
      <link>https://community.extremenetworks.com/t5/extremewireless-general/i-have-multiple-vlans-where-i-want-to-allow-routing-all-vlans-to/m-p/32283#M893</link>
      <description>Hi Frank, I thought I would start this thread for you to see if anyone might be able to give you some advice.  Have a great day!</description>
      <pubDate>Tue, 15 Apr 2014 01:59:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremewireless-general/i-have-multiple-vlans-where-i-want-to-allow-routing-all-vlans-to/m-p/32283#M893</guid>
      <dc:creator>Tamera_Rousseau</dc:creator>
      <dc:date>2014-04-15T01:59:00Z</dc:date>
    </item>
    <item>
      <title>RE: I have multiple VLANs where I want to allow routing all VLANs to/from one particular special VLAN, but I do not want to route traffic between the "normal" VLANs.</title>
      <link>https://community.extremenetworks.com/t5/extremewireless-general/i-have-multiple-vlans-where-i-want-to-allow-routing-all-vlans-to/m-p/32284#M894</link>
      <description>Hello Frank&lt;BR /&gt;
&lt;BR /&gt;
The ACLs in XOS have a implicit permit not a implicit deny so adding your final entry is needed to make sure that all traffic is dropped unless it is explicitly permitted in the other entries.&lt;BR /&gt;
&lt;BR /&gt;
Not sure if that is answering your question so if you can provide more information we can look it over.&lt;BR /&gt;
&lt;BR /&gt;
Thanks&lt;BR /&gt;
P&lt;BR /&gt;</description>
      <pubDate>Tue, 15 Apr 2014 02:19:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremewireless-general/i-have-multiple-vlans-where-i-want-to-allow-routing-all-vlans-to/m-p/32284#M894</guid>
      <dc:creator>Paul_Russo</dc:creator>
      <dc:date>2014-04-15T02:19:00Z</dc:date>
    </item>
    <item>
      <title>RE: I have multiple VLANs where I want to allow routing all VLANs to/from one particular special VLAN, but I do not want to route traffic between the "normal" VLANs.</title>
      <link>https://community.extremenetworks.com/t5/extremewireless-general/i-have-multiple-vlans-where-i-want-to-allow-routing-all-vlans-to/m-p/32285#M895</link>
      <description>I think I sorted it out in the thread that I started - the problem seems to be that denying via&lt;BR /&gt;
if match all {&lt;BR /&gt;
} then {&lt;BR /&gt;
 deny&lt;BR /&gt;
}&lt;BR /&gt;
truly matches everything - every protocol, every port, every address, and especially every ARP.&lt;BR /&gt;
It also appears that it means that a "deny" rule like that also matches previously "accept"ed packets (because of the ARP test?)&lt;BR /&gt;
Lesson learned: don't deny all like this, deny all in a more specific matter &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;BR /&gt;
&lt;BR /&gt;
(I don't know if that was the intended behavior of "match all {}", but that's how it seems to play out.)&lt;BR /&gt;
&lt;BR /&gt;
Jarek helped me out with that in this thread: &lt;A href="https://community.extremenetworks.com/extreme/topics/access_list_policy_and_selective_routing_between_vlans_in_a_vr" target="_blank" rel="nofollow noreferrer noopener"&gt;https://community.extremenetworks.com/extreme/topics/access_list_policy_and_selective_routing_betwee...&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;</description>
      <pubDate>Tue, 15 Apr 2014 14:13:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremewireless-general/i-have-multiple-vlans-where-i-want-to-allow-routing-all-vlans-to/m-p/32285#M895</guid>
      <dc:creator>Frank</dc:creator>
      <dc:date>2014-04-15T14:13:00Z</dc:date>
    </item>
  </channel>
</rss>

