<?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: Access Control List in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/access-control-list/m-p/1602867#M559090</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chem,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm sorry about the mask. It would be 0.0.0.255 on a router, while it would be 255.255.255.0 on a firewall.&lt;/P&gt;&lt;P&gt;I primarily work with firewalls, so intuitively wrote the subnet mask. &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.cisco.com/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Shrikant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 29 Mar 2011 11:56:10 GMT</pubDate>
    <dc:creator>Shrikant Sundaresh</dc:creator>
    <dc:date>2011-03-29T11:56:10Z</dc:date>
    <item>
      <title>Access Control List</title>
      <link>https://community.cisco.com/t5/network-security/access-control-list/m-p/1602863#M559086</link>
      <description>&lt;P&gt;"access-list 100 deny ip host 192.168.2.10 host 192.168.3.11"&lt;/P&gt;&lt;P&gt;it should deny a single host, but why 192.168.2.10 can't access all ip in 192.168.3.0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;</description>
      <pubDate>Mon, 11 Mar 2019 20:13:18 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/access-control-list/m-p/1602863#M559086</guid>
      <dc:creator>chhay.heng</dc:creator>
      <dc:date>2019-03-11T20:13:18Z</dc:date>
    </item>
    <item>
      <title>Re: Access Control List</title>
      <link>https://community.cisco.com/t5/network-security/access-control-list/m-p/1602864#M559087</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Chem,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is little data here to move forward, we don't know what the rest of ACL looks like or what the platform, topology/scenario is.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The access-list is just saying traffic from host A host B is not interesting. Access-list are used for MATCHING traffic, not dropping. You apply access-list to access-group command to make access-group drop traffic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marcin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Mar 2011 09:40:26 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/access-control-list/m-p/1602864#M559087</guid>
      <dc:creator>Marcin Latosiewicz</dc:creator>
      <dc:date>2011-03-27T09:40:26Z</dc:date>
    </item>
    <item>
      <title>Re: Access Control List</title>
      <link>https://community.cisco.com/t5/network-security/access-control-list/m-p/1602865#M559088</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chem,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To add to what Marcin has written in the earlier post, there is an implicit "deny ip any any" at the end of every access-list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So this means, that if you make just the ACL you have made "access-list 100 deny ip host 192.168.2.10 host 192.168.3.11"&lt;/P&gt;&lt;P&gt;and apply this to one of the interfaces, "access-group 100 in int inside" for examle,&lt;/P&gt;&lt;P&gt;then it actually looks like:&lt;/P&gt;&lt;P&gt;access-list 100 deny ip host 192.168.2.10 host 192.168.3.11&lt;/P&gt;&lt;P&gt;access-list 100 deny ip any any [hidden]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and therefore no traffic will pass through.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead if you configure it this way:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list 100 deny ip host 192.168.2.10 host 192.168.3.11&lt;/P&gt;&lt;P&gt;access-list 100 permit ip host 192.168.2.10 192.168.3.0 255.255.255.0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and then apply it to an interface, then 192.168.2.10 will be able to communicate with everything in 192.168.3.0 /24 except for .11.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;PS: Kindly mark the post answered if your question is answered, and kindly rate helpful posts.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Mar 2011 22:19:56 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/access-control-list/m-p/1602865#M559088</guid>
      <dc:creator>Shrikant Sundaresh</dc:creator>
      <dc:date>2011-03-27T22:19:56Z</dc:date>
    </item>
    <item>
      <title>Re: Access Control List</title>
      <link>https://community.cisco.com/t5/network-security/access-control-list/m-p/1602866#M559089</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Sundaresh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Yeah， thanks...it's what i want! But...access-list 100 permit ip host 192.168.2.10 192.168.3.0 &lt;SPAN style="color: #ff6600; font-size: 10pt; text-decoration: underline; "&gt;255.255.255.0&lt;/SPAN&gt;, it should be&lt;SPAN style="color: #ff6600; text-decoration: underline; "&gt; 0.0.0.255&lt;/SPAN&gt;,right?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chhayheng&lt;/P&gt;&lt;P&gt;Setecuniversity student&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Mar 2011 02:03:34 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/access-control-list/m-p/1602866#M559089</guid>
      <dc:creator>chhay.heng</dc:creator>
      <dc:date>2011-03-29T02:03:34Z</dc:date>
    </item>
    <item>
      <title>Re: Access Control List</title>
      <link>https://community.cisco.com/t5/network-security/access-control-list/m-p/1602867#M559090</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chem,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm sorry about the mask. It would be 0.0.0.255 on a router, while it would be 255.255.255.0 on a firewall.&lt;/P&gt;&lt;P&gt;I primarily work with firewalls, so intuitively wrote the subnet mask. &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.cisco.com/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Shrikant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Mar 2011 11:56:10 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/access-control-list/m-p/1602867#M559090</guid>
      <dc:creator>Shrikant Sundaresh</dc:creator>
      <dc:date>2011-03-29T11:56:10Z</dc:date>
    </item>
  </channel>
</rss>

