<?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 Re: Unable to Access FP console after removing access list. in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/unable-to-access-fp-console-after-removing-access-list/m-p/3302740#M1041451</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Contact Cisco TAC to see if they can help you resolve it.&lt;BR /&gt;They probably have some expert commands to fix that.&lt;BR /&gt;&lt;BR /&gt;br, Micke</description>
    <pubDate>Wed, 27 Dec 2017 11:00:26 GMT</pubDate>
    <dc:creator>mikael.lahtela</dc:creator>
    <dc:date>2017-12-27T11:00:26Z</dc:date>
    <item>
      <title>Unable to Access FP console after removing access list.</title>
      <link>https://community.cisco.com/t5/network-security/unable-to-access-fp-console-after-removing-access-list/m-p/3300773#M1041450</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Need help on resolving this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We setup new virtual FMC and under system&amp;gt;configuration in &amp;gt; Access List we had Any under host and 443, 22 under ports for some reason one of our admin removed Any Any entries and added a specific machine to Access list and then removed that as well and post which we are not able to access the console nor take SSH of FMC.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have access to VM console of this box and need help in setting up FMC access back to any host on port 443 and 22.&lt;/P&gt;</description>
      <pubDate>Fri, 21 Feb 2020 15:01:14 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/unable-to-access-fp-console-after-removing-access-list/m-p/3300773#M1041450</guid>
      <dc:creator>hrithiktej</dc:creator>
      <dc:date>2020-02-21T15:01:14Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to Access FP console after removing access list.</title>
      <link>https://community.cisco.com/t5/network-security/unable-to-access-fp-console-after-removing-access-list/m-p/3302740#M1041451</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Contact Cisco TAC to see if they can help you resolve it.&lt;BR /&gt;They probably have some expert commands to fix that.&lt;BR /&gt;&lt;BR /&gt;br, Micke</description>
      <pubDate>Wed, 27 Dec 2017 11:00:26 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/unable-to-access-fp-console-after-removing-access-list/m-p/3302740#M1041451</guid>
      <dc:creator>mikael.lahtela</dc:creator>
      <dc:date>2017-12-27T11:00:26Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to Access FP console after removing access list.</title>
      <link>https://community.cisco.com/t5/network-security/unable-to-access-fp-console-after-removing-access-list/m-p/3302774#M1041452</link>
      <description>&lt;P&gt;Yes i will do that, any idea why show commands and other command dont work for FIRPOWER&amp;nbsp;is there a shell for firepower i need to switch to to run these commands&lt;/P&gt;</description>
      <pubDate>Wed, 27 Dec 2017 12:13:50 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/unable-to-access-fp-console-after-removing-access-list/m-p/3302774#M1041452</guid>
      <dc:creator>hrithiktej</dc:creator>
      <dc:date>2017-12-27T12:13:50Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to Access FP console after removing access list.</title>
      <link>https://community.cisco.com/t5/network-security/unable-to-access-fp-console-after-removing-access-list/m-p/3304415#M1041453</link>
      <description>&lt;P&gt;Hi Support helped me out.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;following was done to resolve this issue&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Once you login to FMC Console, elevate to root mode by typing “sudu su - “ it will prompt for the password.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then do cd /etc/sysconfig/ and then cat iptables.&lt;/P&gt;
&lt;P&gt;Check if you have an exact same lines shown below:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;#start SSL SSH SNMP PORTS INPUT BLOCK&lt;/P&gt;
&lt;P&gt;-A INPUT -i eth0 -p tcp -m tcp --dport 443 -m state --state NEW -m recent --update --seconds 10 --hitcount 15 --name slowloris --rsource -j DROP&lt;/P&gt;
&lt;P&gt;-A INPUT -i eth0 -p tcp -m tcp --dport 443 --tcp-flags FIN,SYN,RST,ACK SYN -m connlimit --connlimit-above 25 --connlimit-mask 32&amp;nbsp; -j DROP&lt;/P&gt;
&lt;P&gt;-A INPUT&amp;nbsp; -i eth0 -m state --state NEW -p tcp -m tcp --dport 443 -j ACCEPT&lt;/P&gt;
&lt;P&gt;-A INPUT&amp;nbsp; -i eth0 -m state --state NEW -p tcp -m tcp --dport 22 -j ACCEPT&lt;/P&gt;
&lt;P&gt;#stop&amp;nbsp; SSL SSH SNMP PORTS INPUT BLOCK&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If these lines are not there then do “vim iptables” and add the exact same lines. This should fix the issue.&lt;/P&gt;</description>
      <pubDate>Mon, 01 Jan 2018 09:26:25 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/unable-to-access-fp-console-after-removing-access-list/m-p/3304415#M1041453</guid>
      <dc:creator>hrithiktej</dc:creator>
      <dc:date>2018-01-01T09:26:25Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to Access FP console after removing access list.</title>
      <link>https://community.cisco.com/t5/network-security/unable-to-access-fp-console-after-removing-access-list/m-p/3304466#M1041454</link>
      <description>&lt;P&gt;Thanks for sharing the solution. That's a helpful one for sure.&lt;/P&gt;</description>
      <pubDate>Mon, 01 Jan 2018 14:41:27 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/unable-to-access-fp-console-after-removing-access-list/m-p/3304466#M1041454</guid>
      <dc:creator>Marvin Rhoads</dc:creator>
      <dc:date>2018-01-01T14:41:27Z</dc:date>
    </item>
  </channel>
</rss>

