April 23, 2024
ssh

Secure Shell (SSH)

What is SSH?

A secure shell is used to remotely access a server from a client over an encrypted connection. OpenSSH is used as an alternative to Telnet connections that achieve remote shell access but are unencrypted. The OpenSSH client is installed on most GNU/Linux distributions by default and is used to connect to a server. These examples show us how to use the SSH suite to accept SSH connections and connecting to another host.

Connecting to a remote server

To connect to a server we must use SSH on the client as follows,

# ssh -p port user@server-address

Where,
 port - The listening ssh port of the server (default port 22).
 user - Must be an existing user on the server with SSH privileges.
 server address - The IP/Domain of the server.

For a real-world example, let’s pretend that you’re making a website. The company you chose to host your site tells you that the server is located at web-servers.com on a custom port of 2020 and your account name usr1 has been chosen to create a user on the server with SSH privileges. In this case, the SSH command used would be as such

# ssh -p 2020 usr1@web-servers.com

If account name on the remote system is the same as the one one the local client you may leave the user name off. So if you are usr1 on both systems then you my simply use web-servers.com instead of usr1@web-servers.com.

When a server you want to connect to is not directly accessible to you, you can try using ProxyJump switch to connect to it through another server which is accessible to you and can connect to the desired server.

# ssh -J usr1@10.0.0.1:2020 usr2@10.0.0.2 -p 2222

This will let you connect to the server 10.0.0.2 (running ssh on port 2222) through server at 10.0.0.1 (running ssh on port 2020). You will need to have accounts on both servers of course. Also note that the -J switch is introduced in OpenSSH version 7.3.

Installing OpenSSH suite

Both connecting to a remove SSH server and accepting SSH connections require installation of openssh

Debian:

# apt-get install openssh

Arch Linux:

# pacman -S openssh

Yum:

yum install openssh

Configuring an SSH server to accept connections

First, we must edit the SSH daemon config file. Though under different Linux distributions this may be located in different directories, usually it is stored under /etc/ssh/sshd_config

Use your text editor to change the values set in this file, all lines starting with # are commented out and must have this character removed to take any effect. A list of recommendations follows as such.

Port (chose a number between 0 - 65535, normaly greater than four digits) PasswordAuthentication yes AllowUsers user1 user2 ...etc 

Note that it is preferable to disable password logins all together and use SSH Keys for improved security as explained in this document.

Passwordless connection (using a key pair)

First of all you’ll need to have a key pair. If you don’t have one yet, take a look at the ‘Generate public and private key topic’.

Your key pair is composed by a private key (id_rsa) and a public key (id_rsa.pub). All you need to do is to copy the public key to the remote host and add its contents to the ~/.ssh/authorized_keys file.

One simple way to do that is:

 ssh <user>@<ssh-user> 'cat >> ~/.ssh/authorized_keys' < id_rsa.pub 

Once the public key is properly placed in your user’s home directory, you just need to login using the respective private key:

 ssh <user>@<ssh-user> -i id_rsa 

Generate public and private key

To generate keys for SSH client:

 ssh-keygen [-t rsa | rsa1 | dsa ] [-C ] [-b bits] 

For example:

 ssh-keygen -t rsa -b 4096 - C myemail@email.com 

The default location is ~/.ssh/id_rsa for private and ~/.ssh/id_rsa.pub for public key.

Disable ssh service

This will disable the SSH server-side service, as if needed this will insure that clients cannot connect via ssh

Ubuntu

 sudo service ssh stop 
 sudo systemctl disable sshd.service 

Debian

sudo /etc/init.d/ssh stop 
sudo systemctl disable sshd.service 

Arch Linux

 sudo killall sshd 
 sudo systemctl disable sshd.service 

Vedant Kumar

Currently I'm working as an Implementation Engineer, Started my career as an System Administrator - Linux. Additionally loves to explore new technologies and research about new open-source software that ease the development cycle.

View all posts by Vedant Kumar →

Leave a Reply

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


The reCAPTCHA verification period has expired. Please reload the page.

close

Ad Blocker Detected!

VEDANT EXPLAINS
We've noticed that you are using an ad blocker. Advertising helps fund our server cost and keep it truly independent. It helps to build our content creator team. So please disable your ad blocker, and help us to keep providing you with free- great content - for free. Thank you for your support.

Refresh