-
Hi, I've used xrdp a long time and am very greatful for it! Many thanks. Now, I'm trying to make my devices a little more secure. That includes the connection type to them. With xrdp I read that I would only have to set the port in /etc/xrdp/xrdp.ini to port=tcp://.:XXXX instead of port=XXXX. I did that, restarted the service (and even the machine), but I am still able to log in just like before with username and passwort - no ssh tunnel required, contrary to my expectation. xrdp version 0.9.9. I am fairly sure, that this is not an issue on xrdp's side, but that I am overseeing something. I know that github is not the place for such help requests, but on other forums I've got no help so far. Any help or suggestions is very much obliged. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Solved: See this guide, but: Instead of setting To make my SSH (tunnel) safe, I used
Tag for Google to find this: xRDP – How to secure Xrdp Connection using SSH Tunnels |
Beta Was this translation helpful? Give feedback.
Solved:
See this guide, but: Instead of setting
port=tcp//.:3389
, I left it atport=3389
(or the one you like) and addedaddress=127.0.0.1
to the line above. Then Isudo service xrdp restart
to restart xrdp, which will of course terminate any remote desktop session. Upon re-establishing that, I'm let through - as intended. I then continued in the guide above to set puTTY accordingly. Joined with it (which opens the SSH tunnel) and then connected with Remote Desktop to localhost:5555 (or whatever you have set in puTTY). Then everything worked as before, but now through the SSH-tunnel.To make my SSH (tunnel) safe, I used
ssh-keygen -b 4096
(4096 is probably overkill) on the remote machin…