<?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 based on source address ? in Switching</title>
    <link>https://community.cisco.com/t5/switching/nat-based-on-source-address/m-p/2017180#M227355</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Traffic flow can be initiated from both sides. Clients (right hand side) allways connect to 172.16.0.34 but then &lt;STRONG&gt;destination&lt;/STRONG&gt; address must be translated to 10.0.0.34 if traffic is initiated from 192.168.1.1, or to 10.0.0.35 if initiated from 192.168.2.1&lt;/P&gt;&lt;P&gt;In other words each client has a dedicated server, but each of them is visible under one "public" ip&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If any server (10.0.0.34 or .35) connects to any client it shout allways translate the &lt;STRONG&gt;source&lt;/STRONG&gt; ip to 172.16.0.34 (that one is easy, simply overload)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So i other words in result i would like my NAT table look similar to this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;inside local&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; inside global&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; outside global&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; outside local&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #339966;"&gt;10.0.0.34&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 172.16.0.34&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #339966;"&gt;192.168.1.1&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 192.168.1.1&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3366ff;"&gt;10.0.0.35&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 172.16.0.34&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #3366ff;"&gt;192.168.2.1 &lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 192.168.2.1&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 26 Sep 2012 15:38:35 GMT</pubDate>
    <dc:creator>ZbigniewJ</dc:creator>
    <dc:date>2012-09-26T15:38:35Z</dc:date>
    <item>
      <title>NAT based on source address ?</title>
      <link>https://community.cisco.com/t5/switching/nat-based-on-source-address/m-p/2017174#M227349</link>
      <description>&lt;DIV style="border-collapse: collapse; list-style: none; margin: 0px 0px 20px; padding: 2px; overflow: visible; position: relative; zoom: 1; width: 555.3833618164063px;"&gt;&lt;P style="border-collapse: collapse; list-style: none;"&gt;When i configure NAT like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="border-collapse: collapse; list-style: none;"&gt;ip access-list extended acl_NAT_OTHERS&lt;/P&gt;&lt;P style="border-collapse: collapse; list-style: none;"&gt;permit ip host &lt;STRONG&gt;10.0.0.34&lt;/STRONG&gt; host &lt;STRONG style="border-collapse: collapse; list-style: none;"&gt;192.168.1.1&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="border-collapse: collapse; list-style: none;"&gt;ip access-list extended acl_NAT_CUSTA&lt;/P&gt;&lt;P style="border-collapse: collapse; list-style: none;"&gt;permit ip host &lt;STRONG&gt;10.0.0.35&lt;/STRONG&gt; host &lt;STRONG style="border-collapse: collapse; list-style: none;"&gt;192.168.2.1&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="border-collapse: collapse; list-style: none;"&gt;!&lt;/P&gt;&lt;P style="border-collapse: collapse; list-style: none;"&gt;route-map rmap_NAT_CUSTA permit 10&lt;/P&gt;&lt;P style="border-collapse: collapse; list-style: none;"&gt;match ip address acl_NAT_CUSTA&lt;/P&gt;&lt;P style="border-collapse: collapse; list-style: none;"&gt;route-map rmap_NAT_OTHERS permit 10&lt;/P&gt;&lt;P style="border-collapse: collapse; list-style: none;"&gt;match ip address acl_NAT_OTHERS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="border-collapse: collapse; list-style: none;"&gt;cisco# ip nat inside source static 10.0.0.34 172.16.0.34 route-map rmap_NAT_OTHERS&lt;/P&gt;&lt;P style="border-collapse: collapse; list-style: none;"&gt;cisco# ip nat inside source static 10.0.0.35 172.16.0.34 route-map rmap_NAT_CUSTA&lt;/P&gt;&lt;P style="border-collapse: collapse; list-style: none;"&gt;after last line i get:&lt;/P&gt;&lt;P style="border-collapse: collapse; list-style: none;"&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG style="border-collapse: collapse; list-style: none;"&gt;% 10.0.0.35 already mapped (10.0.0.34 -&amp;gt; 172.16.0.34)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="border-collapse: collapse; list-style: none; min-height: 8pt; height: 8pt;"&gt;i tried extendable option too. I still get this error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="border-collapse: collapse; list-style: none;"&gt;What i try to achieve is:&lt;/P&gt;&lt;P style="border-collapse: collapse; list-style: none;"&gt;When i connect fom &lt;STRONG style="border-collapse: collapse; list-style: none;"&gt;192.168.1.1&lt;/STRONG&gt; to 172.16.0.34 i'm dest. NATed to &lt;STRONG style="border-collapse: collapse; list-style: none;"&gt;10.0.0.34&lt;/STRONG&gt; and&lt;/P&gt;&lt;P style="border-collapse: collapse; list-style: none;"&gt;when&amp;nbsp; i connect fom &lt;STRONG style="border-collapse: collapse; list-style: none;"&gt;192.168.2.1&lt;/STRONG&gt; to 172.16.0.34 i'm dest. NATed to &lt;STRONG style="border-collapse: collapse; list-style: none;"&gt;10.0.0.35&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="border-collapse: collapse; list-style: none;"&gt;Please please please help!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 07 Mar 2019 16:58:08 GMT</pubDate>
      <guid>https://community.cisco.com/t5/switching/nat-based-on-source-address/m-p/2017174#M227349</guid>
      <dc:creator>ZbigniewJ</dc:creator>
      <dc:date>2019-03-07T16:58:08Z</dc:date>
    </item>
    <item>
      <title>NAT based on source address ?</title>
      <link>https://community.cisco.com/t5/switching/nat-based-on-source-address/m-p/2017175#M227350</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="margin-bottom: 0in;"&gt;Good morning ZbigniewJ &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0in;"&gt;Thanks for using our forum &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0in;"&gt;I recommend to you to use NAT overload instead of static NAT, with this commands&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0in;"&gt;ip access-list extended acl_NAT_OTHERS &lt;/P&gt;&lt;P style="margin-bottom: 0in;"&gt;permit ip host 10.0.0.34 host 192.168.1.1 &lt;/P&gt;&lt;P style="margin-bottom: 0in;"&gt;ip access-list extended acl_NAT_CUSTA &lt;/P&gt;&lt;P style="margin-bottom: 0in;"&gt;permit ip host 10.0.0.35 host 192.168.2.1&amp;nbsp; &lt;/P&gt;&lt;P style="margin-bottom: 0in;"&gt;ip nat inside source list [ACL-name-1] interface [interface] overload &lt;/P&gt;&lt;P style="margin-bottom: 0in;"&gt;ip nat inside source list [ACL-name-2] interface [interface] overload &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0in;"&gt;I hope you find this answer useful, if it was satisfactory&amp;nbsp; for you, please mark the question as Answered.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0in;"&gt;Greetings, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0in;"&gt;Johnnatan Rodriguez Miranda&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Sep 2012 17:56:50 GMT</pubDate>
      <guid>https://community.cisco.com/t5/switching/nat-based-on-source-address/m-p/2017175#M227350</guid>
      <dc:creator>Johnnatan_Rodriguez_Miranda</dc:creator>
      <dc:date>2012-09-25T17:56:50Z</dc:date>
    </item>
    <item>
      <title>Re: NAT based on source address ?</title>
      <link>https://community.cisco.com/t5/switching/nat-based-on-source-address/m-p/2017176#M227351</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dammm, i accidentally clicked "answered' where in fact it doesn't solve my problem.&lt;/P&gt;&lt;P&gt;I cant use overload cause traffic can be initiated from both sides. &lt;/P&gt;&lt;P&gt;What i'm trying to do is some kind of load balacing. Client connect to the same IP but depending on source address they are redirected to server assigned to them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I even tried to to this using SLB, but then i cant permamently assign phisical server to customer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;edit: can someone mark it unanswered?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Sep 2012 14:11:53 GMT</pubDate>
      <guid>https://community.cisco.com/t5/switching/nat-based-on-source-address/m-p/2017176#M227351</guid>
      <dc:creator>ZbigniewJ</dc:creator>
      <dc:date>2012-09-26T14:11:53Z</dc:date>
    </item>
    <item>
      <title>Re: NAT based on source address ?</title>
      <link>https://community.cisco.com/t5/switching/nat-based-on-source-address/m-p/2017177#M227352</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="list-style-type: none; border-collapse: collapse;"&gt;&lt;EM&gt;What i try to achieve is:&lt;/EM&gt;&lt;/P&gt;&lt;P style="list-style-type: none; border-collapse: collapse;"&gt;&lt;EM&gt;When i connect fom &lt;STRONG style="list-style-type: none; border-collapse: collapse;"&gt;192.168.1.1&lt;/STRONG&gt; to 172.16.0.34 i'm dest. NATed to &lt;STRONG style="list-style-type: none; border-collapse: collapse;"&gt;10.0.0.34&lt;/STRONG&gt; and&lt;/EM&gt;&lt;/P&gt;&lt;P style="list-style-type: none; border-collapse: collapse;"&gt;&lt;EM&gt;when i connect fom &lt;STRONG style="list-style-type: none; border-collapse: collapse;"&gt;192.168.2.1&lt;/STRONG&gt; to 172.16.0.34 i'm dest. NATed to &lt;STRONG style="list-style-type: none; border-collapse: collapse;"&gt;10.0.0.35&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="list-style-type: none; border-collapse: collapse;"&gt;You have your acls and NAT wrong, change it to this and retry - &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="list-style-type: none; border-collapse: collapse;"&gt;ip access-list extended acl_NAT_OTHERS&lt;/P&gt;&lt;P style="list-style-type: none; border-collapse: collapse;"&gt;permit ip host &lt;STRONG&gt;192.168.1.1&lt;/STRONG&gt; host &lt;STRONG style="list-style-type: none; border-collapse: collapse;"&gt;172.16.0.34 &lt;/STRONG&gt;&lt;/P&gt;&lt;P style="list-style-type: none; border-collapse: collapse;"&gt;ip access-list extended acl_NAT_CUSTA&lt;/P&gt;&lt;P style="list-style-type: none; border-collapse: collapse;"&gt;permit ip host &lt;STRONG&gt;192.168.2.1&lt;/STRONG&gt; host &lt;STRONG&gt;172.16.0.34&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="list-style-type: none; border-collapse: collapse;"&gt;!&lt;/P&gt;&lt;P style="list-style-type: none; border-collapse: collapse;"&gt;route-map rmap_NAT_CUSTA permit 10&lt;/P&gt;&lt;P style="list-style-type: none; border-collapse: collapse;"&gt;match ip address acl_NAT_CUSTA&lt;/P&gt;&lt;P style="list-style-type: none; border-collapse: collapse;"&gt;route-map rmap_NAT_OTHERS permit 10&lt;/P&gt;&lt;P style="list-style-type: none; border-collapse: collapse;"&gt;match ip address acl_NAT_OTHERS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ip nat inside source static 192.168.1.1 10.0.0.34 route-map rmap_NAT_OTHERS &lt;/P&gt;&lt;P style="list-style-type: none; border-collapse: collapse;"&gt;ip nat inside source static 192.168.2.1 10.0.0.35 route-map rmap_NAT_CUSTA&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="list-style-type: none; border-collapse: collapse;"&gt;Jon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Sep 2012 14:29:02 GMT</pubDate>
      <guid>https://community.cisco.com/t5/switching/nat-based-on-source-address/m-p/2017177#M227352</guid>
      <dc:creator>Jon Marshall</dc:creator>
      <dc:date>2012-09-26T14:29:02Z</dc:date>
    </item>
    <item>
      <title>NAT based on source address ?</title>
      <link>https://community.cisco.com/t5/switching/nat-based-on-source-address/m-p/2017178#M227353</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ghrrrrr! This UI is not well-designed &lt;SPAN __jive_emoticon_name="angry" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.cisco.com/4.5.4/images/tiny_mce3/plugins/jiveemoticons/images/spacer.gif"&gt;&lt;/SPAN&gt; I clicked "correct anwer" insdead of "reply" again! &lt;SPAN __jive_emoticon_name="angry" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.cisco.com/4.5.4/images/tiny_mce3/plugins/jiveemoticons/images/spacer.gif"&gt;&lt;/SPAN&gt; (or rather its just me &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.cisco.com/4.5.4/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt;)&lt;/P&gt;&lt;P&gt;Jon, are you sure of what you sayin?&lt;/P&gt;&lt;P&gt;ip nat inside source static 192.168.1.1 10.0.0.34 changes source address 192.168.1.1 to 10.0.0.34 while going from &lt;STRONG&gt;inside to outside,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;192.168.1.1 is outside global address - the IP of some host in customer network. &lt;/P&gt;&lt;P&gt;my inside local addresses ale 10.0.0.34 and .35 and it is them i want to translate to 172.16.0.34 and tanslate the testination address of packet going from &lt;STRONG&gt;outside to inside&lt;/STRONG&gt; at the same time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please see the att in the original post. left is the inside, right is the outside.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Sep 2012 14:40:44 GMT</pubDate>
      <guid>https://community.cisco.com/t5/switching/nat-based-on-source-address/m-p/2017178#M227353</guid>
      <dc:creator>ZbigniewJ</dc:creator>
      <dc:date>2012-09-26T14:40:44Z</dc:date>
    </item>
    <item>
      <title>NAT based on source address ?</title>
      <link>https://community.cisco.com/t5/switching/nat-based-on-source-address/m-p/2017179#M227354</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry, i missed the destination natted bit. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you clarify exactly what you want in terms of a traffic flow and where the connection is initiated from ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Sep 2012 14:54:04 GMT</pubDate>
      <guid>https://community.cisco.com/t5/switching/nat-based-on-source-address/m-p/2017179#M227354</guid>
      <dc:creator>Jon Marshall</dc:creator>
      <dc:date>2012-09-26T14:54:04Z</dc:date>
    </item>
    <item>
      <title>Re: NAT based on source address ?</title>
      <link>https://community.cisco.com/t5/switching/nat-based-on-source-address/m-p/2017180#M227355</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Traffic flow can be initiated from both sides. Clients (right hand side) allways connect to 172.16.0.34 but then &lt;STRONG&gt;destination&lt;/STRONG&gt; address must be translated to 10.0.0.34 if traffic is initiated from 192.168.1.1, or to 10.0.0.35 if initiated from 192.168.2.1&lt;/P&gt;&lt;P&gt;In other words each client has a dedicated server, but each of them is visible under one "public" ip&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If any server (10.0.0.34 or .35) connects to any client it shout allways translate the &lt;STRONG&gt;source&lt;/STRONG&gt; ip to 172.16.0.34 (that one is easy, simply overload)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So i other words in result i would like my NAT table look similar to this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;inside local&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; inside global&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; outside global&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; outside local&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #339966;"&gt;10.0.0.34&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 172.16.0.34&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #339966;"&gt;192.168.1.1&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 192.168.1.1&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3366ff;"&gt;10.0.0.35&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 172.16.0.34&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #3366ff;"&gt;192.168.2.1 &lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 192.168.2.1&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Sep 2012 15:38:35 GMT</pubDate>
      <guid>https://community.cisco.com/t5/switching/nat-based-on-source-address/m-p/2017180#M227355</guid>
      <dc:creator>ZbigniewJ</dc:creator>
      <dc:date>2012-09-26T15:38:35Z</dc:date>
    </item>
    <item>
      <title>NAT based on source address ?</title>
      <link>https://community.cisco.com/t5/switching/nat-based-on-source-address/m-p/2017181#M227356</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm assuming that "ip nat inside" and "ip nat outside" cannot be switched around ie. the inside faces the clients and the outside your 10.0.0.x servers ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hate IOS NAT, it is so much simpler on an ASA/Pix &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro jive_macro_emoticon" src="https://community.cisco.com/4.5.4/images/tiny_mce3/plugins/jiveemoticons/images/spacer.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Sep 2012 15:52:03 GMT</pubDate>
      <guid>https://community.cisco.com/t5/switching/nat-based-on-source-address/m-p/2017181#M227356</guid>
      <dc:creator>Jon Marshall</dc:creator>
      <dc:date>2012-09-26T15:52:03Z</dc:date>
    </item>
    <item>
      <title>NAT based on source address ?</title>
      <link>https://community.cisco.com/t5/switching/nat-based-on-source-address/m-p/2017182#M227357</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No they can not.&lt;/P&gt;&lt;P&gt;I agree - IOS NAT can be pain in the neck. This relativly simple example shows it.&lt;/P&gt;&lt;P&gt;It would be fantastic if there were a possibility to manually set a NAT table entry &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.cisco.com/4.5.4/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Sep 2012 15:58:09 GMT</pubDate>
      <guid>https://community.cisco.com/t5/switching/nat-based-on-source-address/m-p/2017182#M227357</guid>
      <dc:creator>ZbigniewJ</dc:creator>
      <dc:date>2012-09-26T15:58:09Z</dc:date>
    </item>
    <item>
      <title>Re: NAT based on source address ?</title>
      <link>https://community.cisco.com/t5/switching/nat-based-on-source-address/m-p/2017183#M227358</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's the fact that you are doing it outside to inside that is causing the problem because IOS is limited in it's options. I did have a laptop with GNS3 on it but that crashed so i can't test out any scenarios at present but i do remember trying to do something similiar before and getting tied up in knots with. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I do have a spare 2600 router knocking about so if i get the chance i'll set it up and do some testing but it could be a while. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'll also have a look at some of the docs on NAT, it may turn something up. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Apologies for not being able to sort it immediately. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Sep 2012 16:10:10 GMT</pubDate>
      <guid>https://community.cisco.com/t5/switching/nat-based-on-source-address/m-p/2017183#M227358</guid>
      <dc:creator>Jon Marshall</dc:creator>
      <dc:date>2012-09-26T16:10:10Z</dc:date>
    </item>
    <item>
      <title>NAT based on source address ?</title>
      <link>https://community.cisco.com/t5/switching/nat-based-on-source-address/m-p/2017184#M227359</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is my third atempt to solve this issue and probably I'll fail again &lt;SPAN __jive_emoticon_name="plain" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.cisco.com/4.5.4/images/tiny_mce3/plugins/jiveemoticons/images/spacer.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;If i swapped inside and outside it wouldt work too cause then i couldnt do overload in outside-&amp;gt;inside direction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With best regards&lt;/P&gt;&lt;P&gt;Zbigniew&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Sep 2012 16:18:46 GMT</pubDate>
      <guid>https://community.cisco.com/t5/switching/nat-based-on-source-address/m-p/2017184#M227359</guid>
      <dc:creator>ZbigniewJ</dc:creator>
      <dc:date>2012-09-26T16:18:46Z</dc:date>
    </item>
    <item>
      <title>NAT based on source address ?</title>
      <link>https://community.cisco.com/t5/switching/nat-based-on-source-address/m-p/2017185#M227360</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just a quick check, is the port the same port number for both 10.0.0.x servers ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I suspect it is but just wanted to check.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Sep 2012 16:23:24 GMT</pubDate>
      <guid>https://community.cisco.com/t5/switching/nat-based-on-source-address/m-p/2017185#M227360</guid>
      <dc:creator>Jon Marshall</dc:creator>
      <dc:date>2012-09-26T16:23:24Z</dc:date>
    </item>
    <item>
      <title>NAT based on source address ?</title>
      <link>https://community.cisco.com/t5/switching/nat-based-on-source-address/m-p/2017186#M227361</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, of course &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.cisco.com/4.5.4/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt; I would do a simple port forward otherwise &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.cisco.com/4.5.4/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Sep 2012 06:15:59 GMT</pubDate>
      <guid>https://community.cisco.com/t5/switching/nat-based-on-source-address/m-p/2017186#M227361</guid>
      <dc:creator>ZbigniewJ</dc:creator>
      <dc:date>2012-09-27T06:15:59Z</dc:date>
    </item>
  </channel>
</rss>

