<?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 acl on 2851 router in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/acl-on-2851-router/m-p/823478#M973647</link>
    <description>&lt;P&gt;Hi have problems with my ACL, I cannot get passive ftp to work. I can log in but I cannot see any folders inside the FTP site. In active mode there is no problem. The interface has static translation for the FTP server. Here is the ACL. Can anyone help? Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list 112 permit tcp any host x.x.x.x eq ftp&lt;/P&gt;&lt;P&gt;access-list 112 permit tcp any host x.x.x.x eq ftp-data&lt;/P&gt;&lt;P&gt;access-list 112 permit tcp any eq ftp-data host x.x.x.x gt 1024&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 11 Mar 2019 11:24:55 GMT</pubDate>
    <dc:creator>bsudol79p</dc:creator>
    <dc:date>2019-03-11T11:24:55Z</dc:date>
    <item>
      <title>acl on 2851 router</title>
      <link>https://community.cisco.com/t5/network-security/acl-on-2851-router/m-p/823478#M973647</link>
      <description>&lt;P&gt;Hi have problems with my ACL, I cannot get passive ftp to work. I can log in but I cannot see any folders inside the FTP site. In active mode there is no problem. The interface has static translation for the FTP server. Here is the ACL. Can anyone help? Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list 112 permit tcp any host x.x.x.x eq ftp&lt;/P&gt;&lt;P&gt;access-list 112 permit tcp any host x.x.x.x eq ftp-data&lt;/P&gt;&lt;P&gt;access-list 112 permit tcp any eq ftp-data host x.x.x.x gt 1024&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Mar 2019 11:24:55 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/acl-on-2851-router/m-p/823478#M973647</guid>
      <dc:creator>bsudol79p</dc:creator>
      <dc:date>2019-03-11T11:24:55Z</dc:date>
    </item>
    <item>
      <title>Re: acl on 2851 router</title>
      <link>https://community.cisco.com/t5/network-security/acl-on-2851-router/m-p/823479#M973648</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;do you have the acl applied in the right direction ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Oct 2007 19:41:26 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/acl-on-2851-router/m-p/823479#M973648</guid>
      <dc:creator>whisperwind</dc:creator>
      <dc:date>2007-10-12T19:41:26Z</dc:date>
    </item>
    <item>
      <title>Re: acl on 2851 router</title>
      <link>https://community.cisco.com/t5/network-security/acl-on-2851-router/m-p/823480#M973649</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes the ACL is applied correctly because the FTP works when it is in active mode, but it doesn't work when it is in the passive mode.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Oct 2007 20:17:56 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/acl-on-2851-router/m-p/823480#M973649</guid>
      <dc:creator>bsudol79p</dc:creator>
      <dc:date>2007-10-12T20:17:56Z</dc:date>
    </item>
    <item>
      <title>Re: acl on 2851 router</title>
      <link>https://community.cisco.com/t5/network-security/acl-on-2851-router/m-p/823481#M973650</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your access-list is wrong.  Here is the way things work with Active:&lt;/P&gt;&lt;P&gt;control channel&lt;/P&gt;&lt;P&gt; client:&amp;gt;1024 --&amp;gt; server:21&lt;/P&gt;&lt;P&gt;data channel&lt;/P&gt;&lt;P&gt; server:20 --&amp;gt; client:&amp;gt;1024&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The active scenerio you have covered... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But passive works like this:&lt;/P&gt;&lt;P&gt;control channel&lt;/P&gt;&lt;P&gt; client:&amp;gt;1024 --&amp;gt; server:21&lt;/P&gt;&lt;P&gt;data channel&lt;/P&gt;&lt;P&gt; client:&amp;gt;1024 --&amp;gt; server:&amp;gt;1024&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The data channel is negotiated... no port port 20 (if i remember correctly).  To make this work for both active and passive, your acl has to read:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list 112 permit tcp any host x.x.x.x eq ftp &lt;/P&gt;&lt;P&gt;access-list 112 remark FOR ACTIVE&lt;/P&gt;&lt;P&gt;access-list 112 permit tcp any eq ftp-data host x.x.x.x gt 1024 &lt;/P&gt;&lt;P&gt;access-list 112 remark FOR PASSIVE&lt;/P&gt;&lt;P&gt;access-list 112 permit tcp any gt 1024 host x.x.x.x gt 1024 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Oct 2007 21:56:10 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/acl-on-2851-router/m-p/823481#M973650</guid>
      <dc:creator>saro</dc:creator>
      <dc:date>2007-10-12T21:56:10Z</dc:date>
    </item>
    <item>
      <title>Re: acl on 2851 router</title>
      <link>https://community.cisco.com/t5/network-security/acl-on-2851-router/m-p/823482#M973651</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It works, Thanks for all the help!!!!!!!!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Oct 2007 14:30:20 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/acl-on-2851-router/m-p/823482#M973651</guid>
      <dc:creator>bsudol79p</dc:creator>
      <dc:date>2007-10-15T14:30:20Z</dc:date>
    </item>
  </channel>
</rss>

