HugeServer Knowledgebase

How to secure SSH on CentOS 6

SSH (Secure Shell) is an encrypted protocol that is way more secure than Plain text based protocols like Telnet, however, it could be vulnerable if not configured properly.

We are going to provide 4 simple tips to get a more secure SSH protocol on your server.

We are assuming that you have root permission, otherwise, you may start commands with “sudo”.

Changing SSH Port

To change the Standard listening Port, you have to change the SSH Server configurations with the command below. We are using nano editor in this tutorial, you may use your own editor if you wish.

 nano /etc/ssh/sshd_config

Then change the port number from 22 to your preferable port (e.g. 2022) And press Ctrl +O and Ctrl +X in order to save and exit.

Change SSH port on CentOS 6

If you are using iptables firewall you need to make sure that the new port is allowed.  In order to do it use the command below.

Replace 2022 with your new SSH port.

iptables -A INPUT -p tcp --dport 2022 -j ACCEPT
iptables-save
service ssh restart

Disable root logins

You’ll be adding a layer of security to your SSH server if you disable root user logins. It would be more secure to brute force attacks or in case your password is stolen.

First, you need to create a non-root user with the following instructions:

adduser username
passwd username

Then open the ssh configuration file with your editor. (we are using nano)

 nano /etc/ssh/sshd_config

Then change the Highlighted line from “PermitRootLogin yes” to “PermitRootLogin no”

CentOS 6 SSH - Don't Permit Root Login

Crtl+O         Crtl+X

After all, we would need to restart SSH service.

service ssh restart

Create a key-based authentication SSH connection

If your Server is accessible over the Internet you can use public key authentication instead of a password, because SSH key authentication with password phrase is way more secure than password-only authentication, while a password can eventually be cracked with a Brute-force attack or caught by keyloggers.

Depending on your client OS you should follow the instructions to create a pair of authentication keys.

If you are using Windows:

You have to download the Putty key generator (a.k.a Puttygen) and Here is the recommended official download link:

http://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html

  • Open PuTTYgen utility.
  • For Type of key to generate, select SSH-2 RSA
  • In the Number of bits in a generated key field is refer to how complicated you want your key to be, you can change the value between 2048 to 4096 for make more complicated key.
  • After selecting your settings click on Generate to start Process.
  • Move your mouse pointer around in the blank area of the Key section, below the progress bar (to generate some randomness) until the progress bar is full.
  • A private and public key pair has now been generated.
  • (Optional): it’s also recommended to set a passphrase for your key.
  • Save Private and Public keys

Putty SSH Key Generator

CAUTION: be careful with choosing the path you saving the keys, if you lose them and username/password logins are disabled on your server, you might lose your access to your server.

  • Then open your Putty, expand the SSH category and click on “Auth”
  • In “private key file for authentication” browse your Private key.
  • Finally, you should copy the Public key file in your server in this path: ~/.ssh/authorized_keys

If you are using Linux

To generate an RSA key pair:

 ssh-keygen -t rsa
  • Accept the default file location of /.ssh/id_rsa. Entering a passphrase is recommended
  • The public key is written to ~/.ssh/id_rsa.pub The private key is written to ~/.ssh/id_rsa
  • Copy the contents of ~/.ssh/id_rsa.pub from client system into the file ~/.ssh/authorized_keys on the Server.
  • You may use “cat” command on the client side to view the file and use an editor like “nano” on the server side to modify or create the authorized_keys file.
  • After all, it’s recommended to disable the Password authentication as well.
nano /etc/ssh/sshd_config

Uncomment these lines and change them refer to the line below:

PasswordAuthentication no
PubkeyAuthentication yes

Disable SSH Protocol 1

SSH has two versions that may use, SSH v1 is older and less secure than protocol SSHv2 2, it’s recommended to be disabled unless you specifically need it.

nano /etc/ssh/sshd_config

Uncomment the line 

Protocol 2,1

 and change it to:

Protocol 2

Disable SSH protocol 1

Finally, we are going to restart the SSH service and we are done!

service ssh restart

Was this tutorial helpful?

Thank you for your vote.Thank you for your vote.

Similar Posts

Leave a Reply

Your email address will not be published. Required fields are marked *

*