<?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 FTP inspection in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/ftp-inspection/m-p/2182705#M360886</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The first suggested solution was suggested just by the mere fact that it's an option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The configuration is based on the interfaces but it requires more configuration than the second option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, let's stick to the second one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By default the ASA has this configuration:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Class-map inspection_default&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/STRONG&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt; &lt;STRONG&gt;match default-inspection-traffic&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's applied globally and works for most of the traffic because it matches based on the protocol [L4]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, this option matches based on the IP address of the packet instead of the interface.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By using the Access-list and its "&lt;STRONG&gt;deny&lt;/STRONG&gt;" statement we can exclude the ASA to match the traffic agains the inspection policies.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So basically, we can use a "&lt;STRONG&gt;deny&lt;/STRONG&gt;" statement for all the traffic that comes from a specific interface and a "&lt;STRONG&gt;permit&lt;/STRONG&gt;" to match the rest.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That's what the Access-list does.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then the class-map will just be the link between the Access-list and the policy-map that is applied globally.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it all made sense.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 04 Mar 2013 21:05:55 GMT</pubDate>
    <dc:creator>jocamare</dc:creator>
    <dc:date>2013-03-04T21:05:55Z</dc:date>
    <item>
      <title>FTP inspection</title>
      <link>https://community.cisco.com/t5/network-security/ftp-inspection/m-p/2182700#M360878</link>
      <description>&lt;P&gt;Right now I have ftp inspection enabled on an asa 5510 (code version 8.2(5)), is it possible to disable that for just a specific interface or does it only a global command? Thanks in advance!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;--Ben&lt;/P&gt;</description>
      <pubDate>Tue, 12 Mar 2019 01:09:15 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/ftp-inspection/m-p/2182700#M360878</guid>
      <dc:creator>Benjamin Saito</dc:creator>
      <dc:date>2019-03-12T01:09:15Z</dc:date>
    </item>
    <item>
      <title>FTP inspection</title>
      <link>https://community.cisco.com/t5/network-security/ftp-inspection/m-p/2182701#M360879</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Depending on the setup it can be approached in two different ways.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the traffic will only flow between two interfaces&amp;nbsp; then we can create two specific policy-maps, one per interface, and have&amp;nbsp; the same rules we have globally, except for the FTP inspection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The&amp;nbsp; other solution, that works with few or many interfaces, will be to use&amp;nbsp; an Access-list to match the traffic we want to be inspected.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When using&amp;nbsp; the Access-lists we can define a deny statement for the FTP traffic,&amp;nbsp; which is translated as "don't inspect this" and keep the FTP inspection&amp;nbsp; globally in case there's some traffic in need for it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Access-list inspection deny ip &lt;/STRONG&gt;&lt;SOURCE ip=""&gt; &lt;DEST ip=""&gt; eq ftp&lt;/DEST&gt;&lt;/SOURCE&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Access-list inspection permit ip any any&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;class-map inspection_default&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;no&amp;nbsp; match default-inspection-traffic&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;match access-list inspection&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;May i ask, why do you want to disable the FTP inspection?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Mar 2013 16:29:43 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/ftp-inspection/m-p/2182701#M360879</guid>
      <dc:creator>jocamare</dc:creator>
      <dc:date>2013-03-04T16:29:43Z</dc:date>
    </item>
    <item>
      <title>FTP inspection</title>
      <link>https://community.cisco.com/t5/network-security/ftp-inspection/m-p/2182702#M360881</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I was disabling ftp inspection for a customer that is trying to use ftps. I disabled it and it was working, however other customers ftp sites are not working now. So I guess what I have to do is the second option you listed because there are a few interfaces on this firewall.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you explain to me what these commands do?&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;class-map inspection_default&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;no&amp;nbsp; match default-inspection-traffic&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;match access-list inspection&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Mar 2013 19:10:28 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/ftp-inspection/m-p/2182702#M360881</guid>
      <dc:creator>Benjamin Saito</dc:creator>
      <dc:date>2013-03-04T19:10:28Z</dc:date>
    </item>
    <item>
      <title>FTP inspection</title>
      <link>https://community.cisco.com/t5/network-security/ftp-inspection/m-p/2182703#M360883</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;Class-map inspection_default&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ---&lt;/STRONG&gt;Default class-map&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;no&amp;nbsp; match default-inspection-traffic&amp;nbsp;&amp;nbsp; --&lt;/STRONG&gt;Current configuration, matches based on the protocol&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;match access-list inspection&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; --&lt;/STRONG&gt;Matches based on IP addresses&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Mar 2013 19:14:33 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/ftp-inspection/m-p/2182703#M360883</guid>
      <dc:creator>jocamare</dc:creator>
      <dc:date>2013-03-04T19:14:33Z</dc:date>
    </item>
    <item>
      <title>FTP inspection</title>
      <link>https://community.cisco.com/t5/network-security/ftp-inspection/m-p/2182704#M360885</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Forgive me if I am asking obvious questions, I've never configured a policy map before. Basically I have several interface on a shared firewall, and one interface needs ftp inspection turned off. Will your first option work for that? Just create a seperate service policy rule for that specific interface? I am going through the asdm and adding one but am a little uneasy about applying it because I don't want this to effect all the other interface. If I create a new service policy then that won't effect the global policy that is already in place will it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Mar 2013 20:54:00 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/ftp-inspection/m-p/2182704#M360885</guid>
      <dc:creator>Benjamin Saito</dc:creator>
      <dc:date>2013-03-04T20:54:00Z</dc:date>
    </item>
    <item>
      <title>FTP inspection</title>
      <link>https://community.cisco.com/t5/network-security/ftp-inspection/m-p/2182705#M360886</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The first suggested solution was suggested just by the mere fact that it's an option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The configuration is based on the interfaces but it requires more configuration than the second option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, let's stick to the second one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By default the ASA has this configuration:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Class-map inspection_default&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/STRONG&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt; &lt;STRONG&gt;match default-inspection-traffic&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's applied globally and works for most of the traffic because it matches based on the protocol [L4]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, this option matches based on the IP address of the packet instead of the interface.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By using the Access-list and its "&lt;STRONG&gt;deny&lt;/STRONG&gt;" statement we can exclude the ASA to match the traffic agains the inspection policies.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So basically, we can use a "&lt;STRONG&gt;deny&lt;/STRONG&gt;" statement for all the traffic that comes from a specific interface and a "&lt;STRONG&gt;permit&lt;/STRONG&gt;" to match the rest.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That's what the Access-list does.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then the class-map will just be the link between the Access-list and the policy-map that is applied globally.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it all made sense.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Mar 2013 21:05:55 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/ftp-inspection/m-p/2182705#M360886</guid>
      <dc:creator>jocamare</dc:creator>
      <dc:date>2013-03-04T21:05:55Z</dc:date>
    </item>
    <item>
      <title>FTP inspection</title>
      <link>https://community.cisco.com/t5/network-security/ftp-inspection/m-p/2182706#M360887</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well I already had the service policy created for the specific interface, I just hadn't applied it yet because I wasn't sure if it would mess with all the other interfaces (default global policy is still there).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the second option you listed, I am confused about these commands:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Access-list inspection deny ip &lt;/STRONG&gt;&lt;SOURCE ip=""&gt; &lt;DEST ip=""&gt; eq ftp&lt;/DEST&gt;&lt;/SOURCE&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Access-list inspection permit ip any any&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Will this disallow all traffic over port 21? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Mar 2013 21:22:13 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/ftp-inspection/m-p/2182706#M360887</guid>
      <dc:creator>Benjamin Saito</dc:creator>
      <dc:date>2013-03-04T21:22:13Z</dc:date>
    </item>
    <item>
      <title>FTP inspection</title>
      <link>https://community.cisco.com/t5/network-security/ftp-inspection/m-p/2182707#M360888</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For the fist option you will have to apply a service-policy on both [incoming &amp;amp; outgoing] interfaces.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With the second option, using Access-lists,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Access-list inspection deny ip &lt;/STRONG&gt;&lt;SOURCE ip=""&gt; &lt;DEST ip=""&gt; &lt;STRONG&gt;eq ftp&lt;/STRONG&gt;&lt;/DEST&gt;&lt;/SOURCE&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The &lt;STRONG&gt;"source IP&lt;/STRONG&gt;" section represents the traffic you don't want to inspect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The "&lt;STRONG&gt;dst IP&lt;/STRONG&gt;" command represents the destination of the traffic you don't want to be inspected, it will normally be "&lt;STRONG&gt;any&lt;/STRONG&gt;"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The "&lt;STRONG&gt;eq ftp&lt;/STRONG&gt;" means that only the ftp traffic from these sources won't be inspected, the rest of the traffic will.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Finally, the &lt;STRONG&gt;Access-list inspection permit ip any any &lt;/STRONG&gt;statement is making sure that the rest of traffic, including the one from other interfaces, will be matched against the policies and its traffic inspected.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Mar 2013 21:45:13 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/ftp-inspection/m-p/2182707#M360888</guid>
      <dc:creator>jocamare</dc:creator>
      <dc:date>2013-03-04T21:45:13Z</dc:date>
    </item>
    <item>
      <title>FTP inspection</title>
      <link>https://community.cisco.com/t5/network-security/ftp-inspection/m-p/2182708#M360889</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for all the information. The customer I was going to do this for no longer needs it done, ftp and ftps is working for him now. I am sure I will have to refer to this information sometime in the future. Thanks again.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Mar 2013 21:51:27 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/ftp-inspection/m-p/2182708#M360889</guid>
      <dc:creator>Benjamin Saito</dc:creator>
      <dc:date>2013-03-04T21:51:27Z</dc:date>
    </item>
    <item>
      <title>FTP inspection</title>
      <link>https://community.cisco.com/t5/network-security/ftp-inspection/m-p/2182709#M360890</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I spoke too soon. They still need it set up. I will give it a shot tomorrow and let you know how it goes. Just to make sure, running the "no match default-inspection-traffic" command will not have any effect on the default global policy that's already in place?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Mar 2013 22:10:13 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/ftp-inspection/m-p/2182709#M360890</guid>
      <dc:creator>Benjamin Saito</dc:creator>
      <dc:date>2013-03-04T22:10:13Z</dc:date>
    </item>
    <item>
      <title>FTP inspection</title>
      <link>https://community.cisco.com/t5/network-security/ftp-inspection/m-p/2182710#M360891</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It won't have any negative effect, it will just remove that as matching parameter to use the Access-lists instead.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Mar 2013 22:12:15 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/ftp-inspection/m-p/2182710#M360891</guid>
      <dc:creator>jocamare</dc:creator>
      <dc:date>2013-03-04T22:12:15Z</dc:date>
    </item>
    <item>
      <title>FTP inspection</title>
      <link>https://community.cisco.com/t5/network-security/ftp-inspection/m-p/2182711#M360892</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I understand, this poarticular customer doesn't have a list of source ip's that will be connecting to the server. Will this configuration work then:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Access-list inspection deny ip &lt;/STRONG&gt;any "server ip" &lt;STRONG&gt;eq ftp&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Access-list inspection permit ip any any&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Mar 2013 22:16:04 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/ftp-inspection/m-p/2182711#M360892</guid>
      <dc:creator>Benjamin Saito</dc:creator>
      <dc:date>2013-03-04T22:16:04Z</dc:date>
    </item>
    <item>
      <title>FTP inspection</title>
      <link>https://community.cisco.com/t5/network-security/ftp-inspection/m-p/2182712#M360893</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Great, looks like you get it now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, that setup will work too.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Mar 2013 22:17:59 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/ftp-inspection/m-p/2182712#M360893</guid>
      <dc:creator>jocamare</dc:creator>
      <dc:date>2013-03-04T22:17:59Z</dc:date>
    </item>
    <item>
      <title>Re: FTP inspection</title>
      <link>https://community.cisco.com/t5/network-security/ftp-inspection/m-p/2182713#M360894</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I ran into a bit of a problem, I created the access list, put the correct rules in but I got this error when i put in the "match access-list inspection" command:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"This match command is not allowed in a class-map that is associated to multiple inspect commands."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I ran the commands in the order you listed above and I got the error above. If I run the "match access-list inpection" first it accepts the command but then will not allow me to run the "no match default-inspection-traffic" command. It will give me this error:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"ERROR: Removing 'match default-inspection-traffic' is not allowed when class-map is being used for more than one 'inspect' command."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the output on the cli i am getting now:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class-map inspection_default&lt;/P&gt;&lt;P&gt; match access-list inspection&lt;/P&gt;&lt;P&gt; match default-inspection-traffic&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this acceptable? Will all traffic use the access-list now instead of the default-inspection-traffic?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Mar 2013 15:22:43 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/ftp-inspection/m-p/2182713#M360894</guid>
      <dc:creator>Benjamin Saito</dc:creator>
      <dc:date>2013-03-05T15:22:43Z</dc:date>
    </item>
    <item>
      <title>Re: FTP inspection</title>
      <link>https://community.cisco.com/t5/network-security/ftp-inspection/m-p/2182714#M360895</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you leave it like that it will still match packets either based on&amp;nbsp; the protocol or the IP addresss. So it won't work for what we want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We will need to copy the output of the "show run policy" command because we are going to remove the class-map that is associated with it and its inspection commands in order to be able to match the Access-list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is an example of what you will have to do:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1- Show run policy&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;output&lt;/EM&gt; &lt;/P&gt;&lt;P&gt;-----------&lt;/P&gt;&lt;P&gt;policy-map global_policy&lt;/P&gt;&lt;P&gt; class inspection_default&lt;/P&gt;&lt;P&gt;&amp;nbsp; inspect icmp&lt;/P&gt;&lt;P&gt;&amp;nbsp; inspect http&lt;/P&gt;&lt;P&gt;&amp;nbsp; inspect ftp&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2- policy-map global_policy&lt;/P&gt;&lt;P&gt;no class inspection_default&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3-class inspection_default&lt;/P&gt;&lt;P&gt;match access-list inspection&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4- policy-map global_policy&lt;/P&gt;&lt;P&gt;class inspection_default&lt;/P&gt;&lt;P&gt;&amp;nbsp; inspect icmp&lt;/P&gt;&lt;P&gt;&amp;nbsp; inspect http&lt;/P&gt;&lt;P&gt;&amp;nbsp; inspect ftp&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Mar 2013 18:13:14 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/ftp-inspection/m-p/2182714#M360895</guid>
      <dc:creator>jocamare</dc:creator>
      <dc:date>2013-03-05T18:13:14Z</dc:date>
    </item>
    <item>
      <title>Re: FTP inspection</title>
      <link>https://community.cisco.com/t5/network-security/ftp-inspection/m-p/2182715#M360896</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I didn't perform the step above, at the moment this is what I have on the firewall:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class-map inspection_default&lt;/P&gt;&lt;P&gt; match access-list inspection&lt;/P&gt;&lt;P&gt; match default-inspection-traffic&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Everything seems to be working so I am not going to change anything. Thanks again for your help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Mar 2013 17:23:19 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/ftp-inspection/m-p/2182715#M360896</guid>
      <dc:creator>Benjamin Saito</dc:creator>
      <dc:date>2013-03-08T17:23:19Z</dc:date>
    </item>
    <item>
      <title>Re: FTP inspection</title>
      <link>https://community.cisco.com/t5/network-security/ftp-inspection/m-p/2182716#M360897</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;On the class-map it matches the Access-list first and will not get the to the "&lt;STRONG&gt;match default-inspection-traffic&lt;/STRONG&gt;" so it's like it isn't even there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suggested steps were in order to have a clear configuration, glad it works.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Mar 2013 18:42:51 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/ftp-inspection/m-p/2182716#M360897</guid>
      <dc:creator>jocamare</dc:creator>
      <dc:date>2013-03-08T18:42:51Z</dc:date>
    </item>
  </channel>
</rss>

