<?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: static one-to-many in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/pix-static-one-to-many/m-p/710558#M1035256</link>
    <description>&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;i'm trying to substitute a router C3640 with a pix-525 (ver 7.2.2) but i can't map multiple outside addresses to one internal address&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in my router config i have:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ip nat inside source static tcp 192.168.5.5 80 1.1.1.1 80 extendable&lt;/P&gt;&lt;P&gt;ip nat inside source static tcp 192.168.5.5 80 1.1.1.2 80 extendable&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but when i try to add these lines in my pix i get an error message: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static (inside,outside) tcp 1.1.1.1 80 192.168.5.5 80 netmask 255.255.255.255&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static (inside,outside) tcp 1.1.1.2 80 192.168.5.5 80 netmask 255.255.255.255&lt;/P&gt;&lt;P&gt;ERROR:static exist duplicate of existing static&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any advise is appreciated&lt;/P&gt;&lt;P&gt;davide&lt;/P&gt;</description>
    <pubDate>Mon, 11 Mar 2019 09:00:11 GMT</pubDate>
    <dc:creator>d.valsania</dc:creator>
    <dc:date>2019-03-11T09:00:11Z</dc:date>
    <item>
      <title>PIX: static one-to-many</title>
      <link>https://community.cisco.com/t5/network-security/pix-static-one-to-many/m-p/710558#M1035256</link>
      <description>&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;i'm trying to substitute a router C3640 with a pix-525 (ver 7.2.2) but i can't map multiple outside addresses to one internal address&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in my router config i have:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ip nat inside source static tcp 192.168.5.5 80 1.1.1.1 80 extendable&lt;/P&gt;&lt;P&gt;ip nat inside source static tcp 192.168.5.5 80 1.1.1.2 80 extendable&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but when i try to add these lines in my pix i get an error message: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static (inside,outside) tcp 1.1.1.1 80 192.168.5.5 80 netmask 255.255.255.255&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static (inside,outside) tcp 1.1.1.2 80 192.168.5.5 80 netmask 255.255.255.255&lt;/P&gt;&lt;P&gt;ERROR:static exist duplicate of existing static&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any advise is appreciated&lt;/P&gt;&lt;P&gt;davide&lt;/P&gt;</description>
      <pubDate>Mon, 11 Mar 2019 09:00:11 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/pix-static-one-to-many/m-p/710558#M1035256</guid>
      <dc:creator>d.valsania</dc:creator>
      <dc:date>2019-03-11T09:00:11Z</dc:date>
    </item>
    <item>
      <title>Re: PIX: static one-to-many</title>
      <link>https://community.cisco.com/t5/network-security/pix-static-one-to-many/m-p/710559#M1035257</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's because PIX does not allowed port re-direction from one Public IP to multiple internal IP using same port no. It will work as long as you mapped them to a different port, say, 8080, 8081, etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static (inside,outside) tcp 192.168.1.10 www 10.1.1.2 www netmask 255.255.255.255 &lt;/P&gt;&lt;P&gt;static (inside,outside) tcp 192.168.1.10 81 10.1.1.2 81 netmask 255.255.255.255&lt;/P&gt;&lt;P&gt;static (inside,outside) tcp 192.168.1.10 82 10.1.1.2 82 netmask 255.255.255.255&lt;/P&gt;&lt;P&gt;static (inside,outside) tcp 192.168.1.10 telnet 10.1.1.2 telnet netmask 255.255.255.255 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have multiple web servers, you have to change the www service port on each server to the same port no as stated/configured in static command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The ACL on outside interface should be:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list outside permit tcp any host 192.168.1.10 eq www &lt;/P&gt;&lt;P&gt;access-list outside permit tcp any host 192.168.1.10 eq 81 &lt;/P&gt;&lt;P&gt;access-list outside permit tcp any host 192.168.1.10 eq 82 &lt;/P&gt;&lt;P&gt;access-list outside permit tcp any host 192.168.1.10 eq telnet &lt;/P&gt;&lt;P&gt;access-group outside in interface outside&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-custom" href="http://www.cisco.com/en/US/products/hw/vpndevc/ps2030/products_tech_note09186a0080094aad.shtml" target="_blank"&gt;http://www.cisco.com/en/US/products/hw/vpndevc/ps2030/products_tech_note09186a0080094aad.shtml&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;AK&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Nov 2006 22:41:11 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/pix-static-one-to-many/m-p/710559#M1035257</guid>
      <dc:creator>a.kiprawih</dc:creator>
      <dc:date>2006-11-24T22:41:11Z</dc:date>
    </item>
    <item>
      <title>Re: PIX: static one-to-many</title>
      <link>https://community.cisco.com/t5/network-security/pix-static-one-to-many/m-p/710560#M1035258</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;thanks for your fast reply!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but i can't change nothing&lt;/P&gt;&lt;P&gt;i must only replace the c3640 (active from 2 years but with a constant cpu load of 90%) with a more performance firewall pix&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the customer have only one server web and he map  it with 100/200 external ip address&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;davide&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Nov 2006 06:53:26 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/pix-static-one-to-many/m-p/710560#M1035258</guid>
      <dc:creator>d.valsania</dc:creator>
      <dc:date>2006-11-25T06:53:26Z</dc:date>
    </item>
    <item>
      <title>Re: PIX: static one-to-many</title>
      <link>https://community.cisco.com/t5/network-security/pix-static-one-to-many/m-p/710561#M1035259</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If I recall correctly this restriction was not in place with Pix 6.x releases, don't know if it works good or what.&lt;/P&gt;&lt;P&gt;If you need to keep the current release you can take a look to policy-nat, maybe it's suitable for your needs.&lt;/P&gt;&lt;P&gt;Bye,&lt;/P&gt;&lt;P&gt;    Massimo.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 26 Nov 2006 06:52:56 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/pix-static-one-to-many/m-p/710561#M1035259</guid>
      <dc:creator>Massimo Baschieri</dc:creator>
      <dc:date>2006-11-26T06:52:56Z</dc:date>
    </item>
  </channel>
</rss>

