Ubuntu

Step 4 – Generate SSH Key Pairs

macOS

Open your Terminal and generate the keys using the following commands:

It will ask you for a passphrase to secure your key with. You may opt leave it blank, but it is highly advisable to protect your key with a passphrase to prevent others from using it.

This command will create a key pair – a private key “NonRootKey” and a public key “NonRootKey.pub“. You should keep your private key offline and away from anyone who should not have access to your box.

On the other hand, the public key needs to be copied to your server. Do this manually by copying the contents of NonRootKey.pub to your server.

The output would be similar to the gibberish block of text below. Manually copy it to your clipboard.

Skip the Windows guide below and proceed to the “Associate Public Key with the Server” section.

 

Windows

If you are using a Windows, and installed the full PuTTY package, most probably you already have the tool called PuTTYgen. It is a straight-forward tool for key generation.

Just open the tool and you will see something like this:

PuTTygen

At the bottom, you will see the option on how much size your generated key would be. By default, it is set to 2048 bits. I personally want to set it to 4096. After setting the key size, click the Generate button.

keys-generated

Before saving your key, it is recommended to set the following the Key comment and the Key passphrase.

Save the private key.

As for the public key, go back to your PuTTYgen window and copy the text below the section that says “Public key for pasting into OpenSSH authorized_keys file:” to your clipboard.

Fire up PuTTY and connect to your Ubuntu server with your non-root user.

 

Associate Public Key with the Server

Once you are logged in to your server’s terminal, we need to create and paste the public key to the user’s ~/.ssh/authorized_keys.

Paste the public key on this new file and save it afterwards.

 

Lastly, we need to restrict the permission of this file so that only the user would be able to read and write into it.

 

Step 5 – Disable Root Login and Password Authentication

Root user has the privilege to access and execute every command available in your Ubuntu server. Anyone who gain unauthorized access to the root user would be able to take over your server completely and do whatever they want. One of the most important step in hardening your server is to disable root remote login on your system. Though there are several ways to gain escalated-privilege access to a box, ticking this off the list would add both a layer of security and a level of difficulty for possible attackers trying to pawn your box.

Here’s how you do it: vim /etc/ssh/sshd_config

SSHD_PORT is the same one you set in Step 1.

Once you have saved the changes, restart the SSH daemon and CSF.

At this point, you already have a secured server which you can use in whatever way you want. You may host your own WordPress blog using Nginx webserver or create a personal VPN tunnel provider. Whatever you would like to do with it, you should start by putting some layers of security in place.

I hope this guide has been able to walk you through the initial setup of your Ubuntu 16.04 LTS server.

Leave a Reply