I have a server on a remote site that I need to relocate to my main site.
So that I do not have to visit each workstation in turn to change the target
IP address of the server I intend to use NAT on the remote sites Cisco2651 router.
I have added the following into the remote site router
interface FastEthernet0/0
ip nat inside
interface FastEthernet0/1
ip nat outside
exit
ip nat inside source static 172.31.107.107 192.168.123.230
with FastEthernet0/0 being on the link back to main site and
FastEthernet0/1 being on the remote site LAN
when I try to telnet from a remote workstation onto the server with the original IP address
debug IP nat shows
02:19:25: NAT: s=192.168.123.220, d=192.168.123.230->172.31.107.107 [56712]
02:19:28: NAT: s=192.168.123.220, d=192.168.123.230->172.31.107.107 [56715]
02:19:34: NAT: s=192.168.123.220, d=192.168.123.230->172.31.107.107 [56717]
But connection failed message on workstaion
when I ping the original IP address from the worstation I get reply from 192.168.123.230
debug IP nat shows
02:21:54: NAT*: s=192.168.123.220, d=192.168.123.230->172.31.107.107 [56785]
02:21:55: NAT*: s=192.168.123.220, d=192.168.123.230->172.31.107.107 [56789]
02:21:56: NAT*: s=192.168.123.220, d=192.168.123.230->172.31.107.107 [56792]
02:21:57: NAT*: s=192.168.123.220, d=192.168.123.230->172.31.107.107 [56794]
I shall post full configs if necessary, but I hope this is an easy one to correct.
Thanks