<?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 configuration in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/acl-configuration/m-p/1618663#M558981</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot for your answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will try it and mark the post answered if it works.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 29 Mar 2011 15:31:11 GMT</pubDate>
    <dc:creator>genseb13011</dc:creator>
    <dc:date>2011-03-29T15:31:11Z</dc:date>
    <item>
      <title>ACL configuration</title>
      <link>https://community.cisco.com/t5/network-security/acl-configuration/m-p/1618661#M558976</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to replace my firewall by using ACL on my Cisco 881 for testing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could it be possible?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;Configuration:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list &lt;EM&gt;n°&lt;/EM&gt; permit ip host &lt;EM&gt;distant_site_public_IP&lt;/EM&gt; host &lt;EM&gt;my_public_IP&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;access-list &lt;EM&gt;n°&lt;/EM&gt; permit tcp any host &lt;EM&gt;my_public_IP &lt;/EM&gt;eq &lt;EM&gt;port&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This configuration works fine for SSH in exemple.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can't allow "web pages" flow!!!&lt;/P&gt;&lt;P&gt;When i put: access-list &lt;EM&gt;n°&lt;/EM&gt; permit tcp any host &lt;EM&gt;my_public_IP &lt;/EM&gt;eq &lt;EM&gt;www&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;It does'nt work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With Wireshark, I've seen that random ports are used to set the "http connexion".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How could I resolve it keeping the best security configuration?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I place my ACL on WAN port.&lt;/P&gt;&lt;P&gt;Maybe I have to place it on LAN or create others ACL list to complete the configuration? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for your answers.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Mar 2019 20:14:16 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/acl-configuration/m-p/1618661#M558976</guid>
      <dc:creator>genseb13011</dc:creator>
      <dc:date>2019-03-11T20:14:16Z</dc:date>
    </item>
    <item>
      <title>Re: ACL configuration</title>
      <link>https://community.cisco.com/t5/network-security/acl-configuration/m-p/1618662#M558979</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sebastien,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I understand correctly, you are trying to permit replies from web sites on the WAN interface.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The access-list would look something like:&lt;/P&gt;&lt;P&gt;access-list &lt;EM&gt;n°&lt;/EM&gt; permit tcp any eq www &lt;EM&gt;host my_public_IP&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;access-list &lt;EM&gt;n°&lt;/EM&gt; permit tcp any eq https &lt;EM&gt;host my_public_IP&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Provided that all internal hosts are being PAT to&lt;EM&gt; my_public_ip&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alternately,&amp;nbsp; you also have the option of configuring an IOS firewall (CBAC or ZBF)&amp;nbsp; on routers, which will allow replies to outgoing connections.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Configuration guides:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;CBAC: &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://www.cisco.com/en/US/docs/ios/12_0/security/configuration/guide/sccbac.html"&gt;http://www.cisco.com/en/US/docs/ios/12_0/security/configuration/guide/sccbac.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;ZBF: &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://www.cisco.com/en/US/products/sw/secursw/ps1018/products_tech_note09186a00808bc994.shtml"&gt;http://www.cisco.com/en/US/products/sw/secursw/ps1018/products_tech_note09186a00808bc994.shtml&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Shrikant&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. Thanks.&lt;BR /&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Mar 2011 14:48:10 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/acl-configuration/m-p/1618662#M558979</guid>
      <dc:creator>Shrikant Sundaresh</dc:creator>
      <dc:date>2011-03-29T14:48:10Z</dc:date>
    </item>
    <item>
      <title>Re: ACL configuration</title>
      <link>https://community.cisco.com/t5/network-security/acl-configuration/m-p/1618663#M558981</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot for your answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will try it and mark the post answered if it works.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Mar 2011 15:31:11 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/acl-configuration/m-p/1618663#M558981</guid>
      <dc:creator>genseb13011</dc:creator>
      <dc:date>2011-03-29T15:31:11Z</dc:date>
    </item>
  </channel>
</rss>

