<?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 Disable 'Inspect FTP' for one flow in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/disable-inspect-ftp-for-one-flow/m-p/1571389#M609215</link>
    <description>&lt;P&gt;Hi everybody,&lt;/P&gt;&lt;P&gt;I have the global service policy enabled on my internet ASA5510:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: comic sans ms,sans-serif;"&gt;&lt;CODE&gt;class-map global-class&lt;BR /&gt; match default-inspection-traffic&lt;/CODE&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: comic sans ms,sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: comic sans ms,sans-serif;"&gt;&lt;CODE&gt;policy-map global-policy&lt;BR /&gt; class global-class&lt;BR /&gt; inspect ftp&lt;/CODE&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;inspect http&lt;/P&gt;&lt;P&gt;inspect bla bla..&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: comic sans ms,sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;I just wanna disable the inspect FTP for tone connection between two IP addresses. I configured a new service policy for that connection where there is no inspect FTP allowed. Is that correct?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
    <pubDate>Mon, 11 Mar 2019 18:53:42 GMT</pubDate>
    <dc:creator>Infrastructure Group</dc:creator>
    <dc:date>2019-03-11T18:53:42Z</dc:date>
    <item>
      <title>Disable 'Inspect FTP' for one flow</title>
      <link>https://community.cisco.com/t5/network-security/disable-inspect-ftp-for-one-flow/m-p/1571389#M609215</link>
      <description>&lt;P&gt;Hi everybody,&lt;/P&gt;&lt;P&gt;I have the global service policy enabled on my internet ASA5510:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: comic sans ms,sans-serif;"&gt;&lt;CODE&gt;class-map global-class&lt;BR /&gt; match default-inspection-traffic&lt;/CODE&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: comic sans ms,sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: comic sans ms,sans-serif;"&gt;&lt;CODE&gt;policy-map global-policy&lt;BR /&gt; class global-class&lt;BR /&gt; inspect ftp&lt;/CODE&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;inspect http&lt;/P&gt;&lt;P&gt;inspect bla bla..&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: comic sans ms,sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;I just wanna disable the inspect FTP for tone connection between two IP addresses. I configured a new service policy for that connection where there is no inspect FTP allowed. Is that correct?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Mar 2019 18:53:42 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/disable-inspect-ftp-for-one-flow/m-p/1571389#M609215</guid>
      <dc:creator>Infrastructure Group</dc:creator>
      <dc:date>2019-03-11T18:53:42Z</dc:date>
    </item>
    <item>
      <title>Re: Disable 'Inspect FTP' for one flow</title>
      <link>https://community.cisco.com/t5/network-security/disable-inspect-ftp-for-one-flow/m-p/1571390#M609216</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What you can do is remove inspect ftp that you have configured already. then create an access-list denying the traffic you do not want to be inspected and "permit ip any any" following that. Specify this class-map under the global_policy and put it an "inspect ftp" over there. Let me know if this works!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Prapanch&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Oct 2010 07:11:07 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/disable-inspect-ftp-for-one-flow/m-p/1571390#M609216</guid>
      <dc:creator>praprama</dc:creator>
      <dc:date>2010-10-13T07:11:07Z</dc:date>
    </item>
    <item>
      <title>Re: Disable 'Inspect FTP' for one flow</title>
      <link>https://community.cisco.com/t5/network-security/disable-inspect-ftp-for-one-flow/m-p/1571391#M609217</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To put Prapanch suggestion in CLI commands&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;---&lt;/P&gt;&lt;P&gt;access-list ftp-acl deny tcp &lt;HOST1 to="" exclude=""&gt; &lt;HOST2 to="" exclude=""&gt; eq 21&lt;/HOST2&gt;&lt;/HOST1&gt;&lt;/P&gt;&lt;P&gt;access-list ftp-acl permit tcp any any eq 21&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class-map ftp-cm&lt;/P&gt;&lt;P&gt;&amp;nbsp; match access-l ftp-acl&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;policy-map global-policy&lt;/P&gt;&lt;P&gt; class ftp-cm&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; inspect ftp&lt;/P&gt;&lt;P&gt; class global-class&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; inspect http&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; inspect bla bla&lt;/P&gt;&lt;DIV&gt;---&lt;/DIV&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;DIV&gt;I hope it helps.&lt;/DIV&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;DIV&gt;PK&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Oct 2010 18:14:04 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/disable-inspect-ftp-for-one-flow/m-p/1571391#M609217</guid>
      <dc:creator>Panos Kampanakis</dc:creator>
      <dc:date>2010-10-13T18:14:04Z</dc:date>
    </item>
    <item>
      <title>Re: Disable 'Inspect FTP' for one flow</title>
      <link>https://community.cisco.com/t5/network-security/disable-inspect-ftp-for-one-flow/m-p/1571392#M609218</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks guys. Appreciated.&lt;/P&gt;&lt;P&gt;I'm gonna test it by the next mid-week.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Oct 2010 23:29:38 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/disable-inspect-ftp-for-one-flow/m-p/1571392#M609218</guid>
      <dc:creator>Infrastructure Group</dc:creator>
      <dc:date>2010-10-14T23:29:38Z</dc:date>
    </item>
    <item>
      <title>Re: Disable 'Inspect FTP' for one flow</title>
      <link>https://community.cisco.com/t5/network-security/disable-inspect-ftp-for-one-flow/m-p/1571393#M609219</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;After you do, feel free to come back and rate the thread for others' future benefit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PK&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Oct 2010 03:56:13 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/disable-inspect-ftp-for-one-flow/m-p/1571393#M609219</guid>
      <dc:creator>Panos Kampanakis</dc:creator>
      <dc:date>2010-10-15T03:56:13Z</dc:date>
    </item>
  </channel>
</rss>

