cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
964
Views
0
Helpful
3
Replies

Destination NAT from Outside interface (VPN)

rcavezzale
Level 1
Level 1
Spoiler

Hi Guys

I would like to configure the firewall to make a destination NAT of the traffic coming from a specific VPN.

In detail the source 10.0.0.1 when contacting 10.0.1.1 the firewall change destination address from 10.0.1.1 to 192.168.1.1

Could you help?

Thanks in advances

1 Accepted Solution

Accepted Solutions

Unfortunately the solution is wrong.

 

Below the correct configuration:

 

object network SOURCE

 network-object host 10.0.0.1

 

object network OUTSIDE_NAT

 network-object host 192.168.1.1

 

object network DESTINATION

 network-object host 10.0.1.1

 

! cambiato nat

nat (OUTSIDE,OFFICE) source static 10.0.0.1 10.0.0.1 destination static 192.168.1.1 10.0.1.1

View solution in original post

3 Replies 3

Hi,

This should work:

 

object network SOURCE
 host 10.0.0.1
object network DESTINATION
 host 10.0.1.1
object network OUTSIDE_NAT
 host 192.168.1.1

nat (INSIDE,OUTSIDE) source static SOURCE OUTSIDE_NAT destination static DESTINATION DESTINATION

 

Obviously the destination network (10.0.1.1) will need to know how to route to the natted address 192.168.1.1 to send the return traffic, so you should make sure the routing is in place.

 

HTH

Thanks very much, i try to make it on my lab.
In few days i report feedback

 

Unfortunately the solution is wrong.

 

Below the correct configuration:

 

object network SOURCE

 network-object host 10.0.0.1

 

object network OUTSIDE_NAT

 network-object host 192.168.1.1

 

object network DESTINATION

 network-object host 10.0.1.1

 

! cambiato nat

nat (OUTSIDE,OFFICE) source static 10.0.0.1 10.0.0.1 destination static 192.168.1.1 10.0.1.1