rstainforth Posted December 1, 2006 Posted December 1, 2006 Hi all, I have a cisco 1700 series router, and was wondering if anyone could point me in the right direction for routing remote desktop requests from outside into my home pc?At the moment I have two pc's and a laptoip behind the router, NAT'ed to my public facing IP, and the only way I can connect to my home machine when I'm at work is to use the corporate VPN connection, however if I'm working on something at home and need to reboot I lose the VPN, or if I want to test something from my home pc (perhaps becasue the network users are complaining they are unable to access a resource over the vpn) I can't do it.What I'm looking for is the configuration commands to allow a remote desktop to my IP (say 199.99.99.99) to be routed automatically to my PC rather than the kids or the good ladies (so straight to 192.168.1.2 rather than any other).Any help is appreciated!oh, and please don't tell me to "google" it, because I'm far too lazy lol
rendrag Posted December 3, 2006 Posted December 3, 2006 i've never configured that specific router, but all you would have to do would be to configure a request coming into your router over UDP port 3389 be forwarded directly to your PC at work (if I understand the question)
CptMurphy Posted December 3, 2006 Posted December 3, 2006 (edited) Well, you are proabably using NAT with overload right? Just add an access list. I'm basing this on what I think you are looking for.access-list 101 permit ip 199.99.99.99 0.0.0.0 192.168.1.2 0.0.0.0 eq 3389access-list 101 deny ip 199.99.99.99 0.0.0.0 192.168.1.0 0.0.0.255access-list 101 permit any anyChange the 3389 if you need to. When your work PC tries to access your LAN, the router will check this ACL, if it sees that the first entry works it routes it to your PC. The second entry is just to make it so that your work PC wont access the rest of your LAN incase, for whatever reason, the first entry doesn't match. So this protects you from accidentally accesing the kid's or the good ladie's PCs. The last entry is to make sure that other traffic gets in. I don't remember about the second ACL entry, you may need to define a port, but I don't think so. Edited December 3, 2006 by CptMurphy
rstainforth Posted December 4, 2006 Author Posted December 4, 2006 Well, you are proabably using NAT with overload right? Just add an access list. I'm basing this on what I think you are looking for.access-list 101 permit ip 199.99.99.99 0.0.0.0 192.168.1.2 0.0.0.0 eq 3389access-list 101 deny ip 199.99.99.99 0.0.0.0 192.168.1.0 0.0.0.255access-list 101 permit any anyChange the 3389 if you need to. When your work PC tries to access your LAN, the router will check this ACL, if it sees that the first entry works it routes it to your PC. The second entry is just to make it so that your work PC wont access the rest of your LAN incase, for whatever reason, the first entry doesn't match. So this protects you from accidentally accesing the kid's or the good ladie's PCs. The last entry is to make sure that other traffic gets in. I don't remember about the second ACL entry, you may need to define a port, but I don't think so.Sweet, thanks!
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now