<?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 How to Block this using Extended ACL in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/how-to-block-this-using-extended-acl/m-p/2005420#M921311</link>
    <description>&lt;P&gt;Hi All, Here is the scenario which i am using&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://community.cisco.com/legacyfs/online/legacy/9/2/4/97429-Untitled.png" alt="Untitled.png" class="jive-image-thumbnail jive-image" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="text-decoration: underline;"&gt;TASK:&lt;/STRONG&gt; I want to block all the data stream destined to 10.10.10.2 which travel &lt;STRONG&gt;from &lt;/STRONG&gt;port 80 of http server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying the Extended access list as follows&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;access-list 131 deny tcp host 10.10.10.1 eq www host 10.10.10.2&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;access-list 131 permit ip any any&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ip access-group 131 out &lt;/STRONG&gt;at FastEthernet interface of HTTP server router&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However it is not working as expected, Everything works normal.Where i am wrong?&lt;/P&gt;</description>
    <pubDate>Fri, 21 Feb 2020 12:42:49 GMT</pubDate>
    <dc:creator>veddotcom</dc:creator>
    <dc:date>2020-02-21T12:42:49Z</dc:date>
    <item>
      <title>How to Block this using Extended ACL</title>
      <link>https://community.cisco.com/t5/network-security/how-to-block-this-using-extended-acl/m-p/2005420#M921311</link>
      <description>&lt;P&gt;Hi All, Here is the scenario which i am using&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://community.cisco.com/legacyfs/online/legacy/9/2/4/97429-Untitled.png" alt="Untitled.png" class="jive-image-thumbnail jive-image" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="text-decoration: underline;"&gt;TASK:&lt;/STRONG&gt; I want to block all the data stream destined to 10.10.10.2 which travel &lt;STRONG&gt;from &lt;/STRONG&gt;port 80 of http server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying the Extended access list as follows&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;access-list 131 deny tcp host 10.10.10.1 eq www host 10.10.10.2&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;access-list 131 permit ip any any&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ip access-group 131 out &lt;/STRONG&gt;at FastEthernet interface of HTTP server router&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However it is not working as expected, Everything works normal.Where i am wrong?&lt;/P&gt;</description>
      <pubDate>Fri, 21 Feb 2020 12:42:49 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/how-to-block-this-using-extended-acl/m-p/2005420#M921311</guid>
      <dc:creator>veddotcom</dc:creator>
      <dc:date>2020-02-21T12:42:49Z</dc:date>
    </item>
    <item>
      <title>How to Block this using Extended ACL</title>
      <link>https://community.cisco.com/t5/network-security/how-to-block-this-using-extended-acl/m-p/2005421#M921312</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bro&lt;/P&gt;&lt;P&gt;In R1, just do this if you're plannin to block the source from the LAN in R1 to 10.10.10.2, and all should be good.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;access-list 100 deny tcp any host 10.10.10.2 eq 80&lt;/P&gt;&lt;P&gt;access-list 100 permit ip any any&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;interface FastEthernet 0/0&lt;/P&gt;&lt;P&gt; description ### WAN Link ###&lt;/P&gt;&lt;P&gt; ip address 10.10.10.1 255.255.255.252&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;interface FastEthernet 0/1&lt;/P&gt;&lt;P&gt; description ### LAN Link ###&lt;/P&gt;&lt;P&gt; ip access-group 100 in&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, if you're trying to block R1 (from R1 itself) in reaching R2 10.10.10.2 via TCP/80, then you'll need to use the MPF method shown below;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;class-map CM_HTTP&lt;/P&gt;&lt;P&gt; match access-group 100&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;policy-map PM_HTTP&lt;/P&gt;&lt;P&gt; class CM_HTTP&lt;/P&gt;&lt;P&gt;&amp;nbsp; drop&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;control-plane&lt;/P&gt;&lt;P&gt; service-policy output PM_HTTP&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;P/S: If you think this comment is useful, please do rate them nicely &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 19 Aug 2012 23:15:27 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/how-to-block-this-using-extended-acl/m-p/2005421#M921312</guid>
      <dc:creator>Ramraj Sivagnanam Sivajanam</dc:creator>
      <dc:date>2012-08-19T23:15:27Z</dc:date>
    </item>
  </channel>
</rss>

