GithubHelp home page GithubHelp logo

ps6 / workfromhome-with-docker Goto Github PK

View Code? Open in Web Editor NEW

This project forked from andif888/workfromhome-with-docker

0.0 0.0 0.0 546 KB

HTML5 based remote desktop gateway using Apache Guacamole and Traefik Reverse Proxy including AD authentication and 2-FA

Shell 100.00%

workfromhome-with-docker's Introduction

WorkFromHome-with-Docker

"Navigate in any webbrowser to https://desktops.yourcompany.com and logon with your corporate Active Directory account (including 2-FA) to access your Windows desktops"

If you want your users to be able to access for example Windows PCs or Windows RDS, which are located on your corporate network from anywhere in the world using any HTML5 capable webbrowser, then this is right for.
If your are a homelab enthusiast and want your homelab to be accessible from any where from any device using HTML5, then this maybe worth to have a look.

WorkFromHome-with-Docker

This repo runs a bunch of docker containers on any Linux operating system to make this possible.

Traefik is used as a reverse proxy, which responsible for automatically requesting and renewing a Letsencrypt certificate for SSL terminiation and securing the network traffic. HTTPS request are proxied into Apache Guacamole.

Apache Guacamole is a clientless remote desktop gateway, which supports protocols like RDP, VNC and SSH. Because the Guacamole client is an HTML5 web application, use of your computers is not tied to any one device or location. As long as you have access to a web browser, you have access to your machines.

This repo automates the whole configuration and integration of Traefik and Apache Guacamole. By setting a few mandatory environment variables, user authentication can be integrated into Active Directory using LDAP. Also 2-FA-Authentication is enabled using Google-Authenticator or any compatible TOTP implementation.

If you are not afraid of Linux, Docker and a bunch of Opensource Tools, then you are there in a few minutes.

How to use this repo

Pre-requesites

Ideally you have a vanilla or an existing Ubuntu server on your corporate network. Your internet router should forward all network traffic, incomming from the internet on port 80 and 443 to the internal IP address and port 80 and 443 of your Ubuntu server. Port 80 is used by Letsencrypt for httpChallenge for automatic SSL certificate request an renewals. Port 443 is actually used by the secured HTTPS traffic. You should register a public DNS hostname - for example desktops.yourcompany.com - which points to the external IP address your internet router. If your external IP address of your internet router is not a static one, but changes sometimes, then dynamic DNS updates is your friend, which is often an already built-in feature of your internet router and works usually very reliable.
NOTE: You can easily set your DynDNS-Name as CNAME to desktops.yourcompany.com in your public DNS.

Pro-Tip: Maybe you have spotted the Vagrantfile. This means, for testing purpose you can use vagrant up to spin up an Ubuntu Linux immediately, if you are a little bit familiar with Vagrant and VirtualBox and have already installed it somewhere. If you do so then you can already skip Step 1, because Vagrant has done it already for you.

Step 1:

Run the install.sh script as root on your Ubuntu server. This script automatically installs docker, docker-compose and git. It also clones this repo into the directoy /srv/workfromhome-with-docker on your server.

sudo -s
curl -sfL https://raw.githubusercontent.com/andif888/workfromhome-with-docker/master/install.sh | sh -

Step 2:

Edit the .env file and customize at least the values of the mandatory environment variables with your preferred text editor. All mandatory an optional setting are documented inside the .env file.

cd /srv/workfromhome-with-docker
nano .env 

Step 3:

Start docker container using the start.sh script.

./start.sh

Step 4:

Point your preferred webbrowser to the DNS host name, which you have configured as FQDN_HOST_NAME in your .env file. Example: https://desktops.yourdomain.com
The default username is guacadmin and password is guacadmin.

(If you currently can not access your external FQDN_HOST_NAME from internally, you can verify it from internally using http://ubuntu-internal-ip:8081/guacamole
Alternatively add a hosts file entry, which points your FQDN_HOST_NAME to the internal IP of your Ubuntu Server -> Beginner-Guide-to-edit-your-hosts-file)

After entering credentials your prompted to scan the QR-Code, with a compatible TOTP App on your mobile phone.
Google Authenticator works good.

Guacamole 2FA QR-Code

After scanning the QR-Code and entering the first token your are successfully logged into Apache Guacamole.
Please change the default password immediatelly.

Configure your first Windows Machine accessible through Guacamole, which has RDP enabled

Click Settings in the top right menu.

Guacamole Settings Menu

Click Connections and the New Connection

Guacamole Connection Menu

Enter any Name. It's only a display name. Select RDP as Protocol.

Guacamole Edit Connection

Scroll down to Parameters and enter the RDP connection details.

Guacamole Edit Connection 02

Optionally fine-tune for latest RDP-Protocol version. And finally hit Save at the bottom of the page.

Guacamole Edit Connection 03

Go back to Home

Guacamole home

And start the connection

Guacamole home start connection

and have fun! HTML5 based RDP into your Windows machine.

Guacamole home start connection

General Help on How to configure connections in Guacamole

Using Active Directory Authentication and enable 2-FA

Make sure you have entered correct mandatory values regarding LDAP authentication into the .env file in Step 2 during initial configuration.
NOTE: We don't use the AD Schema preparation, documented at https://guacamole.apache.org/doc/gug/ldap-auth.html, because we don't like to do changes in our Active Directory Schema. Please read the documention to understand the mapping between database users und AD users.

Step 1: Create an initial admin user in Guacamole which maps to an AD user

Create a new user in Guacamole and set its username to the username of an existing AD user, which is located in your AD-Tree below the OU (Organizational Unit), which you have configured in LDAP_USER_BASE_DN environment variable.

If you haven't changed LDAP_USERNAME_ATTRIBUTE then the mapped username of your AD user is the userPrincipalName AD-Attribute. Your can set any password. It must not match your AD user's password. Make sure you check all permissions and hit Save at the bottom of the page.

Guacamole home start connection

Step 2: Logon with your newly mapped AD user account

Now you should be able to logon with the AD user account.
Because of we have previously set the permission Change own password, we are prompted with the already familiar 2-FA screen. Again use your Google Authenticator to scan the QR-Code.

If you now navigate to Settings -> Users you should get already a list of your AD user accounts, which means, your LDAP integration and authentication is working perfect.

Step 3: Enable 2-FA for and AD user

If you want to enable 2-FA for AD user then you minimum need to assign the permission Change own password on his user account.
Don't be afraid of the setting, it doesn't mean a user can change its AD password using this web GUI. It's only about changing its personal credential information in Guacamole's MySQL database, which is necessary to write down the TOTP secret key.

The best thing at the Bottom: Pass-Through credentials to a connection

You have already learned to create your first connection to a Windows machine further above.
There is a nice feature which allows you to pass-through your Guacamole logon credentials to a connection.

You remember when you have scrolled down to Parameters and entered the RDP connection details?
To enable Pass-Through credentials you do not hardcode username and password. You only need to enter parameter tokens.

For the username you enter ${GUAC_USERNAME}
For the password you enter ${GUAC_PASSWORD}

If you use the userPrincipalName for your AD users all is perfect and no need to worry about the Domain field ;-)

Guacamole Pass-Through Credentials

To learn more about parameter tokens

Troubleshooting and Logs

Viewing Traefik Logs

cd /srv/workfromhome-with-docker
docker-compose logs -f --tail=1000 traefik

Viewing Guacamole Logs

cd /srv/workfromhome-with-docker
docker-compose logs -f --tail=1000 guacamole

Viewing all Logs

cd /srv/workfromhome-with-docker
docker-compose logs -f --tail=1000 

References and documentation

Guacamole User Guide
Traefik Documentation

Disclaimer

Use at your own risk.
This is not a solution which scales for thousands of users.
Depending on your internet connection this is perfectly fine for 50+ users with a single Ubuntu machine.

workfromhome-with-docker's People

Contributors

andif888 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.