<?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: Dynamic ACL Application in ExtremeSwitching (Other)</title>
    <link>https://community.extremenetworks.com/t5/extremeswitching-other/dynamic-acl-application/m-p/9789#M817</link>
    <description>Hi Paul,&lt;BR /&gt;
are Network Zones supported in Dynamic ACLs?&lt;BR /&gt;
&lt;BR /&gt;
create access-list TestCompressedout "destination-zone zone1;source-port 80" "count HTTP;permit"&lt;BR /&gt;</description>
    <pubDate>Fri, 30 Jan 2015 23:29:00 GMT</pubDate>
    <dc:creator>Freiu</dc:creator>
    <dc:date>2015-01-30T23:29:00Z</dc:date>
    <item>
      <title>Dynamic ACL Application</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-other/dynamic-acl-application/m-p/9785#M813</link>
      <description>Hello,&lt;BR /&gt;
i am working with dynamic ACLs and i have multiple ACLs for applications like RDP, HTTP, HTTPS is there any way i can reduce the number of lines in the following ACLs or i can specify multiple port numbers in one line. so i can reduce my configuration.&lt;BR /&gt;
create access-list HTTP-IN "source-address 10.10.10.0/24;protocol tcp;destination-port 80" "count HTTP;permit"&lt;BR /&gt;
create access-list HTTPS-IN "source-address 10.10.10.0/24;protocol tcp;destination-port 443" "count HTTPS;permit"&lt;BR /&gt;
create access-list SSH-IN "source-address 10.10.10.0/24;protocol tcp;destination-port 22" "count SSH;permit"&lt;BR /&gt;
&lt;BR /&gt;
configure access-list add HTTP-IN first vlan "V67_Server" ingress&lt;BR /&gt;
configure access-list add HTTPS-IN last vlan "V67_Server" ingress&lt;BR /&gt;
configure access-list add SSH-IN last vlan "V67_Server" ingress</description>
      <pubDate>Fri, 30 Jan 2015 18:40:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-other/dynamic-acl-application/m-p/9785#M813</guid>
      <dc:creator>Freiu</dc:creator>
      <dc:date>2015-01-30T18:40:00Z</dc:date>
    </item>
    <item>
      <title>RE: Dynamic ACL Application</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-other/dynamic-acl-application/m-p/9786#M814</link>
      <description>Hello Freiu&lt;BR /&gt;
&lt;BR /&gt;
You can add port ranges that may help in what you are trying to do&lt;BR /&gt;
&lt;BR /&gt;
"You can specify multiple, single, or zero match conditions. If you do not specify a match condition, all"&lt;BR /&gt;
"packets  match the rule entry. Commonly used match conditions are:"&lt;BR /&gt;
"•  ethernet-source-address mac-address mask—Ethernet source address"&lt;BR /&gt;
"•  ethernet-destination-address mac-address mask—Ethernet destination address  and mask"&lt;BR /&gt;
"•  source-address prefix—IP source address  and mask"&lt;BR /&gt;
"•  destination-address prefix—IP destination address  and mask"&lt;BR /&gt;
"•  source-port [port|range]—TCP or UDP source port range"&lt;BR /&gt;
"•  destination-port [port|range]—TCP or UDP destination port range"&lt;BR /&gt;
&lt;BR /&gt;
By adding those ACLs using the CLI and the create access-list command those ACLs are what we call Dynamic.  Another way to do the ACLs is to use a policy file with all of the statements in the file and then you can apply that file as an ACL to the port or VLAN.  There is a great writeup on ACLs in the user guide.  In 15.6 version it is chapter 22&lt;BR /&gt;
&lt;BR /&gt;
I hope that helps&lt;BR /&gt;
&lt;BR /&gt;
P&lt;BR /&gt;
&lt;BR /&gt;</description>
      <pubDate>Fri, 30 Jan 2015 21:36:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-other/dynamic-acl-application/m-p/9786#M814</guid>
      <dc:creator>Paul_Russo</dc:creator>
      <dc:date>2015-01-30T21:36:00Z</dc:date>
    </item>
    <item>
      <title>RE: Dynamic ACL Application</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-other/dynamic-acl-application/m-p/9787#M815</link>
      <description>Hi Paul,&lt;BR /&gt;
Thankyou for your reply, we cannot use policy files so have to do it with dynamic ACLs. for port ranges the range has to be continous like [source-port 23-27] but in my case i have specific ports that are not continuos like for FTP,SMTP,HTTP,RDP. what can i do in this case?</description>
      <pubDate>Fri, 30 Jan 2015 21:58:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-other/dynamic-acl-application/m-p/9787#M815</guid>
      <dc:creator>Freiu</dc:creator>
      <dc:date>2015-01-30T21:58:00Z</dc:date>
    </item>
    <item>
      <title>RE: Dynamic ACL Application</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-other/dynamic-acl-application/m-p/9788#M816</link>
      <description>Hello Freiu&lt;BR /&gt;
&lt;BR /&gt;
I am sorry but I do not believe you can do multiple port values on the same line for example destination-port 80;22;443.  &lt;BR /&gt;
&lt;BR /&gt;
The way the ACL works everything in the If part of the statement or the conditions is either match all or match any so think of it as everything is "and" or "or" so in this case the packet would have to have all three ports values.  If it is an "or" you could do destination-port 23; destination-port 443; destination port 80.  The ACL will do an "or" on each statement.  In this case you wouldn't be able to do subnet 10.10.10.0 and destination-port or destination-port.  &lt;BR /&gt;
&lt;BR /&gt;
So there is no option for having an "and" and "or" statement in the same ACL.&lt;BR /&gt;
&lt;BR /&gt;
I hope this is clear&lt;BR /&gt;
&lt;BR /&gt;
P&lt;BR /&gt;</description>
      <pubDate>Fri, 30 Jan 2015 23:29:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-other/dynamic-acl-application/m-p/9788#M816</guid>
      <dc:creator>Paul_Russo</dc:creator>
      <dc:date>2015-01-30T23:29:00Z</dc:date>
    </item>
    <item>
      <title>RE: Dynamic ACL Application</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-other/dynamic-acl-application/m-p/9789#M817</link>
      <description>Hi Paul,&lt;BR /&gt;
are Network Zones supported in Dynamic ACLs?&lt;BR /&gt;
&lt;BR /&gt;
create access-list TestCompressedout "destination-zone zone1;source-port 80" "count HTTP;permit"&lt;BR /&gt;</description>
      <pubDate>Fri, 30 Jan 2015 23:29:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-other/dynamic-acl-application/m-p/9789#M817</guid>
      <dc:creator>Freiu</dc:creator>
      <dc:date>2015-01-30T23:29:00Z</dc:date>
    </item>
    <item>
      <title>RE: Dynamic ACL Application</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-other/dynamic-acl-application/m-p/9790#M818</link>
      <description>Hey Freiu&lt;BR /&gt;
&lt;BR /&gt;
No I don't believe source-zones and destination-zones are not supported in dynamic ACLs.&lt;BR /&gt;
&lt;BR /&gt;
When I try and execute a dynamic ACL with a zone it errors out.&lt;BR /&gt;
&lt;BR /&gt;
P&lt;BR /&gt;</description>
      <pubDate>Fri, 30 Jan 2015 23:29:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-other/dynamic-acl-application/m-p/9790#M818</guid>
      <dc:creator>Paul_Russo</dc:creator>
      <dc:date>2015-01-30T23:29:00Z</dc:date>
    </item>
    <item>
      <title>RE: Dynamic ACL Application</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-other/dynamic-acl-application/m-p/9791#M819</link>
      <description>Paul, Thanks for your help!!</description>
      <pubDate>Tue, 03 Feb 2015 16:39:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-other/dynamic-acl-application/m-p/9791#M819</guid>
      <dc:creator>Freiu</dc:creator>
      <dc:date>2015-02-03T16:39:00Z</dc:date>
    </item>
  </channel>
</rss>

