<?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 PIX 501 Question? in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/pix-501-question/m-p/330795#M549431</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a PIX 501 and was given only 1 Public IP from my ISP and I need to access a server on the private network from the outside (Telnet or FTP).&lt;/P&gt;&lt;P&gt;How do I translate the Private IP of the server to the public ip associated to the outside interface of the firewall and specifying the ftp or telnet port only? is this possible? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 21 Feb 2020 08:04:17 GMT</pubDate>
    <dc:creator>u.naranjo</dc:creator>
    <dc:date>2020-02-21T08:04:17Z</dc:date>
    <item>
      <title>PIX 501 Question?</title>
      <link>https://community.cisco.com/t5/network-security/pix-501-question/m-p/330795#M549431</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a PIX 501 and was given only 1 Public IP from my ISP and I need to access a server on the private network from the outside (Telnet or FTP).&lt;/P&gt;&lt;P&gt;How do I translate the Private IP of the server to the public ip associated to the outside interface of the firewall and specifying the ftp or telnet port only? is this possible? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Feb 2020 08:04:17 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/pix-501-question/m-p/330795#M549431</guid>
      <dc:creator>u.naranjo</dc:creator>
      <dc:date>2020-02-21T08:04:17Z</dc:date>
    </item>
    <item>
      <title>Re: PIX 501 Question?</title>
      <link>https://community.cisco.com/t5/network-security/pix-501-question/m-p/330796#M549433</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, this is possible. This fonction is called port forwarding.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Public IP can be static or dynamic this does not change the config:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Inside IP: 192.168.1.10 in this example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ip address outside YOUR-PUB-IP 255.255.255.240&lt;/P&gt;&lt;P&gt;ip address inside 192.168.1.1 255.255.255.0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list acl_out permit tcp any interface eq 21&lt;/P&gt;&lt;P&gt;access-list acl_out permit tcp any interface eq 23 &lt;/P&gt;&lt;P&gt;access-group acl_out in interface outside&lt;/P&gt;&lt;P&gt;static (inside,outside) tcp interface 21 192.168.1.10 21 netmask 255.255.255.255 0 0 &lt;/P&gt;&lt;P&gt;static (inside,outside) tcp interface 23 192.168.1.10 23 netmask 255.255.255.255 0 0 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;global (outside) 1 interface&lt;/P&gt;&lt;P&gt;nat (inside) 1 0.0.0.0 0.0.0.0 0 0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;route outside 0.0.0.0 0.0.0.0 Gateway 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Establishing Connectivity: &lt;A class="jive-link-custom" href="http://www.cisco.com/en/US/products/sw/secursw/ps2120/products_configuration_guide_chapter09186a0080172786.html" target="_blank"&gt;http://www.cisco.com/en/US/products/sw/secursw/ps2120/products_configuration_guide_chapter09186a0080172786.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sincerely&lt;/P&gt;&lt;P&gt;Patrick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Apr 2005 23:25:21 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/pix-501-question/m-p/330796#M549433</guid>
      <dc:creator>Patrick Iseli</dc:creator>
      <dc:date>2005-04-11T23:25:21Z</dc:date>
    </item>
    <item>
      <title>Re: PIX 501 Question?</title>
      <link>https://community.cisco.com/t5/network-security/pix-501-question/m-p/330797#M549437</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Patrick,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Than you very much for this sample; this is what I was looking for.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I appreciate you taking the time and explaining.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Uriel Naranjo.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Apr 2005 14:46:59 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/pix-501-question/m-p/330797#M549437</guid>
      <dc:creator>u.naranjo</dc:creator>
      <dc:date>2005-04-12T14:46:59Z</dc:date>
    </item>
    <item>
      <title>Re: PIX 501 Question?</title>
      <link>https://community.cisco.com/t5/network-security/pix-501-question/m-p/330798#M549439</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The plesure is mine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;click on rate if you found the post helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sincerely&lt;/P&gt;&lt;P&gt;Patrick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Apr 2005 17:14:26 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/pix-501-question/m-p/330798#M549439</guid>
      <dc:creator>Patrick Iseli</dc:creator>
      <dc:date>2005-04-12T17:14:26Z</dc:date>
    </item>
  </channel>
</rss>

