<?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: translation issue  in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/translation-issue/m-p/731191#M1005499</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i need it in such a way that when 16.172.5.7 access from the outside to inside particular server, the source ip address should get translated to 20.172.220.4, as the server inside is configured to only allow access from specific ip addresses from internal subnet and 20.172.220.4 is one of it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;anyways, i did this and it sort of worked but if there is any other way of doing it please do tell.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list NAT_ONE permit ip host 16.172.5.7 host 60.10.136.72&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static (outside,inside) 20.172.220.4 access-list NAT_ONE&lt;/P&gt;&lt;P&gt;static (inside,outside) 60.10.136.72 16.172.23.1 netmask 255.255.255.255&lt;/P&gt;&lt;P&gt;static (inside,outside) 60.10.135.72 20.172.216.4 netmask 255.255.255.255&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what it did was that when traffic coming from 16.172.5.7 to 60.10.136.72 is tranlated the source ip to 20.172.220.4 as it should &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and when traffic coming from 16.172.5.7 to 60.10.135.72 it creats one-to-one map as per the static defined and doesn't tranlate the source ip. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 03 May 2007 05:40:17 GMT</pubDate>
    <dc:creator>zulqurnain</dc:creator>
    <dc:date>2007-05-03T05:40:17Z</dc:date>
    <item>
      <title>translation issue</title>
      <link>https://community.cisco.com/t5/network-security/translation-issue/m-p/731189#M1005497</link>
      <description>&lt;P&gt;hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;suppose there is one host who is accessing two different servers in the network.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when host A access to host B all we have to do is make sure that it gets to talk to it one to one thus i configure this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static (inside,outside) tcp 60.x.x.72 3392 20.172.216.4 3392 netmask 255.255.255.255 &lt;/P&gt;&lt;P&gt;static (inside,outside) tcp 60.x.x.72 3394 20.172.216.4 3394 netmask 255.255.255.255&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list acl_out_in permit tcp host 20.x.x.4 host 60.10.135.72 eq 3392&lt;/P&gt;&lt;P&gt;access-list acl_out_in permit tcp host 20.x.x.4 host 60.10.135.72 eq 3394&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and host A can connect to host B with success no problem at all. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, when host A try to connect to  host C we not only have to nat/translate the source IP of this host but also the like host B scenario that it should be one to one with it, so i configure the following&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static (outside,inside) 20.x.x.4 16.172.5.7 netmask 255.255.255.255 &lt;/P&gt;&lt;P&gt;static (inside,outside) 60.x.x.72 16.172.23.1 netmask 255.255.255.255&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list acl_out_in permit tcp host 60.x.x.72 host 20.172.220.4 eq 6003&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;host A connects to host C successful and no problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the issue i have here is that when i see the netstat of host B it shows that the host A (remote host ip address is) 20.172.220.4 whereas it should be it orginal source ip address. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so is there a way it can be done or is it the firewall itself that it's not possible and it would be causing any problem in connection, cuz currently on random times the connection drops automaticaly btw host A and host B, so i assume it is because of this issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any help would be great &lt;/P&gt;</description>
      <pubDate>Mon, 11 Mar 2019 10:07:44 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/translation-issue/m-p/731189#M1005497</guid>
      <dc:creator>zulqurnain</dc:creator>
      <dc:date>2019-03-11T10:07:44Z</dc:date>
    </item>
    <item>
      <title>Re: translation issue</title>
      <link>https://community.cisco.com/t5/network-security/translation-issue/m-p/731190#M1005498</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why do you need &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static (outside,inside) 20.x.x.4 16.172.5.7 netmask 255.255.255.255 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you remove it and clear xlate, I believe you should be fine!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,  &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 May 2007 18:59:00 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/translation-issue/m-p/731190#M1005498</guid>
      <dc:creator>oabduo983</dc:creator>
      <dc:date>2007-05-02T18:59:00Z</dc:date>
    </item>
    <item>
      <title>Re: translation issue</title>
      <link>https://community.cisco.com/t5/network-security/translation-issue/m-p/731191#M1005499</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i need it in such a way that when 16.172.5.7 access from the outside to inside particular server, the source ip address should get translated to 20.172.220.4, as the server inside is configured to only allow access from specific ip addresses from internal subnet and 20.172.220.4 is one of it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;anyways, i did this and it sort of worked but if there is any other way of doing it please do tell.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;access-list NAT_ONE permit ip host 16.172.5.7 host 60.10.136.72&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static (outside,inside) 20.172.220.4 access-list NAT_ONE&lt;/P&gt;&lt;P&gt;static (inside,outside) 60.10.136.72 16.172.23.1 netmask 255.255.255.255&lt;/P&gt;&lt;P&gt;static (inside,outside) 60.10.135.72 20.172.216.4 netmask 255.255.255.255&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what it did was that when traffic coming from 16.172.5.7 to 60.10.136.72 is tranlated the source ip to 20.172.220.4 as it should &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and when traffic coming from 16.172.5.7 to 60.10.135.72 it creats one-to-one map as per the static defined and doesn't tranlate the source ip. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2007 05:40:17 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/translation-issue/m-p/731191#M1005499</guid>
      <dc:creator>zulqurnain</dc:creator>
      <dc:date>2007-05-03T05:40:17Z</dc:date>
    </item>
    <item>
      <title>Re: translation issue</title>
      <link>https://community.cisco.com/t5/network-security/translation-issue/m-p/731192#M1005500</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i need advise n help, please tell me say something&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 May 2007 19:29:09 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/translation-issue/m-p/731192#M1005500</guid>
      <dc:creator>zulqurnain</dc:creator>
      <dc:date>2007-05-04T19:29:09Z</dc:date>
    </item>
  </channel>
</rss>

