In short i want to provide my remote users, access to two sites (Site1 & Site2) which are both behind NAT, firewall, etc. that are out of my control.
I have successfully provided remote access for my users to ONE site by secure NAT.
The configuration is as follows:
1) HQ runs the SE vpn server
2) Site1 runs BRIDGE with secure NAT & DHCP enabled (with a cascade connection to HQ)
2-1) Site1 is behind NAT, firewall, etc. which I do not control
- The users connect to HQ -> then receive their IP from the bridge at site 1 -> a static route is inserted via secure NAT for clients, thus allowing them to access the computers at Site1
- So far so good.
Code: Select all
HQ config (SE-VPN):
------------------
HUB = MyVPNCenter
SECURENAT :Disabled
Site1 config (SE-BRDIGE):
------------------------
SECURENAT :Enabled
NAT virtual interface ip: 192.168.30.1/24
DHCP range : 192.168.30.10/24 TO 200
default Gateway : none
static route table to push= 192.168.1.0/255.255.255.0/192.168.30.1
3) I have installed the SE-BRIDGE at site 2 with similar configurations
3-1) I have enabled the secure NAT at Site2 as well, connected to HQ via a cascade connection (Site2 is also behind NAT, firewall, etc. that are out of my control)
3-2) I have disabled the DHCP (to avoid collision with DHCP of Site1)
3-3) I have added the route of Site2 in NAT@Bridge-Site1
Code: Select all
Site2 config (SE-BRDIGE):
-------------
SECURENAT :Enabled
NAT virtual interface ip: 192.168.30.2/24
DHCP: Disabled
default Gateway : none
static route table to push= empty
static route table to push (@Bridge of Site1 updated)= 192.168.1.0/255.255.255.0/192.168.30.1,
192.168.2.0/255.255.255.0/192.168.30.2
The cascade connection is established from both sites to HQ, yet users can NOT connect to computers at site 2
Question 1) My understanding is that when we establish cascade connections, all networks are connected to each other at layer 2. Is this RIGHT????
Question 2) If so why cant my users reach Lan@site2
I have also tried changing the NAT virtual ip address of Site2 to 192.168.40.1 with no success!!!
I have also tried adding another hub at HQ (say HUB2) and connecting BRDIGE@site2 to it (via a cascade) and further using Layer3 switching with no success!!!
I believe this should be a common scenario and I am doing sth. wrong!!!!
Any help is highly appreciated
Best Regards