If you’re an SSH tunneler like myself, you know that you can’t use RDP with a tunnel reflected off yourself (localhost). I just figured out how to do this. Though, it’s rather simple and I’m somewhat ashamed that I didn’t think of it before. Just add a line to your C:\Windows\system32\drivers\etc\hosts file.
127.0.0.1 me
I then used an SSH tunnel to redirect the port number as well.
ssh ... -L 3390:192.168.0.85:3389 ...
This will redirect port 3390 to the RDP port, 3389. Now connect to me:3390 for RDP.