Hello,
I have few Juniper SRX using route based VPN. Everything is routing and working fine. It’s like this:
FW1 – site 1 = 10.11.0.0/16
FW2 – site 2 = 10.12.0.0/16
FW3 – site 3 = 10.13.0.0/16
FW4 – site 4 = 10.14.0.0/16
etc.
On my site 1, I have a VPN with a partner. From this site, I can access the remoter server (https srv1 = 192.168.1.1).
Only the site 1 can access the partner network 192.168.1.0/24. The VPN added a static route to this remote desktop and this network isn’t propagated through my OSFP.
The thing is I don’t really want to route this network to my other site into my OSPF.
I would like to hide this remote network to my coworker.
Instead of doing https://192.168.1.1 I would like to give them https://10.11.55.249 (assuming my internal routing is ok).
So, if from a laptop in site3, I do https://10.11.55.249, it will do: laptop site 3 à GW FW3 à GW FW1 à 10.11.55.249 à 192.168.1.1
I tried this on FW1:
set security nat proxy-arp interface reth1.54 address 10.12.55.249/32
set security nat destination pool remote-srv1 address 192.168.1.1/32
set security nat destination rule-set nat-test from zone Trust
set security nat destination rule-set nat-test from zone VPN-PLW
set security nat destination rule-set nat-test rule DNAT-nat-test match destination-address 10.12.55.249/32
set security nat destination rule-set nat-test rule DNAT-nat-test then destination-nat pool remote-srv1
It’s working but only from the site 1. Not from the other site. I’m sure I can reach the 10.12.55.249/24 because I have servers in this network working normally.
I guess, the proxy-arp isn’t going thought my internal VPN.
I check the on the FW1 with a show security flow session, I can see the flow on the FW1 from my laptop in site 3 but after nothing.
What is the best way to hide this remote server and no route the remote network?
Thanks,