<?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: ASA 5510 - More than 1 public IP in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/asa-5510-more-than-1-public-ip/m-p/774023#M1005166</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;config t&lt;/P&gt;&lt;P&gt;interface e0/0 (or whatever interface it is)&lt;/P&gt;&lt;P&gt;ip addr &lt;IP&gt; &lt;MASK&gt;&lt;/MASK&gt;&lt;/IP&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please rate if these help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 08 May 2007 12:31:20 GMT</pubDate>
    <dc:creator>acomiskey</dc:creator>
    <dc:date>2007-05-08T12:31:20Z</dc:date>
    <item>
      <title>ASA 5510 - More than 1 public IP</title>
      <link>https://community.cisco.com/t5/network-security/asa-5510-more-than-1-public-ip/m-p/774020#M1005163</link>
      <description>&lt;P&gt;Hello!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I got a little problem with our ASA 5510. Since last week we got 6 public ip?s from our ISP. Now my boss wants me to configure our ASA with these ip?s.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IP xxx.xxx.xxx.xxx should redirect the port 443 to a spezified server in our DMZ&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IP yyy.yyy.yyy.yyy should redirect the port 25 to our mail server&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IP zzz.zzz.zzz.zzz should redirect the port 443 to another server in our DMZ&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this possible, and are there any documents about the configuration i have to do.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greetings&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Timo&lt;/P&gt;</description>
      <pubDate>Mon, 11 Mar 2019 10:10:37 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-5510-more-than-1-public-ip/m-p/774020#M1005163</guid>
      <dc:creator>Timo.Nowak</dc:creator>
      <dc:date>2019-03-11T10:10:37Z</dc:date>
    </item>
    <item>
      <title>Re: ASA 5510 - More than 1 public IP</title>
      <link>https://community.cisco.com/t5/network-security/asa-5510-more-than-1-public-ip/m-p/774021#M1005164</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sure it's possible...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static (DMZ,outside) xxx.xxx.xx.xxx &lt;SERVER.IP&gt; netmask 255.255.255.255&lt;/SERVER.IP&gt;&lt;/P&gt;&lt;P&gt;static (inside,outside) yyy.yyy.yyy.yyy &lt;MAIL.SERVER.IP&gt; netmask 255.255.255.255&lt;/MAIL.SERVER.IP&gt;&lt;/P&gt;&lt;P&gt;static (DMZ,outside) zzz.zzz.zzz.zzz &lt;ANOTHER.SERVER.IP&gt; netmask 255.255.255.255&lt;/ANOTHER.SERVER.IP&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also need to allow ports in your access-list on outside interface&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list &lt;NAME&gt; extended permit tcp any host xxx.xxx.xxx.xxx eq 443&lt;/NAME&gt;&lt;/P&gt;&lt;P&gt;access-list &lt;NAME&gt; extended permit tcp any host yyy.yyy.yyy.yyy eq 25&lt;/NAME&gt;&lt;/P&gt;&lt;P&gt;access-list &lt;NAME&gt; extended permit tcp any host zzz.zzz.zzz.zzz eq 443&lt;/NAME&gt;&lt;/P&gt;&lt;P&gt;access-group &lt;NAME&gt; in interface outside&lt;/NAME&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2007 12:20:09 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-5510-more-than-1-public-ip/m-p/774021#M1005164</guid>
      <dc:creator>acomiskey</dc:creator>
      <dc:date>2007-05-08T12:20:09Z</dc:date>
    </item>
    <item>
      <title>Re: ASA 5510 - More than 1 public IP</title>
      <link>https://community.cisco.com/t5/network-security/asa-5510-more-than-1-public-ip/m-p/774022#M1005165</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wow, thanks for your fast reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And how is it possible to define the ip adresses  on the outside interface. I think this should be something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ip adress abc.def.ghi.jkl 255.255.255.248&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Timo&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2007 12:26:39 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-5510-more-than-1-public-ip/m-p/774022#M1005165</guid>
      <dc:creator>Timo.Nowak</dc:creator>
      <dc:date>2007-05-08T12:26:39Z</dc:date>
    </item>
    <item>
      <title>Re: ASA 5510 - More than 1 public IP</title>
      <link>https://community.cisco.com/t5/network-security/asa-5510-more-than-1-public-ip/m-p/774023#M1005166</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;config t&lt;/P&gt;&lt;P&gt;interface e0/0 (or whatever interface it is)&lt;/P&gt;&lt;P&gt;ip addr &lt;IP&gt; &lt;MASK&gt;&lt;/MASK&gt;&lt;/IP&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please rate if these help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2007 12:31:20 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/asa-5510-more-than-1-public-ip/m-p/774023#M1005166</guid>
      <dc:creator>acomiskey</dc:creator>
      <dc:date>2007-05-08T12:31:20Z</dc:date>
    </item>
  </channel>
</rss>

