07-24-2008 04:02 PM
Hi,
I have a Site to site VPN (Site A - 10.0.0.x, Site B- 192.168.0.x) active and also need the requirement for port forwarding TCP 3389 to a Terminal Services Server from the outside.
I have the nat statement-
ip nat inside source static tcp 10.0.0.78 3389 interface dialer 0 3389
on side A and can now get in via the public(dialer 0) IP address straight to the server (10.0.0.78) I can also RDP to 10.0.0.78 from inside Site A but cannot RDP from Site B to 10.0.0.78
I can ping 10.0.0.78 fron site B and there is no firewall currently on the machine but it does not work.
As soon as I remove the Static NAT statement, I can RDP straight in from Site B (through the tunnel) to 10.0.0.78
Is there a way to set this up so both Remote (internet) clients can RDP to the server AND tunnel clients?
*note Tunnel clients can get on ok via the public IP if static nat is present.
thanks in advance.
Solved! Go to Solution.
07-25-2008 12:47 AM
ip nat inside source static tcp 1.1.1.1 80 2.2.2.2 80 route-map SSS
route-map SSS permit 10
match ip address SSS
ip access-list ext SSS
deny ip any remote-net
permit ip any any
07-24-2008 10:15 PM
Not really possible as you will be translating the source address of anything from 10.0.0.78 tcp 3389 to the interface address of dialer 0.
The best way to do this is to have 2 ip addresses on the server...
Translate one for public access and have another that isn't translated for internal access
07-25-2008 12:47 AM
ip nat inside source static tcp 1.1.1.1 80 2.2.2.2 80 route-map SSS
route-map SSS permit 10
match ip address SSS
ip access-list ext SSS
deny ip any remote-net
permit ip any any
07-27-2008 04:33 AM
Thanks very much for both of your replys.
When using the - "deny ip any remote-net" command
I'm assuming the 'remote-net' is not a command but the ip range on the other side of the tunnel? ie. 192.168.0.0 0.0.0.255 ?
or the remote network's public ip address ?
regards,
os4mike
07-27-2008 09:52 AM
Hi, Michael
the 'remote-net' is the ip range on the other side of the tunnel
07-27-2008 09:04 PM
Thanks very, much, This worked a treat!
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide