<?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 ASA ACL in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/asa-acl/m-p/2973951#M155804</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;I have one silly quesiton maybe. When we create acl for the inside interface of ASA for example, we define some rules etc., and then it is wanted that inside subnet should access the internet. Then we write the next rule at the end:&lt;BR /&gt;access-list inside_in extended permit ip object inside_net any&lt;/P&gt;
&lt;P&gt;When this line is written, all the previous lines are non-sense then, because it will allow inside traffic to go everywhere. Is there any suggestion or best practise?&lt;/P&gt;
&lt;P&gt;Regards and thanks for the response.&lt;/P&gt;</description>
    <pubDate>Tue, 12 Mar 2019 08:07:17 GMT</pubDate>
    <dc:creator>Tahir Sultanov</dc:creator>
    <dc:date>2019-03-12T08:07:17Z</dc:date>
    <item>
      <title>ASA ACL</title>
      <link>https://community.cisco.com/t5/network-security/asa-acl/m-p/2973951#M155804</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;I have one silly quesiton maybe. When we create acl for the inside interface of ASA for example, we define some rules etc., and then it is wanted that inside subnet should access the internet. Then we write the next rule at the end:&lt;BR /&gt;access-list inside_in extended permit ip object inside_net any&lt;/P&gt;
&lt;P&gt;When this line is written, all the previous lines are non-sense then, because it will allow inside traffic to go everywhere. Is there any suggestion or best practise?&lt;/P&gt;
&lt;P&gt;Regards and thanks for the response.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Mar 2019 08:07:17 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-acl/m-p/2973951#M155804</guid>
      <dc:creator>Tahir Sultanov</dc:creator>
      <dc:date>2019-03-12T08:07:17Z</dc:date>
    </item>
    <item>
      <title>@Tahir Sultanov,</title>
      <link>https://community.cisco.com/t5/network-security/asa-acl/m-p/2973952#M155807</link>
      <description>&lt;H6&gt;&lt;SPAN style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;&lt;A href="https://supportforums.cisco.com/users/mr_sultanov"&gt;mr_sultanov&lt;/A&gt;,&lt;/SPAN&gt;&lt;/H6&gt;
&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;H6&gt;&lt;SPAN style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;Thanks for your post. This question depends on the type of traffic the firewall gets sent. Remember, the way in which access control lists work is &lt;STRONG&gt;TOP DOWN&lt;/STRONG&gt;. So, when the firewall received a packet on that interface it will logically go through the access control list entries or "ACEs" from the top down until it finds a match and will then action what the first matched rule defines whether it be permit or deny. It is not based on the most specific criteria, it is just the first match from the top down. &lt;/SPAN&gt;&lt;/H6&gt;
&lt;H6&gt;&lt;SPAN style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;Here is a simple example:&lt;/SPAN&gt;&lt;/H6&gt;
&lt;PRE class="prettyprint"&gt;&lt;SPAN style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;access-list 100 deny ip 192.168.0.0 255.255.0.0 any&lt;BR /&gt;access-list 100 permit ip 192.168.1.50 255.255.255.0 any&lt;/SPAN&gt;&lt;/PRE&gt;
&lt;H6&gt;&lt;SPAN style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;In this example, the second line is basically pointless, as the traffic from 192.168.1.50 will match against line 1 first and get &lt;STRONG&gt;DENIED&lt;/STRONG&gt;.&lt;/SPAN&gt;&lt;/H6&gt;
&lt;H6&gt;&lt;SPAN style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;The best practice for configuring an access control list is using something called the implicit deny, which is essentially a rule that sits right at the bottom of the list and denies everything. You then add specific permit rules of flows you wish to permit &lt;STRONG&gt;ABOVE&lt;/STRONG&gt; the implicit deny.&lt;/SPAN&gt;&lt;/H6&gt;
&lt;PRE class="prettyprint"&gt;&lt;SPAN style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;access-list 100 permit ip 10.10.0.0 255.255.255.0 any&lt;BR /&gt;access-list 100 permit ip 192.168.0.0 255.255.0.0 172.16.6.0 255.255.255.0&lt;BR /&gt;access-list 100 deny ip any any&lt;/SPAN&gt;&lt;/PRE&gt;
&lt;H6&gt;&lt;SPAN style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;In the above example, anything that doesn't match against the first two lines will be &lt;STRONG&gt;DENIED&lt;/STRONG&gt;. Note that you &lt;SPAN style="text-decoration: underline;"&gt;do not&lt;/SPAN&gt; have to add the implicit deny rule in manually as per the above example. Although it is not shown, once you create an access control list and apply in ingress or egress to an interface it will have an implicit deny and start denying traffic by default. &lt;/SPAN&gt;&lt;/H6&gt;
&lt;H6&gt;&lt;SPAN style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;I hope that makes sense and helps, please let me know if not and I will divulge further.&lt;/SPAN&gt;&lt;/H6&gt;
&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;H6&gt;&lt;SPAN style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;Kind regards,&lt;/SPAN&gt;&lt;/H6&gt;
&lt;H6&gt;&lt;SPAN style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;Luke Oxley&lt;/SPAN&gt;&lt;/H6&gt;
&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;HR /&gt;
&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;H6&gt;&lt;SPAN style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;Please rate helpful posts and mark correct answers.&lt;/SPAN&gt;&lt;/H6&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 13 Aug 2016 21:30:03 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-acl/m-p/2973952#M155807</guid>
      <dc:creator>Luke Oxley</dc:creator>
      <dc:date>2016-08-13T21:30:03Z</dc:date>
    </item>
  </channel>
</rss>

