Skip to content

Nilpo/unifi-droplet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 

Repository files navigation

Setting up Ubiquiti Unifi on DigitalOcean

Overview

Ubiquiti's UniFi controller is a great way to manage networks built on Ubiquiti infrastructure. As a service provider, you may wish to host a centralized controller in the cloud so that you can manage multiple networks from a single location. This how-to demonstrates how you might go about deploying Ubiquiti UniFi on a DigitalOcean droplet for easy scalability.

Contents

Prerequisites

  • A DigitalOcean account
  • A UniFi cloud account (optional)

back to top


Creating a droplet on DigitalOcean

  1. After logging in to the DigitalOcean dashboard, click the Create button and choose Droplets from the expanding menu.

  2. Under Choose an image, select One-click apps and then choose MongoDB 3.4.10 on 16.04.

  3. Under Choose a size, select a size that fits your budget. (The smallest size should be just fine to get started. It's easy to scale your application up as you grow.)

  4. Under Choose a datacenter region, select a region that is close to you and your clients.

  5. Under Select additional options, select both Backups and Monitoring. These free addons are important for any production system.

  6. Under Add your SSH keys, select the SSH key for the machine you are currently working on or create one. If you choose not to use SSH authentication, you can still log in to your droplet using a username and password but SSH is the preferred method because of its increased security. More information about SSH logins can be found here.

  7. Under Finalize and create, assign your droplet and appropriate name and click the Create button.

Once your droplet is created, its details can be viewed in your droplets list. Make a note of the IP address that has been assigned to your droplet. You'll need this later along with the temporary password that you will receive in your welcome email.

back to top

Connecting to a droplet

You will use SSH to connect to your new DigitalOcean droplet. For Linux and Mac systems, this is easiest done using OpenSSH at the command line. Windows users are recommended to use the free PuTTY tool.

Fill in your details on the PuTTY Configuration dialog. Pay special attention the the IP address. Make sure that it matches the IP address of your new droplet.

Log in using the username root and the password that was supplied to you. When logging in for the first time, you will be required to set a permanent password for your root account. Once you have done this, you will be logged in to your droplet and you will have a root prompt.

PuTTY will also warn you that it does not recognize the certificate for the server your are connecting to. Since this is your first time connecting, select Yes to accept the server's certificate and open the connection.

To connect from the command line instead, use the following command:

ssh root@<IP_ADDRESS>

back to top

Setting up an Ubuntu environment

Add a regular account

  1. Add a regular user account.

    # adduser ubnt
    Adding user `ubnt' ...
    Adding new group `ubnt' (1000) ...
    Adding new user `ubnt' (1000) with group `ubnt' ...
    Creating home directory `/home/ubnt' ...
    Copying files from `/etc/skel' ...
    Enter new UNIX password: <YOUR_SECURE_PASSWORD>
    Retype new UNIX password: <YOUR_SECURE_PASSWORD>
    passwd: password updated successfully
    Changing the user information for ubnt
    Enter the new value, or press ENTER for the default
            Full Name []: Ubiquiti
            Room Number []: 
            Work Phone []: 
            Home Phone []: 
            Other []: 
    Is the information correct? [Y/n] Y
  2. Add the new user account to the sudoers group so that you can perform privileged commands.

    # usermod -aG sudo ubnt
  3. (Optional) If you chose to add an SSH key during droplet creation, you'll need to copy the authorized key to your new user before logging in. If you did not choose to set up SSH access during creation, you can skip this step.

# mkdir -p /home/ubnt/.ssh
# cp /root/.ssh/authorized_keys /home/ubnt/.ssh/authorized_keys
# chmod 700 /home/ubnt/.ssh
# chmod 644 /home/ubnt/.ssh/authorized_keys
# chown -R ubnt:ubnt /home/ubnt/

1. Log out and log back in using the newly created user.

 ```shell
 # exit
 $ ssh ubnt@<IP_ADDRESS>
 ```

[back to top](#top)

#### Set up a firewall <a name="ufw"></a>

1. Make sure that the root directory is not writeable by group.

 ```shell
 $ sudo chmod g-w /
 ```

1. We will use the built-in `ufw` firewall. You can see what apps are already recognized by `ufw` by using the following command.

 ```shell
 $ sudo ufw app list
 Available applications:
   OpenSSH
 ```

1. Here you can see that it recognizes that OpenSSH is installed. Before enabling the firewall, we need to make sure that OpenSSH is allowed so that we can remain logged in.

 ```shell
 $ sudo ufw allow OpenSSH
 ```

1. Now we can enable the firewall.

 ```shell
 $ sudo ufw enable
 ```

1. Next we'll verify that the firewall is working.

 ```shell
 $ sudo ufw status
 Status: active
  
 To                         Action      From
 --                         ------      ----
 OpenSSH                    ALLOW       Anywhere
 OpenSSH (v6)               ALLOW       Anywhere (v6)
 ```

With the firewall enabled, the server is now reasonably secured.

[back to top](#top)

#### Update the system <a name="ud"></a>

Now is a good time to update all of the preinstalled packages on the server.

```shell
$ sudo apt-get update && sudo apt-get upgrade -y

back to top

Install UniFi

Install the unifi package from repository

  1. Add the Unifi repository.

    $ echo 'deb http://www.ubnt.com/downloads/unifi/debian stable ubiquiti' | sudo tee /etc/apt/sources.list.d/100-ubnt-unifi.list
  2. Install the GPG key for the repository.

    $ sudo apt-key adv --keyserver keyserver.ubuntu.com --recv 06E85760C0A52C50
  3. Install the unifi package.

    $ sudo apt-get update && sudo apt-get install unifi -y
  4. Verify the unifi package is installed and running.

    $ sudo service unifi status

back to top

Create a unifi profile for ufw firewall

  1. Create a configuration file for the profile.

    $ sudo nano /etc/ufw/applications.d/unifi
  2. Paste the following contents into the nano text editor.

    [Unifi]
    title=UniFi Controller
    description=The UniFi Controller software is used to provision, monitor, and administrate Ubiquiti devices.
    ports=8080,8443,8843,8880/tcp|3478/udp
    
  3. To save the file press Ctrl+x, then type Y and press Enter.

    If everything was done correctly, ufw will now recognize the Unifi app.

    $ sudo ufw app list
    Available applications:
      OpenSSH
      Unifi
  4. Enable the unifi app.

    $ sudo ufw allow Unifi
    $ sudo ufw status
    Status: active
     
    To                         Action      From
    --                         ------      ----
    OpenSSH                    ALLOW       Anywhere
    Unifi                      ALLOW       Anywhere
    OpenSSH (v6)               ALLOW       Anywhere (v6)
    Unifi (v6)                 ALLOW       Anywhere (v6)

back to top

Run the UniFi Setup Wizard

The server is ready for all intents and purposes. Visit the following URL in your browser to continue setting up UniFi with supplied wizard.

https://<IP-ADDRESS>:8443

back to top

Security best practices (Recommended)

Disable root login by SSH

After you create a normal user, you can disable SSH logins for the root account. This greatly improves security by eliminating the most commonly attacked account from remote logins.

  1. Log in to the server as root using SSH.

    ssh root@<IP_ADDRESS>
  2. Open the /etc/ssh/sshd_config file in your preferred text editor (nano, vi, etc.).

    $ nano /etc/ssh/sshd_config
  3. Locate the following line:

    PermitRootLogin yes
    
  4. Modify the line as follows:

    PermitRootLogin no
    
  5. Add the following line. Replace username with the name of the user you created earlier.

    AllowUsers username
    

    This step is crucial. If you do not add the user to the list of allowed SSH users, you will be unable to log in to your server!

  6. Save the changes to the /etc/ssh/sshd_config file, and then exit the text editor.

  7. Restart the SSH service using the appropriate command for your Linux distribution:

    $ service ssh restart
  8. While still logged in as root, try to log in as the new user using SSH in a new terminal window. You should be able to log in. If the login fails, check your settings. Do not exit your open root session until you are able to log in as the normal user in another window.

back to top

Set up passwordless SSH login

Windows users using PuTTY should follow the instructions found here.

  1. Create the RSA key pair (on the local computer)

    $ ssh-keygen -t rsa
    Enter file in which to save the key (/username/.ssh/id_rsa): <Enter>
    Enter passphrase (empty for no passphrase): 
  2. Copy the new public key to the server using SSH. Be sure to change username and IP_ADDRESS to match your server.

    $ cat ~/.ssh/id_rsa.pub | ssh username@IP_ADDRESS "mkdir -p ~/.ssh && cat >> ~/.ssh/authorized_keys"

Disable password authentication on the server

  1. Log in to your server with your SSH key for the first time. From the terminal, this done the exact same way with the exception that you will not be prompted for a password.

    ssh username@<IP-ADDRESS>
  2. Edit the /etc/ssh/shsd_config file.

    $ sudo nano /etc/ssh/sshd_config
  3. Change the PasswordAuthentication directive value to no.

    PasswordAuthentication no
    
  4. Restart SSH.

    $ sudo service ssh restart

Install Fail2Ban

Leaving the SSH port open to the public, as we've done, presents a potential risk. Anyone can attempt a connection to your droplet from anywhere. While using ufw to lock the SSH port down to connections from whitelisted IP addresses is a great boost to security, it comes at the cost of usability since you also won't be able to access your droplet except from whitelisted IP addresses. If you ever need to access your UniFi controller from the field, that would present a problem for you. So rather than locking down the port itself, a service such as fail2ban can help to protect your droplet. The Fail2Ban service monitors access logs for suspicious activity and proactively sets firewall rules based upon limitations that you provide. As an example, Fail2Ban can implement flood control that bans an specific IP address after a specified number of invalid login attempts. This is especially useful for mitigating brute force attacks.

  1. Install Fail2Ban.

    $ sudo apt-get update
    $ sudo apt-get install fail2ban

On Ubuntu, Fail2Ban's defaults will protect SSH by blocking IP addresses if there are three failed login attempts within 10 minutes. These options are configurable.

back to top

Force a password when using sudo

Forcing sudo to require a password is a form of two-factor authentication. In the event that your private SSH key is ever compromised, it will limit an attacker's ability to damage your system by preventing the use of any commands that require sudo by prompting for a password every time. By default, this is not the case and normal users with sudo permission can simply execute commands as root without any additional authentication.

  1. Edit /etc/sudoers.d/90-cloud-init-users.

    $ sudo nano /etc/sudoers.d/90-cloud-init-users
  2. Edit the existing line for root and add one for the the new user. Make sure that NOPASSWD is changed to PASSWD.

    # User rules for root
    root ALL=(ALL) PASSWD:ALL
    ubnt ALL=(ALL) PASSWD:ALL
  3. Save the changes and exit Nano.

back to top


Additional Reading

About

How to host Ubiquiti UniFi on a DigitalOcean droplet

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published