<?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: NAT/routing help on ASA 5520 in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/nat-routing-help-on-asa-5520/m-p/1212078#M860859</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry to confuse:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could I:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Get the 2 email servers send outbound as public IP 10.10.10.10 on smtp&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But only nat 10.10.10.10 inbound to one of the email servers on smtp?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Apr 2009 13:42:30 GMT</pubDate>
    <dc:creator>whiteford</dc:creator>
    <dc:date>2009-04-15T13:42:30Z</dc:date>
    <item>
      <title>NAT/routing help on ASA 5520</title>
      <link>https://community.cisco.com/t5/network-security/nat-routing-help-on-asa-5520/m-p/1212070#M860848</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have 2 email servers with 2 Nics.  One has a public IP (e.g 10.10.10.10)NAT'ed to it's private IP for inbound email, so inbound email is fine.  Now our ISP only accept smtp traffic from 10.10.10.10 and the issue I have is the server with the NAT can send emails to them, but the server that doesn't have the NAT servers it's smtp traffic outbound via the ASA's default gateway and gets refused.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible to route this server with no NAT to route outbound via the 10.10.10.10 so both servers go outbound via this and not the ASA's default gateway?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Mar 2019 15:18:47 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/nat-routing-help-on-asa-5520/m-p/1212070#M860848</guid>
      <dc:creator>whiteford</dc:creator>
      <dc:date>2019-03-11T15:18:47Z</dc:date>
    </item>
    <item>
      <title>Re: NAT/routing help on ASA 5520</title>
      <link>https://community.cisco.com/t5/network-security/nat-routing-help-on-asa-5520/m-p/1212071#M860850</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why do you not write a policy based nat rule so both servers use the same external NAT IP?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Apr 2009 09:45:21 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/nat-routing-help-on-asa-5520/m-p/1212071#M860850</guid>
      <dc:creator>andrew.prince</dc:creator>
      <dc:date>2009-04-15T09:45:21Z</dc:date>
    </item>
    <item>
      <title>Re: NAT/routing help on ASA 5520</title>
      <link>https://community.cisco.com/t5/network-security/nat-routing-help-on-asa-5520/m-p/1212072#M860852</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hmm I've never tried that before, plus I only use the ASDM, but do have access tot he CLI and have basic experience with this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How would I do this then?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Say 192.168.28.1 and 192.168.28.2 wanted to go outbound via 10.10.10.10 (public IP)?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Apr 2009 09:50:01 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/nat-routing-help-on-asa-5520/m-p/1212072#M860852</guid>
      <dc:creator>whiteford</dc:creator>
      <dc:date>2009-04-15T09:50:01Z</dc:date>
    </item>
    <item>
      <title>Re: NAT/routing help on ASA 5520</title>
      <link>https://community.cisco.com/t5/network-security/nat-routing-help-on-asa-5520/m-p/1212073#M860854</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I do not use the ASDM, not even sure if it is capable to configure something like this in the ASDM, via cli&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;global (outside) 99 10.10.10.10&lt;/P&gt;&lt;P&gt;access-list email-servers extended permit tcp host 192.168.28.1 any eq smtp&lt;/P&gt;&lt;P&gt;access-list email-servers extended permit tcp host 192.168.28.2 any eq smtp&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;nat (inside) 99 access-list email-servers&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Basically the above instructs the ASA to NAT servers 192.168.28.1 &amp;amp; .2 when they try an access anything out on the internet using smtp and NAT them to external IP 10.10.10.10&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Apr 2009 10:01:41 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/nat-routing-help-on-asa-5520/m-p/1212073#M860854</guid>
      <dc:creator>andrew.prince</dc:creator>
      <dc:date>2009-04-15T10:01:41Z</dc:date>
    </item>
    <item>
      <title>Re: NAT/routing help on ASA 5520</title>
      <link>https://community.cisco.com/t5/network-security/nat-routing-help-on-asa-5520/m-p/1212074#M860855</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As one of the email servers has the public IP (10.10.10.10) assigned to it via NAT, can I just do the above method to just the server that needs it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, are there any useful commands that will show me that it is using this new public IP? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Apr 2009 11:19:20 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/nat-routing-help-on-asa-5520/m-p/1212074#M860855</guid>
      <dc:creator>whiteford</dc:creator>
      <dc:date>2009-04-15T11:19:20Z</dc:date>
    </item>
    <item>
      <title>Re: NAT/routing help on ASA 5520</title>
      <link>https://community.cisco.com/t5/network-security/nat-routing-help-on-asa-5520/m-p/1212075#M860856</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry - I am no confused, if you are performing a specific static NAT - you WILL have to change it from a 1:1 to a 1:Many&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You cannot just add an internal server, you will have to configure either a static 1:Many NAT based on an access-list or a policy based NAT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Apr 2009 11:21:56 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/nat-routing-help-on-asa-5520/m-p/1212075#M860856</guid>
      <dc:creator>andrew.prince</dc:creator>
      <dc:date>2009-04-15T11:21:56Z</dc:date>
    </item>
    <item>
      <title>Re: NAT/routing help on ASA 5520</title>
      <link>https://community.cisco.com/t5/network-security/nat-routing-help-on-asa-5520/m-p/1212076#M860857</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OK, wil I have to first remove the current NAT?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Apr 2009 11:55:15 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/nat-routing-help-on-asa-5520/m-p/1212076#M860857</guid>
      <dc:creator>whiteford</dc:creator>
      <dc:date>2009-04-15T11:55:15Z</dc:date>
    </item>
    <item>
      <title>Re: NAT/routing help on ASA 5520</title>
      <link>https://community.cisco.com/t5/network-security/nat-routing-help-on-asa-5520/m-p/1212077#M860858</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes you will have to remove the current NAT statements, and clear the NAT xlate table.&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>Wed, 15 Apr 2009 12:02:55 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/nat-routing-help-on-asa-5520/m-p/1212077#M860858</guid>
      <dc:creator>andrew.prince</dc:creator>
      <dc:date>2009-04-15T12:02:55Z</dc:date>
    </item>
    <item>
      <title>Re: NAT/routing help on ASA 5520</title>
      <link>https://community.cisco.com/t5/network-security/nat-routing-help-on-asa-5520/m-p/1212078#M860859</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry to confuse:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could I:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Get the 2 email servers send outbound as public IP 10.10.10.10 on smtp&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But only nat 10.10.10.10 inbound to one of the email servers on smtp?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Apr 2009 13:42:30 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/nat-routing-help-on-asa-5520/m-p/1212078#M860859</guid>
      <dc:creator>whiteford</dc:creator>
      <dc:date>2009-04-15T13:42:30Z</dc:date>
    </item>
    <item>
      <title>Re: NAT/routing help on ASA 5520</title>
      <link>https://community.cisco.com/t5/network-security/nat-routing-help-on-asa-5520/m-p/1212079#M860860</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No - the ASA will send return traffic back to either server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So if you have an environment where only 1 email server is receving/delivering email - but both servers are sending email out to the internet, you need to look at your email environment.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Apr 2009 14:06:03 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/nat-routing-help-on-asa-5520/m-p/1212079#M860860</guid>
      <dc:creator>andrew.prince</dc:creator>
      <dc:date>2009-04-15T14:06:03Z</dc:date>
    </item>
  </channel>
</rss>

