<?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: static ACL question - block traffic vlan1 to vlan2 with exceptions in ExtremeSwitching (EXOS/Switch Engine)</title>
    <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/static-acl-question-block-traffic-vlan1-to-vlan2-with-exceptions/m-p/31190#M5473</link>
    <description>User had an additional question. Please reference the new topic here: &lt;A href="http://community.extremenetworks.com/extreme/topics/i_have_multiple_vlans_where_i_want_to_allow_routing_all_vlans_to_from_one_particular_special_vlan_but_i" target="_blank" rel="nofollow noreferrer noopener"&gt;I have multiple VLANs where I want to allow routing all VLANs to/from one particu...&lt;/A&gt;</description>
    <pubDate>Fri, 04 Apr 2014 20:47:00 GMT</pubDate>
    <dc:creator>Tamera_Rousseau</dc:creator>
    <dc:date>2014-04-04T20:47:00Z</dc:date>
    <item>
      <title>static ACL question - block traffic vlan1 to vlan2 with exceptions</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/static-acl-question-block-traffic-vlan1-to-vlan2-with-exceptions/m-p/31186#M5469</link>
      <description>Create Date: Jul 24 2013  3:10PM&lt;BR /&gt;
&lt;BR /&gt;
I have 2 vlans with both VRRP enabled and share the default gateway (firewall).&lt;BR /&gt;
&lt;BR /&gt;
VLAN1 - not allowed to access VLAN2 (with exception DNS server and default GW)&lt;BR /&gt;
VLAN2 - no restrictions to VLAN1&lt;BR /&gt;
&lt;BR /&gt;
policy:&lt;BR /&gt;
&lt;BR /&gt;
entry VLAN1-to-VLAN2-GW {&lt;BR /&gt;
if {&lt;BR /&gt;
source-address 10.99.35.0/24 ;&lt;BR /&gt;
destination-address 10.99.36.254/24 ;&lt;BR /&gt;
} then {&lt;BR /&gt;
permit ;&lt;BR /&gt;
}&lt;BR /&gt;
}&lt;BR /&gt;
&lt;BR /&gt;
entry VLAN1-to-VLAN2-DNS {&lt;BR /&gt;
if {&lt;BR /&gt;
source-address 10.99.35.0/24 ;&lt;BR /&gt;
destination-address 10.99.36.101/24 ;&lt;BR /&gt;
protocol tcp ;&lt;BR /&gt;
source-port 53;&lt;BR /&gt;
protocol udp ;&lt;BR /&gt;
source-port 53;&lt;BR /&gt;
&lt;BR /&gt;
} then {&lt;BR /&gt;
permit ;&lt;BR /&gt;
}&lt;BR /&gt;
}&lt;BR /&gt;
&lt;BR /&gt;
entry VLAN1-to-VLAN2-OTHER {&lt;BR /&gt;
if {&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;
deny ;&lt;BR /&gt;
}&lt;BR /&gt;
}&lt;BR /&gt;
&lt;BR /&gt;
Policy check was successfull.&lt;BR /&gt;
I add this ACL/policy to a port/egress with laptop connected to that port (VLAN1 - 10.99.35.105) . But I can still access all servers in VLAN2.&lt;BR /&gt;
&lt;BR /&gt;
Can you please check if I oversee something? XOS ACL are pretty new for me.&lt;BR /&gt;
  (from LNU)</description>
      <pubDate>Wed, 08 Jan 2014 06:51:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/static-acl-question-block-traffic-vlan1-to-vlan2-with-exceptions/m-p/31186#M5469</guid>
      <dc:creator>EtherNation_Use</dc:creator>
      <dc:date>2014-01-08T06:51:00Z</dc:date>
    </item>
    <item>
      <title>RE: static ACL question - block traffic vlan1 to vlan2 with exceptions</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/static-acl-question-block-traffic-vlan1-to-vlan2-with-exceptions/m-p/31187#M5470</link>
      <description>Create Date: Jul 25 2013 12:05PM&lt;BR /&gt;
&lt;BR /&gt;
You could try something like this:&lt;BR /&gt;
&lt;BR /&gt;
entry VLAN1-to-VLAN2-GW { &lt;BR /&gt;
if match all { &lt;BR /&gt;
    source-address 10.99.35.0/24 ;&lt;BR /&gt;
    destination-address 10.99.36.254/32 ;&lt;BR /&gt;
}&lt;BR /&gt;
then {&lt;BR /&gt;
    permit  ;&lt;BR /&gt;
    count VL1-VL2-GW&lt;BR /&gt;
}&lt;BR /&gt;
}&lt;BR /&gt;
entry VLAN1-to-VLAN2-DNS { &lt;BR /&gt;
if match all { &lt;BR /&gt;
    source-address 10.99.35.0/24 ;&lt;BR /&gt;
    destination-address 10.99.36.101/32 ;&lt;BR /&gt;
    source-port 53;&lt;BR /&gt;
}&lt;BR /&gt;
then {&lt;BR /&gt;
    permit  ;&lt;BR /&gt;
    count VL1-VL2-DNS&lt;BR /&gt;
}&lt;BR /&gt;
}&lt;BR /&gt;
entry VLAN2 { &lt;BR /&gt;
if match all { &lt;BR /&gt;
    source-address 10.99.36.0/24 ;&lt;BR /&gt;
}&lt;BR /&gt;
then {&lt;BR /&gt;
    permit  ;&lt;BR /&gt;
    count VL2&lt;BR /&gt;
}&lt;BR /&gt;
}&lt;BR /&gt;
entry EverythingElse { &lt;BR /&gt;
if match all { &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;
With "show access-list counter" you can see packets hitting specific rule.&lt;BR /&gt;
Configure acl on ingress port (where your laptop is connected). &lt;BR /&gt;
  (from Marjan_Rancic)</description>
      <pubDate>Wed, 08 Jan 2014 06:51:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/static-acl-question-block-traffic-vlan1-to-vlan2-with-exceptions/m-p/31187#M5470</guid>
      <dc:creator>EtherNation_Use</dc:creator>
      <dc:date>2014-01-08T06:51:00Z</dc:date>
    </item>
    <item>
      <title>RE: static ACL question - block traffic vlan1 to vlan2 with exceptions</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/static-acl-question-block-traffic-vlan1-to-vlan2-with-exceptions/m-p/31188#M5471</link>
      <description>Create Date: Jul 26 2013 11:14AM&lt;BR /&gt;
&lt;BR /&gt;
thanks, but its not working.&lt;BR /&gt;
&lt;BR /&gt;
If permitting matches, everything is permitted.&lt;BR /&gt;
If deny all other and permitting matches, everything is denied.&lt;BR /&gt;
  (from LNU)</description>
      <pubDate>Wed, 08 Jan 2014 06:51:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/static-acl-question-block-traffic-vlan1-to-vlan2-with-exceptions/m-p/31188#M5471</guid>
      <dc:creator>EtherNation_Use</dc:creator>
      <dc:date>2014-01-08T06:51:00Z</dc:date>
    </item>
    <item>
      <title>RE: static ACL question - block traffic vlan1 to vlan2 with exceptions</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/static-acl-question-block-traffic-vlan1-to-vlan2-with-exceptions/m-p/31189#M5472</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;</description>
      <pubDate>Fri, 04 Apr 2014 20:47:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/static-acl-question-block-traffic-vlan1-to-vlan2-with-exceptions/m-p/31189#M5472</guid>
      <dc:creator>Frank</dc:creator>
      <dc:date>2014-04-04T20:47:00Z</dc:date>
    </item>
    <item>
      <title>RE: static ACL question - block traffic vlan1 to vlan2 with exceptions</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/static-acl-question-block-traffic-vlan1-to-vlan2-with-exceptions/m-p/31190#M5473</link>
      <description>User had an additional question. Please reference the new topic here: &lt;A href="http://community.extremenetworks.com/extreme/topics/i_have_multiple_vlans_where_i_want_to_allow_routing_all_vlans_to_from_one_particular_special_vlan_but_i" target="_blank" rel="nofollow noreferrer noopener"&gt;I have multiple VLANs where I want to allow routing all VLANs to/from one particu...&lt;/A&gt;</description>
      <pubDate>Fri, 04 Apr 2014 20:47:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/static-acl-question-block-traffic-vlan1-to-vlan2-with-exceptions/m-p/31190#M5473</guid>
      <dc:creator>Tamera_Rousseau</dc:creator>
      <dc:date>2014-04-04T20:47:00Z</dc:date>
    </item>
  </channel>
</rss>

