<?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 VPN / NAT problem in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/pix-vpn-nat-problem/m-p/683410#M1035433</link>
    <description>&lt;P&gt;&lt;/P&gt;&lt;P&gt;hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am trying to configure a vpn setup, where i have configured the crypto map and isakmp configuration but as for the acl and natting problem, i face the following issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to establish a VPN tunnel from a PIX to another IPSec gateway that the local host IP gets natted as following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Local Host: 172.16.10.1. This host should be&lt;/P&gt;&lt;P&gt;natted to an IP, say, 10.10.10.2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Destination host: 172.20.10.2&lt;/P&gt;&lt;P&gt;Remote Peer: 209.206.81.71&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;User from 172.16.10.1 should only be able to access the FTP service on the destination host. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could someone advise me on the config to be done on the PIX? I know the IKE and IPSec config to be done but how do I handle access-lists and NAT?&lt;/P&gt;</description>
    <pubDate>Mon, 11 Mar 2019 08:57:56 GMT</pubDate>
    <dc:creator>kasame141006</dc:creator>
    <dc:date>2019-03-11T08:57:56Z</dc:date>
    <item>
      <title>PIX VPN / NAT problem</title>
      <link>https://community.cisco.com/t5/network-security/pix-vpn-nat-problem/m-p/683410#M1035433</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;P&gt;hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am trying to configure a vpn setup, where i have configured the crypto map and isakmp configuration but as for the acl and natting problem, i face the following issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to establish a VPN tunnel from a PIX to another IPSec gateway that the local host IP gets natted as following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Local Host: 172.16.10.1. This host should be&lt;/P&gt;&lt;P&gt;natted to an IP, say, 10.10.10.2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Destination host: 172.20.10.2&lt;/P&gt;&lt;P&gt;Remote Peer: 209.206.81.71&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;User from 172.16.10.1 should only be able to access the FTP service on the destination host. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could someone advise me on the config to be done on the PIX? I know the IKE and IPSec config to be done but how do I handle access-lists and NAT?&lt;/P&gt;</description>
      <pubDate>Mon, 11 Mar 2019 08:57:56 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/pix-vpn-nat-problem/m-p/683410#M1035433</guid>
      <dc:creator>kasame141006</dc:creator>
      <dc:date>2019-03-11T08:57:56Z</dc:date>
    </item>
    <item>
      <title>Re: PIX VPN / NAT problem</title>
      <link>https://community.cisco.com/t5/network-security/pix-vpn-nat-problem/m-p/683411#M1035434</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for those who were unable to understand my question and even for those were about to answer. I have finally completed what i wanted to do. so i thought i should share it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i did the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;\\-Define a conditional nat process to nat 172.16.10.1 to 10.10.10.2, but only if going to destination 172.20.10.2 &lt;/P&gt;&lt;P&gt;access-list conditional_nat permit ip host 172.16.10.1 host 172.20.10.2&lt;/P&gt;&lt;P&gt;global (outside) 20 x.x.10.2&lt;/P&gt;&lt;P&gt;nat (inside) 20 access-list conditional_nat&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;\\-Define traffic to be encrypted. This now includes the natted 10.10.10.2 address and not the original host IP&lt;/P&gt;&lt;P&gt;access-list special_vpn permit ip host 10.10.10.2 host 172.20.10.2&lt;/P&gt;&lt;P&gt;crypto map yourmap match address special_vpn&lt;/P&gt;&lt;P&gt;crypto map yourmap set peer 209.x.x.71&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;\\-- restrict outbound VPN to only ftp&lt;/P&gt;&lt;P&gt;access-list outbound_restrict permit tcp host 172.16.10.1 host 172.20.10.2 eq ftp&lt;/P&gt;&lt;P&gt;access-list outbound_restrict permit tcp host 172.16.10.1 host 172.20.10.2 eq ftp-data&lt;/P&gt;&lt;P&gt;access-list outbound_restrict deny ip host 172.16.10.1 host 172.20.10.2&lt;/P&gt;&lt;P&gt;access-list outbound_restrict permit ip any any&lt;/P&gt;&lt;P&gt;access-group outbound_restrict in interface inside&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps to anyone like me. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Nov 2006 05:48:05 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/pix-vpn-nat-problem/m-p/683411#M1035434</guid>
      <dc:creator>kasame141006</dc:creator>
      <dc:date>2006-11-20T05:48:05Z</dc:date>
    </item>
  </channel>
</rss>

