03-11-2022 10:21 AM
Dear Team,
there is a requirement that need to have static NAT between two sites.
in both sites there will be multiple hosts and on a static NAT there is used only one single IP so,
e.g LAN1 IPs 192.168.1.1, 192.168.1.2, 192.168.1.3 these IPs will be nated static to IP 10.10.10.10 so on from LAN2 will try to access all the LAN IPs 3 mentioned above through single nated IP which is 10.10.10.10, because LAN2 knows only IP 10.10.10.10,
how is it possible to access from LAN2 any of IPs in LAN1 without Port Forwarding, how much is route map possible ?
03-11-2022 11:41 AM
@Essa_Rahemi try the following, which will translate your local network to 10.10.10.10:-
object network LOCAL
subnet 192.168.1.0 255.255.255.0
object network LOCAL-XLATE
subnet 10.10.10.10 255.255.255.0
!
nat (INSIDE,OUTSIDE) source static LOCAL LOCAL-XLATE destination static REMOTE REMOTE no-proxy-arp
...your crypto ACL would have to specify 10.10.10.10 as the source.
03-11-2022 08:33 PM
You are right, but when ever remote site tries to reach different hosts which is located in LOCAL LAN how it will be able to specify ?
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide