Currently our users rely on a front-end that is pointing to a server that resides inside of our lan (say 10.0.0.6) and it is configured in the application to that IP. We are outsourcing this server (say
192.168.1.2) via a dedicated link handled by a small Cisco 1700 (with an IP of 10.0.0.240) router that is physically located at our location that they manage.Currently my internal routers are set to route all other traffic destined for 192.168.1.2 via 10.0.0.240 and then it winds its way onto the new server which works. (they have the statement: "ip route
192.168.1.2 255.255.255.255 10.0.0.240")I need to come up with a way to redirect the traffic destined for
10.0.0.6 coming from this front-end to the IP 192.168.1.2 and so that it goes out via 10.0.0.240 without manually touching each machine and changing it to point to 192.168.1.2.I had tried a route statement of "ip route 10.0.0.6 255.255.255.255
192.168.1.2" but that results in a loop where the traffic just bounces around on the router since there is no 10.0.0.6 on their side.Should I just have them put a route in their router to then handle forwarding that traffic on to their server, or is there a way for me to handle this all on my side of the network so no changes need to be made on their router?
Thanks, Dominic