Skip to content

Instantly share code, notes, and snippets.

@omps
Created March 3, 2016 04:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save omps/ed513dcfd5e291b8ba17 to your computer and use it in GitHub Desktop.
Save omps/ed513dcfd5e291b8ba17 to your computer and use it in GitHub Desktop.
xrdp
Introduction
xrdp is a Remote Desktop Protocol (RDP) Server, allowing RDP clients to be presented an X windows desktop to the user.
Setup
First install xrdp:
sudo apt-get -y install xrdp
Next, change the encryption level to high from the default low:
sudo nano /etc/xrdp/xrdp.ini
encrypt_level=high
Next, allow just RDP through the local firewall:
sudo ufw allow 3389/tcp
Finally, restart xrdp and you should be able to connect:
sudo /etc/init.d/xrdp restart
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment