View Single Post
  #8 (permalink)  
Old 2008-04-28
mcnallym mcnallym is offline
Senior Member
 
Join Date: 2007-06-04
Posts: 1,070
Rep Power: 3
mcnallym has an average reputation (10+)
Default Re: How to configure site-to-site VPN between networks with same IP addressing scheme

If you have an overlapping IP scheme then how can you only need to do a Src NAT as surely the destination packet would be a local IP address.

If the other end is a 3rd party and is already NATting the destination for you to there internal that overlaps with you, then you are communicating with a non-overlap as you talk to there NAT address.

If however you only need to do a src nat then you do the same as any other NAT.

Define a new network address the same size but different subnet as your internal network.

Src = internal_net
Dst = Remote_VPN_Net

xlatesrc = S(new_net)
Dst = Original

This will nat 1 to 1 from the internal net to the new network range.
Reply With Quote