Created
March 3, 2016 04:23
-
-
Save omps/ed513dcfd5e291b8ba17 to your computer and use it in GitHub Desktop.
xrdp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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