<?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 Zone Based FW &amp; SFTP in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/zone-based-fw-sftp/m-p/1649794#M559297</link>
    <description>&lt;P&gt;I have successfully depoyed a zone based firewall on an ISR and almost everything is working great.&amp;nbsp; The only problem I am having is with SFTP not working.&amp;nbsp; Any thoughts?&amp;nbsp; Here is my config.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class-map type inspect match-any inside-outside-cmap&lt;/P&gt;&lt;P&gt; match protocol dns&lt;/P&gt;&lt;P&gt; match protocol http&lt;/P&gt;&lt;P&gt; match protocol https&lt;/P&gt;&lt;P&gt; match protocol ftp&lt;/P&gt;&lt;P&gt; match protocol icmp&lt;/P&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;policy-map type inspect inside-outside-pmap&lt;/DIV&gt;&lt;DIV&gt; class type inspect inside-outside-cmap&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; inspect &lt;/DIV&gt;&lt;DIV&gt; class class-default&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; drop&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;zone security outside&lt;/DIV&gt;&lt;DIV&gt;zone security inside&lt;/DIV&gt;&lt;DIV&gt;zone-pair security inside-outside source inside destination outside&lt;/DIV&gt;&lt;DIV&gt; service-policy type inspect inside-outside-pmap&lt;/DIV&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 11 Mar 2019 20:11:11 GMT</pubDate>
    <dc:creator>James Walsh</dc:creator>
    <dc:date>2019-03-11T20:11:11Z</dc:date>
    <item>
      <title>Zone Based FW &amp; SFTP</title>
      <link>https://community.cisco.com/t5/network-security/zone-based-fw-sftp/m-p/1649794#M559297</link>
      <description>&lt;P&gt;I have successfully depoyed a zone based firewall on an ISR and almost everything is working great.&amp;nbsp; The only problem I am having is with SFTP not working.&amp;nbsp; Any thoughts?&amp;nbsp; Here is my config.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class-map type inspect match-any inside-outside-cmap&lt;/P&gt;&lt;P&gt; match protocol dns&lt;/P&gt;&lt;P&gt; match protocol http&lt;/P&gt;&lt;P&gt; match protocol https&lt;/P&gt;&lt;P&gt; match protocol ftp&lt;/P&gt;&lt;P&gt; match protocol icmp&lt;/P&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;policy-map type inspect inside-outside-pmap&lt;/DIV&gt;&lt;DIV&gt; class type inspect inside-outside-cmap&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; inspect &lt;/DIV&gt;&lt;DIV&gt; class class-default&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; drop&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;zone security outside&lt;/DIV&gt;&lt;DIV&gt;zone security inside&lt;/DIV&gt;&lt;DIV&gt;zone-pair security inside-outside source inside destination outside&lt;/DIV&gt;&lt;DIV&gt; service-policy type inspect inside-outside-pmap&lt;/DIV&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Mar 2019 20:11:11 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/zone-based-fw-sftp/m-p/1649794#M559297</guid>
      <dc:creator>James Walsh</dc:creator>
      <dc:date>2019-03-11T20:11:11Z</dc:date>
    </item>
    <item>
      <title>Re: Zone Based FW &amp; SFTP</title>
      <link>https://community.cisco.com/t5/network-security/zone-based-fw-sftp/m-p/1649795#M559299</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;sFTP would use port 22 and all traffic would be encrypted. So the firewall will be unable to inspect this traffic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rather, lets try to 'pass' this traffic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;------------------------------&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list 150 permit tcp any any eq 22&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list 151 permit tcp any eq 22 any&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class-map type inspect match-any sftp&lt;/P&gt;&lt;P&gt;match access-group 150&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class-map type inspect sftp_return&lt;/P&gt;&lt;P&gt;match access-group 151&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;policy-map type inspect inside-outside-pmap&lt;/P&gt;&lt;P&gt;class type inspect sftp&lt;/P&gt;&lt;P&gt;pass&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;policy-map type inspect outside-sftp-inside&lt;/P&gt;&lt;P&gt;class type inspect sftp_return&lt;/P&gt;&lt;P&gt;pass&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;zone-pair security outside-inside source outside destination inside&lt;/P&gt;&lt;P&gt;service-policy type inspect outside-sftp-inside&lt;/P&gt;&lt;P&gt;end&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;------------------------------&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Paps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Mar 2011 09:46:37 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/zone-based-fw-sftp/m-p/1649795#M559299</guid>
      <dc:creator>padatta</dc:creator>
      <dc:date>2011-03-23T09:46:37Z</dc:date>
    </item>
    <item>
      <title>Re: Zone Based FW &amp; SFTP</title>
      <link>https://community.cisco.com/t5/network-security/zone-based-fw-sftp/m-p/1649796#M559301</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Paps.&amp;nbsp; I appled the class maps &amp;amp; rules you suggested and then applied them to my policy maps and all is fine... but here's the interesting thing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;they are running sftp on port 21 and I had the allowed in previous map, but it wasn't working and every time the kicked off a transfer it caused the router to crash.&amp;nbsp; bug?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I added the rule you suggested but used port 21 and all is good.&amp;nbsp; I am not sure why the router would crash.&amp;nbsp; do you think it has something to do with trying to inspect and encrypted packed on an allowed port?&amp;nbsp; new config.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list 150 permit tcp any any eq ftp&lt;/P&gt;&lt;P&gt;access-list 151 permit tcp any eq ftp any&lt;/P&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class-map type inspect match-any sftp&lt;/P&gt;&lt;P&gt; match access-group 150&lt;/P&gt;&lt;P&gt;class-map type inspect match-all inside-outside-vpn-cmap&lt;/P&gt;&lt;P&gt; match access-group 111&lt;/P&gt;&lt;P&gt;class-map type inspect match-any sftp_return&lt;/P&gt;&lt;P&gt; match access-group 151&lt;/P&gt;&lt;P&gt;class-map type inspect match-any inside-outside-cmap&lt;/P&gt;&lt;P&gt; match protocol dns&lt;/P&gt;&lt;P&gt; match protocol http&lt;/P&gt;&lt;P&gt; match protocol https&lt;/P&gt;&lt;P&gt; match protocol ftp&lt;/P&gt;&lt;P&gt; match protocol icmp&lt;/P&gt;&lt;P&gt; match protocol tcp&lt;/P&gt;&lt;P&gt; match protocol pop3&lt;/P&gt;&lt;P&gt; match protocol udp&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;policy-map type inspect inside-outside-vpn-pmap&lt;/P&gt;&lt;P&gt; class type inspect sftp_return&lt;/P&gt;&lt;P&gt;&amp;nbsp; pass&lt;/P&gt;&lt;P&gt; class type inspect inside-outside-vpn-cmap&lt;/P&gt;&lt;P&gt;&amp;nbsp; inspect &lt;/P&gt;&lt;P&gt; class class-default&lt;/P&gt;&lt;P&gt;&amp;nbsp; drop&lt;/P&gt;&lt;P&gt;policy-map type inspect inside-outside-pmap&lt;/P&gt;&lt;P&gt; class type inspect sftp&lt;/P&gt;&lt;P&gt;&amp;nbsp; pass&lt;/P&gt;&lt;P&gt; class type inspect inside-outside-cmap&lt;/P&gt;&lt;P&gt;&amp;nbsp; inspect &lt;/P&gt;&lt;P&gt; class class-default&lt;/P&gt;&lt;P&gt;&amp;nbsp; drop&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;zone security outside&lt;/P&gt;&lt;P&gt;zone security inside&lt;/P&gt;&lt;P&gt;zone-pair security inside-outside source inside destination outside&lt;/P&gt;&lt;P&gt; service-policy type inspect inside-outside-pmap&lt;/P&gt;&lt;P&gt;zone-pair security outside-inside source outside destination inside&lt;/P&gt;&lt;P&gt; service-policy type inspect inside-outside-vpn-pmap&lt;/P&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Mar 2011 16:38:18 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/zone-based-fw-sftp/m-p/1649796#M559301</guid>
      <dc:creator>James Walsh</dc:creator>
      <dc:date>2011-03-23T16:38:18Z</dc:date>
    </item>
    <item>
      <title>Re: Zone Based FW &amp; SFTP</title>
      <link>https://community.cisco.com/t5/network-security/zone-based-fw-sftp/m-p/1649797#M559303</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi James,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It seems the crash is related to inspecting encrypted traffic. But it could be for other reasons as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is a known issue though.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://tools.cisco.com/Support/BugToolKit/search/getBugDetails.do?method=fetchBugDetails&amp;amp;bugId=CSCti67905"&gt;http://tools.cisco.com/Support/BugToolKit/search/getBugDetails.do?method=fetchBugDetails&amp;amp;bugId=CSCti67905&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Would be best to open a TAC case to get to the root cause.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Paps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Mar 2011 07:11:55 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/zone-based-fw-sftp/m-p/1649797#M559303</guid>
      <dc:creator>padatta</dc:creator>
      <dc:date>2011-03-24T07:11:55Z</dc:date>
    </item>
  </channel>
</rss>

