Route through 2 IPSec VPNs
-
I have three Netgate 6100's.
#1 - 172.16.1.x (connects to #2 & #3 via IPSec VPN)
#2 - 172.16.0.x (connects to #1 via IPSec VPN)
#3 - 192.168.50.x (connects to #1 via IPSec VPN)#1 is the main office and #2 and #3 connect to that main office. Until now, #2 never needed to connect to #2.
We have a server at #3 running a webapp that I would like to access from #2. How would I get that working. So I need to go from:
192.168.50.x (where I'm at) > 172.16.1.x -> 172.16.0.x.
Thank you!
-
@Spyderturbo007
You have to add a phase 2 to each connection to connect the satellites together.So on #1 VPN to #2:
local network: 192.168.50.x
remote network: 172.16.0.xon #1 VPN to #3:
local network: 172.16.0.x
remote network:192.168.50.x#2
local network: 172.16.0.x
remote network: 192.168.50.x#3
local network: 192.168.50.x
remote network: 172.16.0.x -
@viragomann Thank you! Do you know if the VPN will disconnect and reconnect if I add the second phase 2? I don't want to cause any disruption when I try it.