---
title: "How to secure a Dedicated Server"
description: "Apply essential security measures to your dedicated server: SSH hardening, firewall configuration, and service monitoring."
url: https://docs.ovhcloud.com/en/guides/bare-metal-cloud/dedicated-servers/securing-a-dedicated-server
lang: en
lastUpdated: 2024-02-20
---
# How to secure a Dedicated Server

## Objective

When you order your dedicated server, you can choose a distribution or operating system to pre-install. The server is therefore ready to use after delivery but it will be up to you as the administrator to implement measures which ensure the security and stability of your system.

**This guide provides some general tips for securing a GNU/Linux-based server.**

:::warning
OVHcloud is providing you with services for which you are responsible, with regard to their configuration and security. Since we have no administrative access to your devices, it is your responsibility to manage the software and to ensure they function correctly.

This guide is designed to help you with the most common tasks. Nevertheless, we recommend that you contact a [specialist service provider](https://partner.ovhcloud.com/en-gb/directory/) if you have difficulties or doubts concerning the administration, usage or implementation of security measures on a server.
:::

## Requirements

- A [dedicated server](https://www.ovhcloud.com/en-gb/bare-metal/) in your OVHcloud account
- Administrative access (sudo) via SSH to your server

## Instructions

:::info
Bear in mind that this is a general guide based on an Ubuntu server OS. Some commands need to be adapted to the distribution or operating system you are using and some tips will advise you to use third-party tools. Please refer to the official documentation for these applications if you require assistance.

If you are configuring your first OVHcloud dedicated server, we recommend to consult our guide on [getting started with a dedicated server](/en/guides/bare-metal-cloud/dedicated-servers/getting-started-with-dedicated-server.md) before continuing.
:::

The following examples presume that you are logged in as a [user with elevated permissions](/en/guides/bare-metal-cloud/dedicated-servers/changing-root-password-linux-ds.md).

### Updating your system

Developers of distributions and operating systems offer frequent software package updates, very often for security reasons. Ensuring that your distribution or operating system is updated is a key point for securing your server.

This update will take place in two steps:

- Updating the package list

```bash
sudo apt update
```

- Updating the actual packages

```bash
sudo apt upgrade
```

This operation needs to be performed regularly to keep a system up-to-date.

### Changing the default SSH listening port

One of the first things to do on your server is configuring the SSH service's listening port. It is set to **port 22** by default, therefore server hacking attempts by robots will target this port. Modifying this setting by using a different port is a simple measure to harden your server against automated attacks.

To do this, modify the service configuration file with a text editor of your choice (`nano` used in this example):

```bash
sudo nano /etc/ssh/sshd_config
```

Find the following or similar lines:

```console
#Port 22
#AddressFamily any
#ListenAddress 0.0.0.0
```

Replace the number **22**
 with the port number of your choice. **Please do not enter a port number already used on your system**
. To be safe, use a number between 49152 and 65535.
Save and exit the configuration file.
If the line is "commented out" (i.e. if it is preceded by a "#") as shown in the example above, make sure to remove the "#" before saving the file so that the change takes effect. Example:

```console
Port 49152
#AddressFamily any
#ListenAddress 0.0.0.0
```

Restart the service:

```bash
sudo systemctl restart sshd
```

This should be sufficient to apply the changes. Alternatively, reboot the server (`sudo reboot`).

**For Ubuntu 23.04 and later**

For the latest Ubuntu versions, the SSH configuration is now managed in the `ssh.socket` file.

To update the SSH port, edit the `Listenstream` line in the configuration file with a text editor of your choice (`nano` used in this example):

```bash
sudo nano /lib/systemd/system/ssh.socket
```

```console
[Socket]
ListenStream=49152
Accept=no
```

Save your changes and run the following commands:

```bash
sudo systemctl daemon-reload
```

```bash
sudo systemctl restart ssh.service
```

If you have enabled your operating system's firewall, make sure you allow the new port in your firewall rules.

Remember that you will have to indicate the new port any time you [establish an SSH connection to your server](/en/guides/bare-metal-cloud/dedicated-servers/ssh-introduction.md):

```bash
ssh username@IPv4_server -p NewPortNumber
```

Example:

```bash
ssh ubuntu@203.0.113.100 -p 49152
```

:::warning
Please note that changing the default port for SSH or any other protocol is a potential risk. You may find that some services cannot be configured to use with non-standard ports and will not work if the default port is changed.
:::

### Creating a user with restricted rights

In general, tasks that do not require root privileges should be performed via a standard user. Please refer to the information in [this guide](/en/guides/bare-metal-cloud/dedicated-servers/changing-root-password-linux-ds.md) for details.

### Configuring the internal firewall (iptables)

Common GNU/Linux distributions come with a firewall service named iptables. By default, this service does not have any active rules. You can verify this by typing the following command:

```bash
iptables -L
```

You can learn more about iptables in our [Firewall guide](/en/guides/bare-metal-cloud/dedicated-servers/firewall-linux-iptable.md).

It is recommended that you create and adjust firewall rules according to your needs. For more detailed information on the variety of manipulations that are possible, please refer to the relevant section in the official documentation of the distribution used.

### Installing Fail2ban

Fail2ban is an intrusion prevention software framework designed to block IP addresses from which bots or attackers try to penetrate your system. This software package is recommended, even essential in some cases, to guard your server against "Brute Force" or "Denial of Service" attacks.

To install the software package, use the following command:

```bash
sudo apt install fail2ban
```

You can customise the Fail2ban configuration files to protect services that are exposed to the public Internet from repeated login attempts.

As recommended by Fail2ban, create a local configuration file for your services by copying the "jail" file:

```bash
sudo cp /etc/fail2ban/jail.conf /etc/fail2ban/jail.local
```

Then open the file with a text editor:

```bash
sudo nano /etc/fail2ban/jail.local
```

Be certain to read the information at the top of the file, especially the comments under `[DEFAULT]`.

The `[DEFAULT]` settings are global and will therefore be applied to all services that are set to `enabled` in this file.

It is important to know that the global settings will be taken into account only if there are no differing values set in the services sections (`JAILS`) further below in the file.

For example, consider these lines under `[DEFAULT]`:

```console
bantime = 10m
maxretry = 5
enabled = false
```

This means that an IP address from which a host tries to connect will be blocked for ten minutes after the fifth unsuccessful login attempt.

However, all settings specified by `[DEFAULT]`
 and in subsequent sections stay disabled unless the line `enabled = true`
 is added for a service (listed below `# JAILS`
).
As an example of usage, having the following lines in the section `[sshd]` will activate restrictions only for the OpenSSH service:

```console
[sshd]
enabled = true
port = ssh
filter = sshd
maxretry = 3
findtime = 5m
bantime  = 30m
```

In this example, any SSH login attempt that fails three times within five minutes will result in an IP ban period of 30 minutes.

You can replace "ssh" with the actual port number in case you have changed it.

The best practice approach is to enable Fail2ban only for the services that are actually running on the server. Each customised setting added under `# JAILS` will then be prioritised over the defaults.

Once you have completed your changes, save the file and close the editor.

Restart the service to make sure it runs with the customisations applied:

```bash
sudo service fail2ban restart
```

Fail2ban has many settings and filters for customisation as well as preset options, for example when you want to add a layer of protection to an Nginx web server.

For any additional information and recommendations concerning Fail2ban, please refer to the [official documentation](https://www.fail2ban.org/wiki/index.php/Main_Page) of this tool.

### Configuring the OVHcloud Network Firewall

OVHcloud solutions include the option of enabling a firewall at the entry point to the infrastructure, called the Network Firewall. Configuring it correctly allows connections to be blocked before they even arrive on your server.

Please refer to the [Network Firewall guide](/en/guides/bare-metal-cloud/dedicated-servers/firewall-network.md) if you would like to activate it.

### Backing up your system and your data

The concept of security is not limited to protecting a system against attacks.

Securing your data is a key element, which is why OVHcloud offers you 500GB of free backup storage with your server. You can activate this backup storage in your Control Panel, and access it using the following protocols:

- FTP
- FTPS
- NFS
- CIFS

You will need a third-party backup solution to replicate your data and transfer it to your backup storage.

For more information on our backup storage solutions, please see our [backup storage guide](/en/guides/bare-metal-cloud/dedicated-servers/services-backup-storage.md).

## Go further

[Configuring the firewall on Windows](/en/guides/bare-metal-cloud/dedicated-servers/activate-port-firewall-soft-win.md)

[Network Firewall guide](/en/guides/bare-metal-cloud/dedicated-servers/firewall-network.md)

[How to set up a web server (LAMP) on Debian or Ubuntu](/en/guides/bare-metal-cloud/dedicated-servers/installing-lamp-debian9-ubuntu18.md)

[Securing a Dedicated Server with a Memcached service](/en/guides/bare-metal-cloud/dedicated-servers/memcache-secure.md)

If you need training or technical assistance to implement our solutions, contact your sales representative or click on [this link](https://www.ovhcloud.com/en-gb/professional-services/) to get a quote and ask our Professional Services experts for a custom analysis of your project.

Join our [community of users](https://community.ovhcloud.com/).
