Ssh – RDP equivalent to SSH port forwarding

port-forwardingrdpsshssh-tunnelwindows-server-2012-r2

I'm connecting from one Windows machine to another using RDP. I'd like to forward traffic headed for localhost:81 to a machine accessible to the remote machine via its internal network on a local IP address, let's say 10.90.228.163. So I want the TCP traffic to go:

client --> localhost:81 --> [rdphost] --> 10.90.228.163:81 --> server

With OpenSSH and PuTTY, I could do this using local port forwarding; forward local port 81 to 10.90.228.163:123. Is there a way to do this with RDP instead?

Best Answer

No, it is not possible with RDP.

You can install an SSH server on windows and continue to use SSH.

Alternatively, you can use netsh to do TCP forwarding as described in this answer on SO:

netsh interface portproxy add v4tov4 listenport=81 listenaddress=127.0.0.1 connectport=81 connectaddress=10.90.228.163

Note that this will behave different ftom SSH: The connection to the connectaddress/port will originate from the machine it is listening on, instead of the target machine. Also, it will not be encrypted. This is rather a Windows equivalent for IPtables portforwarding, than for an SSH tunnel.