|
A quick note that might be helpful to others about ssh port forwarding….
Here’s the situation: you have a box that you can ssh to from the public internet… and that box can RDP to a machine running RDP (or any other network protocol). Basically I couldn’t get my company VPN working… so I decided to pass it by using SSH. Here’s how:
ssh -L 3389:someRemoteRDPBox:3389 username@someSshServer
then if you RDP to localhost … it will get forwarded over your ssh tunnel.
You can do similar things with Putty on Windows. I’m using a Mac as my client computer here, but it should work from Linux as well with the exact same syntax etc…
|