<?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 inspect ftp protocol via zone based firewall in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/inspect-ftp-protocol-via-zone-based-firewall/m-p/2670052#M193351</link>
    <description>&lt;P&gt;&amp;nbsp;Hi everybody&amp;nbsp; guru.&amp;nbsp; I have some issue with permit ftp traffic from zona A where locate my cient to zone B where locate my ftp server.&lt;/P&gt;&lt;P&gt;I permit via access list from network A to Network B the needed network and ports and&amp;nbsp; in&amp;nbsp; class map add ftp protocol.&amp;nbsp; But the client can connect to ftp server, but cannot listing and downloading the soft from ftp server. In the client&amp;nbsp; show timeout connection. How can I fix this issue.&lt;/P&gt;&lt;P&gt;thanks all before.&lt;/P&gt;</description>
    <pubDate>Tue, 12 Mar 2019 06:20:15 GMT</pubDate>
    <dc:creator>elnurh</dc:creator>
    <dc:date>2019-03-12T06:20:15Z</dc:date>
    <item>
      <title>inspect ftp protocol via zone based firewall</title>
      <link>https://community.cisco.com/t5/network-security/inspect-ftp-protocol-via-zone-based-firewall/m-p/2670052#M193351</link>
      <description>&lt;P&gt;&amp;nbsp;Hi everybody&amp;nbsp; guru.&amp;nbsp; I have some issue with permit ftp traffic from zona A where locate my cient to zone B where locate my ftp server.&lt;/P&gt;&lt;P&gt;I permit via access list from network A to Network B the needed network and ports and&amp;nbsp; in&amp;nbsp; class map add ftp protocol.&amp;nbsp; But the client can connect to ftp server, but cannot listing and downloading the soft from ftp server. In the client&amp;nbsp; show timeout connection. How can I fix this issue.&lt;/P&gt;&lt;P&gt;thanks all before.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Mar 2019 06:20:15 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/inspect-ftp-protocol-via-zone-based-firewall/m-p/2670052#M193351</guid>
      <dc:creator>elnurh</dc:creator>
      <dc:date>2019-03-12T06:20:15Z</dc:date>
    </item>
    <item>
      <title>It's hard to say how to fix</title>
      <link>https://community.cisco.com/t5/network-security/inspect-ftp-protocol-via-zone-based-firewall/m-p/2670053#M193354</link>
      <description>&lt;P&gt;It's hard to say how to fix it as you don't show what you configured ... But it should work with a config like the following:&lt;/P&gt;

&lt;PRE&gt;
ip access-list ext FTP-COMMUNICATION
 permit ip 10.10.10.0 0.0.0.255 host 192.0.2.21
!
class-map type inspect match-all FTP-TO-SERVER
 match access-group name FTP-COMMUNICATION
 match protocol ftp
&lt;/PRE&gt;

&lt;P&gt;Here I only specify the L3 communication in the ACL, the information that it has to be FTP is taken from the &lt;EM&gt;match protocol&lt;/EM&gt;.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jul 2015 09:55:28 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/inspect-ftp-protocol-via-zone-based-firewall/m-p/2670053#M193354</guid>
      <dc:creator>Karsten Iwen</dc:creator>
      <dc:date>2015-07-27T09:55:28Z</dc:date>
    </item>
    <item>
      <title>there are piece of my config</title>
      <link>https://community.cisco.com/t5/network-security/inspect-ftp-protocol-via-zone-based-firewall/m-p/2670054#M193356</link>
      <description>&lt;P&gt;there are piece of my config&lt;/P&gt;&lt;P&gt;(&lt;/P&gt;&lt;P&gt;ip access-list extended from_term_to_servers&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;&amp;nbsp;permit tcp object-group permit_terminal-point object-group servers eq 8091&lt;BR /&gt;&amp;nbsp;permit udp object-group permit_terminal-point object-group servers eq ntp&lt;BR /&gt;&amp;nbsp;permit tcp object-group permit_terminal-point object-group server_254.4 eq ftp&lt;BR /&gt;&amp;nbsp;permit tcp object-group permit_terminal-point object-group server_254.4 eq ftp-data&lt;BR /&gt;&amp;nbsp;permit tcp object-group permit_terminal-point object-group server_254.4 range 64000 65535&lt;/P&gt;&lt;P&gt;class-map type inspect match-any from_terminal&lt;BR /&gt;&amp;nbsp;match access-group name from_term_to_servers&lt;BR /&gt;class-map type inspect match-any tcp_ftp&lt;BR /&gt;&amp;nbsp;match protocol ftp&lt;BR /&gt;&amp;nbsp;match protocol tcp&lt;BR /&gt;&amp;nbsp;match protocol udp&lt;BR /&gt;&amp;nbsp;match protocol icmp&lt;BR /&gt;class-map type inspect match-all term_net_servers&lt;BR /&gt;&amp;nbsp;match class-map from_terminal&lt;BR /&gt;&amp;nbsp;match class-map tcp_ftp&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;policy-map type inspect from_terminal_p&lt;BR /&gt;&amp;nbsp;class type inspect term_net_servers&lt;BR /&gt;&amp;nbsp; inspect&lt;BR /&gt;&amp;nbsp;class class-default&lt;BR /&gt;&amp;nbsp; drop&lt;/P&gt;&lt;P&gt;zone-pair security terminal_s source terminal destination ivlanA&lt;BR /&gt;&amp;nbsp;service-policy type inspect from_terminal_p&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but ftp protocol not working.&amp;nbsp; How can I check that my rules and policy working right&amp;nbsp; and may be issue is not in the router and ZBF ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Jul 2015 11:38:16 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/inspect-ftp-protocol-via-zone-based-firewall/m-p/2670054#M193356</guid>
      <dc:creator>elnurh</dc:creator>
      <dc:date>2015-07-28T11:38:16Z</dc:date>
    </item>
    <item>
      <title>Build a new ACL only for the</title>
      <link>https://community.cisco.com/t5/network-security/inspect-ftp-protocol-via-zone-based-firewall/m-p/2670055#M193360</link>
      <description>&lt;P&gt;Build a new ACL only for the FTP-communication as shown above and it should work.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Jul 2015 11:51:37 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/inspect-ftp-protocol-via-zone-based-firewall/m-p/2670055#M193360</guid>
      <dc:creator>Karsten Iwen</dc:creator>
      <dc:date>2015-07-28T11:51:37Z</dc:date>
    </item>
    <item>
      <title>I did that you say about ftp?</title>
      <link>https://community.cisco.com/t5/network-security/inspect-ftp-protocol-via-zone-based-firewall/m-p/2670056#M193362</link>
      <description>&lt;P&gt;I did that you say about ftp? not working. I create certain access list for ftp, create class map include&amp;nbsp; access list and protocol only ftp and place it in policy map, but the rule and ftp inspection not work.&amp;nbsp;&amp;nbsp; The have access to ftp server but cannot listing to directory and downloading anything.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Aug 2015 11:51:28 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/inspect-ftp-protocol-via-zone-based-firewall/m-p/2670056#M193362</guid>
      <dc:creator>elnurh</dc:creator>
      <dc:date>2015-08-05T11:51:28Z</dc:date>
    </item>
    <item>
      <title>What have you configured</title>
      <link>https://community.cisco.com/t5/network-security/inspect-ftp-protocol-via-zone-based-firewall/m-p/2670057#M193365</link>
      <description>&lt;P&gt;What have you configured exactly?&lt;/P&gt;</description>
      <pubDate>Wed, 05 Aug 2015 12:15:50 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/inspect-ftp-protocol-via-zone-based-firewall/m-p/2670057#M193365</guid>
      <dc:creator>Karsten Iwen</dc:creator>
      <dc:date>2015-08-05T12:15:50Z</dc:date>
    </item>
    <item>
      <title>ip access-list extended ftp</title>
      <link>https://community.cisco.com/t5/network-security/inspect-ftp-protocol-via-zone-based-firewall/m-p/2670058#M193368</link>
      <description>&lt;P&gt;ip access-list extended ftp_term&lt;BR /&gt;&amp;nbsp;permit tcp object-group permit_terminal-point object-group server eq ftp&lt;BR /&gt;&amp;nbsp;permit tcp object-group permit_terminal-point object-group server eq ftp-data&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;class-map type inspect match-all ftp_for_term&lt;BR /&gt;&amp;nbsp;match access-group name ftp_term&lt;BR /&gt;&amp;nbsp;match protocol ftp&lt;/P&gt;&lt;P&gt;policy-map type inspect from_terminal_p&lt;BR /&gt;&amp;nbsp;class type inspect term_net_servers&lt;BR /&gt;&amp;nbsp; inspect&lt;BR /&gt;&amp;nbsp;class type inspect ftp_for_term&lt;BR /&gt;&amp;nbsp; inspect&lt;BR /&gt;&amp;nbsp;class class-default&lt;BR /&gt;&amp;nbsp; drop&lt;/P&gt;</description>
      <pubDate>Wed, 05 Aug 2015 14:40:26 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/inspect-ftp-protocol-via-zone-based-firewall/m-p/2670058#M193368</guid>
      <dc:creator>elnurh</dc:creator>
      <dc:date>2015-08-05T14:40:26Z</dc:date>
    </item>
    <item>
      <title>and I need to inspect ftps</title>
      <link>https://community.cisco.com/t5/network-security/inspect-ftp-protocol-via-zone-based-firewall/m-p/2670059#M193371</link>
      <description>&lt;P&gt;and I need to inspect ftps too.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;any one can help me in this issue ?&lt;/P&gt;</description>
      <pubDate>Thu, 06 Aug 2015 08:06:01 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/inspect-ftp-protocol-via-zone-based-firewall/m-p/2670059#M193371</guid>
      <dc:creator>elnurh</dc:creator>
      <dc:date>2015-08-06T08:06:01Z</dc:date>
    </item>
  </channel>
</rss>

