<?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 to allow traffic to specified ports on a subnet in Network Architecture &amp; Design</title>
    <link>https://community.extremenetworks.com/t5/network-architecture-design/acl-to-allow-traffic-to-specified-ports-on-a-subnet/m-p/13653#M1057</link>
    <description>Thanks Simon for your help &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;
&lt;BR /&gt;
cheers&lt;BR /&gt;</description>
    <pubDate>Tue, 20 Feb 2018 20:34:00 GMT</pubDate>
    <dc:creator>Rich6</dc:creator>
    <dc:date>2018-02-20T20:34:00Z</dc:date>
    <item>
      <title>ACL to allow traffic to specified ports on a subnet</title>
      <link>https://community.extremenetworks.com/t5/network-architecture-design/acl-to-allow-traffic-to-specified-ports-on-a-subnet/m-p/13649#M1053</link>
      <description>I have a situation where I need to restrict traffic from a specified client subnet to another server subnet.  I have done this by creating a blanket deny between subnets which works fine.&lt;BR /&gt;
&lt;BR /&gt;
I now need to allow traffic between the same two subnets but only for a specific port number.&lt;BR /&gt;
&lt;BR /&gt;
I cannot seem to get this to function. The policy check commands come back as passed OK.&lt;BR /&gt;
&lt;BR /&gt;
When the blanket deny between subnets is removed I can access the port I need to from the client subnet.&lt;BR /&gt;
&lt;BR /&gt;
I have included examples from my ACL below and the "allow" is above the "deny" in the ACL.&lt;BR /&gt;
&lt;BR /&gt;
entry Allow_server_to_client {&lt;BR /&gt;
    if {&lt;BR /&gt;
        source-address aaa.bbb.0.0/16; (client)&lt;BR /&gt;
        protocol tcp;&lt;BR /&gt;
        destination-address ccc.ddd.195.0/24; (server)&lt;BR /&gt;
        destination-port 13087;&lt;BR /&gt;
       }&lt;BR /&gt;
    then {&lt;BR /&gt;
        permit;&lt;BR /&gt;
}&lt;BR /&gt;
}&lt;BR /&gt;
&lt;BR /&gt;
entry Deny_server_to_client {&lt;BR /&gt;
if match all {&lt;BR /&gt;
    source-address aaa.bbb.0.0/16 ;&lt;BR /&gt;
    destination-address ccc.ddd.0.0/16 ;&lt;BR /&gt;
}&lt;BR /&gt;
then {&lt;BR /&gt;
    deny  ;&lt;BR /&gt;
}&lt;BR /&gt;
}&lt;BR /&gt;
&lt;BR /&gt;</description>
      <pubDate>Wed, 14 Feb 2018 21:44:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/network-architecture-design/acl-to-allow-traffic-to-specified-ports-on-a-subnet/m-p/13649#M1053</guid>
      <dc:creator>Rich6</dc:creator>
      <dc:date>2018-02-14T21:44:00Z</dc:date>
    </item>
    <item>
      <title>RE: ACL to allow traffic to specified ports on a subnet</title>
      <link>https://community.extremenetworks.com/t5/network-architecture-design/acl-to-allow-traffic-to-specified-ports-on-a-subnet/m-p/13650#M1054</link>
      <description>Try  "if match all"  on the first expression as well &lt;BR /&gt;
&lt;BR /&gt;
I honestly cannot remember the default on XOS&lt;BR /&gt;
&lt;BR /&gt;</description>
      <pubDate>Tue, 20 Feb 2018 20:11:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/network-architecture-design/acl-to-allow-traffic-to-specified-ports-on-a-subnet/m-p/13650#M1054</guid>
      <dc:creator>simon_bingham</dc:creator>
      <dc:date>2018-02-20T20:11:00Z</dc:date>
    </item>
    <item>
      <title>RE: ACL to allow traffic to specified ports on a subnet</title>
      <link>https://community.extremenetworks.com/t5/network-architecture-design/acl-to-allow-traffic-to-specified-ports-on-a-subnet/m-p/13651#M1055</link>
      <description>Have you refreshed the policy ? &lt;BR /&gt;
 refresh policy  &lt;NAME&gt;&lt;BR /&gt;
&lt;BR /&gt;&lt;/NAME&gt;</description>
      <pubDate>Tue, 20 Feb 2018 20:24:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/network-architecture-design/acl-to-allow-traffic-to-specified-ports-on-a-subnet/m-p/13651#M1055</guid>
      <dc:creator>simon_bingham</dc:creator>
      <dc:date>2018-02-20T20:24:00Z</dc:date>
    </item>
    <item>
      <title>RE: ACL to allow traffic to specified ports on a subnet</title>
      <link>https://community.extremenetworks.com/t5/network-architecture-design/acl-to-allow-traffic-to-specified-ports-on-a-subnet/m-p/13652#M1056</link>
      <description>All&lt;BR /&gt;
&lt;BR /&gt;
I had been doing a policy check and refresh without success....  What I did find is that specifying "if match all" seemed to do the trick.  I have no idea why as by default (apparantly) "if match all" is implied.  Either way I got it going but thanks for the replies.&lt;BR /&gt;
&lt;BR /&gt;
cheers&lt;BR /&gt;
&lt;BR /&gt;
Rich&lt;BR /&gt;</description>
      <pubDate>Tue, 20 Feb 2018 20:34:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/network-architecture-design/acl-to-allow-traffic-to-specified-ports-on-a-subnet/m-p/13652#M1056</guid>
      <dc:creator>Rich6</dc:creator>
      <dc:date>2018-02-20T20:34:00Z</dc:date>
    </item>
    <item>
      <title>RE: ACL to allow traffic to specified ports on a subnet</title>
      <link>https://community.extremenetworks.com/t5/network-architecture-design/acl-to-allow-traffic-to-specified-ports-on-a-subnet/m-p/13653#M1057</link>
      <description>Thanks Simon for your help &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;
&lt;BR /&gt;
cheers&lt;BR /&gt;</description>
      <pubDate>Tue, 20 Feb 2018 20:34:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/network-architecture-design/acl-to-allow-traffic-to-specified-ports-on-a-subnet/m-p/13653#M1057</guid>
      <dc:creator>Rich6</dc:creator>
      <dc:date>2018-02-20T20:34:00Z</dc:date>
    </item>
  </channel>
</rss>

