ahmedahmed wrote: » I have a small Lan(10.0.0.0) with a cisco gateway router as the gateway. My users are remote and they are required to use RDP to login to out systems and this is woriking fine.However I have a group of users that are located at a very far distance and when they connect through RDP the ping is very high (high latency) and thus some applications they are required to use do not function properly.I want to put a second router close the the users at the far distance so that their traffic is routed to the second router and redirected to the Lan router by the ISP using its back bone route hence reducing the Latency.Here is what my scenario looks like:Lets say my Main network Router is R1 and the second router I want to put at the remote location is R2Remote user (InternetRDP/http) (1.1.1.1)R2 Internet (2.2.2.2)R1 Lan(10.0.0.0)Remote user through the internet access 1.1.1.2(internet Ip address of R2) and is automatically redirected to R1 (2.2.2.2 Internet Ip of R1)at R2 1.1.1.1 is automatically translated to 2.2.2.2 without the user having to actually login to R2 and then trying to access R1.R1 does the regular Nat to direct traffic to the relevant Lan server.I have attempted to use VPN on a Stick so that the client uses VPN client to access R2 then the client uses the ISPs address to the internet to access R1 but this requires to install VPN client on the client so I am looking at if there is any other option.The only reason I want to set up R2 is so that their traffic is boosted by the ISP at R2 and then directed to R1, so I only want it to connect to the ISP router to R2 and no other infrastructure. Here is the configuration i came up with:for R1: ip name-server 10.0.0.1 interface gi0/0 ip address 10.0.0.254 255.255.255.0 interface gi0/1 ip address 2.2.2.2 255.255.255.0 ip route 0.0.0.0 0.0.0.0 2.2.2.253 ip nat inside source static 2.2.2.3 10.0.0.2 ip nat inside source static 2.2.2.4 10.0.0.3R2: (R2 only has one interface which is connected to the internet) interface gi0/1 ip address 1.1.1.1 255.255.255.0 ip nat outside ip virtual-reassembly ip policy route-map Nat-on-Stick interface Loopback0 ip address 10.11.0.1 255.255.255.0 ip nat inside ip virtual-reassembly access-list 144 permit ip 1.1.1.0 0.0.0.255 any route-map VPN-Client permit 10 match ip address 144 set ip next-hop 10.11.0.2 ip nat inside source static 1.1.1.2 2.2.2.3 ip nat inside source static 1.1.1.3 2.2.2.4
Monkerz wrote: » Forgetting about your NAT issues, adding an additional router smack in the middle of a connection is for sure not going to magically re-route traffic to a latency free span of the internet.