<?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 Basic in ExtremeSwitching (EXOS/Switch Engine)</title>
    <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/acl-basic/m-p/43940#M10685</link>
    <description>Create Date: May  5 2013  6:22PM&lt;BR /&gt;
&lt;BR /&gt;
got it working, added echo-reply to the same network but as destination network  &lt;BR /&gt;
&lt;BR /&gt;
thank you&lt;BR /&gt;
&lt;BR /&gt;
&lt;I&gt;Code:&lt;/I&gt;&lt;BR /&gt;
&lt;BR /&gt;
@description "Allow ICMP ping"&lt;BR /&gt;
entry ping_allow_echo_request &lt;BR /&gt;
{&lt;BR /&gt;
  if {&lt;BR /&gt;
    protocol icmp;&lt;BR /&gt;
    icmp-type echo-request; &lt;BR /&gt;
    source-address 10.10.1.0/24;&lt;BR /&gt;
  } then { &lt;BR /&gt;
    permit;&lt;BR /&gt;
  }&lt;BR /&gt;
}&lt;BR /&gt;
entry ping_allow_echo_reply &lt;BR /&gt;
{&lt;BR /&gt;
  if {&lt;BR /&gt;
    protocol icmp;&lt;BR /&gt;
    icmp-type echo-reply; &lt;BR /&gt;
    destination-address 10.10.1.0/24;&lt;BR /&gt;
  } then { &lt;BR /&gt;
    permit;&lt;BR /&gt;
  }&lt;BR /&gt;
}&lt;BR /&gt;
&lt;BR /&gt;
@description "Default block all"&lt;BR /&gt;
&lt;BR /&gt;
entry deny_default_all {&lt;BR /&gt;
  if {&lt;BR /&gt;
  } &lt;BR /&gt;
  then {&lt;BR /&gt;
    deny;&lt;BR /&gt;
  }&lt;BR /&gt;
}&lt;BR /&gt;
&lt;BR /&gt;
  (from conrad_jones)</description>
    <pubDate>Wed, 08 Jan 2014 06:01:00 GMT</pubDate>
    <dc:creator>EtherNation_Use</dc:creator>
    <dc:date>2014-01-08T06:01:00Z</dc:date>
    <item>
      <title>ACL Basic</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/acl-basic/m-p/43938#M10683</link>
      <description>Create Date: May  3 2013  2:16PM&lt;BR /&gt;
&lt;BR /&gt;
HiI'm not quite getting ACL's so far. I have a few vlans all with ipforwarding enabled and ips for the vlans.vlan 1 10.10.1.0/24vlan 2 10.10.2.0/24&lt;BR /&gt;
&lt;BR /&gt;
I was hoping the following would allow ping from vlan 1 to vlan 2 but block all else, but it doesn't seem to work, do i need to also allow the return traffic or am i incorrect..so if i create this policy (below) and configure via :&lt;BR /&gt;
&lt;BR /&gt;
configure access-list thepolicy vlan "Vlan 2"&lt;BR /&gt;
&lt;BR /&gt;
&lt;I&gt;Code:&lt;/I&gt;&lt;BR /&gt;
&lt;BR /&gt;
@description "Allow ICMP ping"&lt;BR /&gt;
entry ping_allow_echo_request &lt;BR /&gt;
{&lt;BR /&gt;
  if {&lt;BR /&gt;
    protocol icmp;&lt;BR /&gt;
    icmp-type echo-request; &lt;BR /&gt;
    source-address 10.10.1.0/24;&lt;BR /&gt;
  } then { &lt;BR /&gt;
    permit;&lt;BR /&gt;
  }&lt;BR /&gt;
}&lt;BR /&gt;
@description "Default block all"&lt;BR /&gt;
&lt;BR /&gt;
entry deny_default_all {&lt;BR /&gt;
  if {&lt;BR /&gt;
  } &lt;BR /&gt;
  then {&lt;BR /&gt;
    deny;&lt;BR /&gt;
  }&lt;BR /&gt;
}&lt;BR /&gt;
  (from conrad_jones)</description>
      <pubDate>Wed, 08 Jan 2014 06:01:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/acl-basic/m-p/43938#M10683</guid>
      <dc:creator>EtherNation_Use</dc:creator>
      <dc:date>2014-01-08T06:01:00Z</dc:date>
    </item>
    <item>
      <title>RE: ACL Basic</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/acl-basic/m-p/43939#M10684</link>
      <description>Create Date: May  3 2013  7:18PM&lt;BR /&gt;
&lt;BR /&gt;
You have to allow the return as well. ACLs in XOS aren't stateful. If you allow the echo requests back, you should get the result you want.  (from Ansley_Barnes)</description>
      <pubDate>Wed, 08 Jan 2014 06:01:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/acl-basic/m-p/43939#M10684</guid>
      <dc:creator>EtherNation_Use</dc:creator>
      <dc:date>2014-01-08T06:01:00Z</dc:date>
    </item>
    <item>
      <title>RE: ACL Basic</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/acl-basic/m-p/43940#M10685</link>
      <description>Create Date: May  5 2013  6:22PM&lt;BR /&gt;
&lt;BR /&gt;
got it working, added echo-reply to the same network but as destination network  &lt;BR /&gt;
&lt;BR /&gt;
thank you&lt;BR /&gt;
&lt;BR /&gt;
&lt;I&gt;Code:&lt;/I&gt;&lt;BR /&gt;
&lt;BR /&gt;
@description "Allow ICMP ping"&lt;BR /&gt;
entry ping_allow_echo_request &lt;BR /&gt;
{&lt;BR /&gt;
  if {&lt;BR /&gt;
    protocol icmp;&lt;BR /&gt;
    icmp-type echo-request; &lt;BR /&gt;
    source-address 10.10.1.0/24;&lt;BR /&gt;
  } then { &lt;BR /&gt;
    permit;&lt;BR /&gt;
  }&lt;BR /&gt;
}&lt;BR /&gt;
entry ping_allow_echo_reply &lt;BR /&gt;
{&lt;BR /&gt;
  if {&lt;BR /&gt;
    protocol icmp;&lt;BR /&gt;
    icmp-type echo-reply; &lt;BR /&gt;
    destination-address 10.10.1.0/24;&lt;BR /&gt;
  } then { &lt;BR /&gt;
    permit;&lt;BR /&gt;
  }&lt;BR /&gt;
}&lt;BR /&gt;
&lt;BR /&gt;
@description "Default block all"&lt;BR /&gt;
&lt;BR /&gt;
entry deny_default_all {&lt;BR /&gt;
  if {&lt;BR /&gt;
  } &lt;BR /&gt;
  then {&lt;BR /&gt;
    deny;&lt;BR /&gt;
  }&lt;BR /&gt;
}&lt;BR /&gt;
&lt;BR /&gt;
  (from conrad_jones)</description>
      <pubDate>Wed, 08 Jan 2014 06:01:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/acl-basic/m-p/43940#M10685</guid>
      <dc:creator>EtherNation_Use</dc:creator>
      <dc:date>2014-01-08T06:01:00Z</dc:date>
    </item>
  </channel>
</rss>

