<?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: how to enable a port on a pix firewall in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/how-to-enable-a-port-on-a-pix-firewall/m-p/600687#M499847</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My inside ACL is called inside. &lt;/P&gt;&lt;P&gt;Is this correct? im typing&lt;/P&gt;&lt;P&gt;access-list inside permit tcp host x.x.x.x eq 3101&lt;/P&gt;&lt;P&gt;x=my BB server's IP address&lt;/P&gt;&lt;P&gt;Like i said im very new to cisco so apologise if im asking a very simple question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 29 Jun 2006 12:32:24 GMT</pubDate>
    <dc:creator>willgerrish</dc:creator>
    <dc:date>2006-06-29T12:32:24Z</dc:date>
    <item>
      <title>how to enable a port on a pix firewall</title>
      <link>https://community.cisco.com/t5/network-security/how-to-enable-a-port-on-a-pix-firewall/m-p/600684#M499844</link>
      <description>&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;im a newbie to using a pix firewall and i would like someone to help point me in the right direction?  I need to enable port 3101 for my blackberry server.  I have the enable password for the pix firewall but a bit stuck with where to go now.  Tired using PDM to config the ports.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any Help would be great.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 21 Feb 2020 09:00:54 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/how-to-enable-a-port-on-a-pix-firewall/m-p/600684#M499844</guid>
      <dc:creator>willgerrish</dc:creator>
      <dc:date>2020-02-21T09:00:54Z</dc:date>
    </item>
    <item>
      <title>Re: how to enable a port on a pix firewall</title>
      <link>https://community.cisco.com/t5/network-security/how-to-enable-a-port-on-a-pix-firewall/m-p/600685#M499845</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;In order to allow traffic from higher-security zone to a lower-security zone, you need to have 2 things configured:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1- Static translation for your server as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static (dmz,outside) x.x.x.x y.y.y.y netmask 255.255.255.255&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where x.x.x.x is the public IP which you want to reach the server through and y.y.y.y is the IP of your blackberry server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2- ACL to allow traffic to the server:&lt;/P&gt;&lt;P&gt;access-list out_access_in permit tcp any host x.x.x.x eq 3101&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Finally, dont forget to enable the acl on your outisde interface through this command:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-group out_access_in in interface outside&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good Luck,&lt;/P&gt;&lt;P&gt;Haitham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jun 2006 10:48:09 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/how-to-enable-a-port-on-a-pix-firewall/m-p/600685#M499845</guid>
      <dc:creator>haithamnofal</dc:creator>
      <dc:date>2006-06-29T10:48:09Z</dc:date>
    </item>
    <item>
      <title>Re: how to enable a port on a pix firewall</title>
      <link>https://community.cisco.com/t5/network-security/how-to-enable-a-port-on-a-pix-firewall/m-p/600686#M499846</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In my experience you only need to allow your BB server to get to the internet, you do not need to allow the internet BB to get to you. So I don't think you need a static NAT for the server, you could use "nat" and "global" instead, and you need to look at the ACL on the inside.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Somthing like:&lt;/P&gt;&lt;P&gt;nat (inside) 1 0.0.0.0 0.0.0.0 0 100&lt;/P&gt;&lt;P&gt;global (outside) 1 interface&lt;/P&gt;&lt;P&gt;access-list in_inside permit tcp host your_BB_IP host internet_BB_IP eq 3101&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do "show acess-group" first to see what the inside ACL (if any) is called.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jun 2006 10:54:02 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/how-to-enable-a-port-on-a-pix-firewall/m-p/600686#M499846</guid>
      <dc:creator>grant.maynard</dc:creator>
      <dc:date>2006-06-29T10:54:02Z</dc:date>
    </item>
    <item>
      <title>Re: how to enable a port on a pix firewall</title>
      <link>https://community.cisco.com/t5/network-security/how-to-enable-a-port-on-a-pix-firewall/m-p/600687#M499847</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My inside ACL is called inside. &lt;/P&gt;&lt;P&gt;Is this correct? im typing&lt;/P&gt;&lt;P&gt;access-list inside permit tcp host x.x.x.x eq 3101&lt;/P&gt;&lt;P&gt;x=my BB server's IP address&lt;/P&gt;&lt;P&gt;Like i said im very new to cisco so apologise if im asking a very simple question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jun 2006 12:32:24 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/how-to-enable-a-port-on-a-pix-firewall/m-p/600687#M499847</guid>
      <dc:creator>willgerrish</dc:creator>
      <dc:date>2006-06-29T12:32:24Z</dc:date>
    </item>
  </channel>
</rss>

