Secure Ubuntu Server 24.04
How to securely setup an Ubuntu Server 24.04 in a VPS.
We’re going to go about a practical way of securing your Ubuntu server after provisioning it. If you have to provision your ubuntu server, please see the guide below.
After provisioning the server we will need to secure the server. The first step is to ensure you have SSH access via SSH Keys only and you are not allowing login via password. This will help prevent brute forcing.
Follow the guide below to generate your SSH keys if you have not already. If you already have generated them, please follow the guide to copy your public SSH key to the sever.
Now that you’ve logged in using your SSH keys, you will need to set up the firewall to prevent anyone else from accessing it. YOu’re going to need to know your public IP addresses to create the firewall rules needed. Please follow the guide below to discover your public IP address.
We’re going to be using the Uncomplicated FireWall (UFW) to configure the firewall on the server. If you’d like to understand in greater detail how to configure the firewall, you can read this article below.
Grab your public IP addresses
curl -4 ifconfig.me
curl -6 ifconfig.me
Then figure out the outbound interface of your server. It can be eth# ens# eno# and others.
ip route list | grep default
The output of this command will be similar to this:
default via 1.1.1.1 dev ens6 proto dhcp src 1.1.1.2 metric 100
What we want is the name directly after dev
. In this case it was ens6
.
Now we can craft our commands to secure the firewall.
sudo ufw limit in on ens6 from [IPv4] port 22 proto tcp
sudo ufw limit in on ens6 from [IPv6 Network] port 22 proto tcp
sudo ufw enable
yes
Now your firewall will be enabled and it will only allow SSH traffic from you to the public interface. It will be rate limited so even a device on your network is not able to brute force it and it will require an SSH key.
Recap
- We provisioned an Ubuntu server with
- a network firewall only allowing traffic from our home.
- security updates applied during the install process
- an SSH key installed and password authentication disallowed.
- We made a software firewall rule on the UFW of the Ubuntu server to make sure only you can access the server. (This prevents local brute forcing from inside the VPS hosting company.)