SSH is one of the available tools allowing you to remotely control a server on a hosting. We’ll tell you what kind of a protocol it is and how to use it.
SSH is a secure network data transfer protocol used to control devices remotely.
It allows you to send various commands to another computer or server. For example, you can upload or delete files, launch applications, etc.
All data that gets transferred from you to the remote device is securely encrypted. SSH creates a secure connection and makes it impossible for malicious users to steal valuable information.
SSH makes it possible to remotely control servers on a hosting. It allows you to connect with the servers and perform all the necessary actions from any device.
You can do the following things using SSH:
To connect to a remote device successfully, you will need two software programs: an SSH server and an SSH client.
The SSH server is installed on the device that you will connect with. If it is necessary to manage remote hosting, then it’s up to the provider to decide which SSH server to use. This is usually a free OpenSSH program.
The SSH client is a software installed on the user’s computer. It enables connection and transfers information. Linux and macOS computers use OpenSSH and often feature pre-installed software of this kind. You can connect to a remote device and control it using a special terminal.
Windows computers have no pre-installed SSH client. In this case, you need to download a third-party application.
Here are some popular SSH clients for this OS:
PuTTY is the most commonly used client because it’s free and easy to manage. We recommend that you install it. All the examples given below imply using this software.
Before starting to transfer information, it is necessary to establish a secure connection between the sender and the recipient. This process involves three steps:
1. Establishing a TCP connection. TCP is a data transfer protocol. It belongs to the transport layer of the OSI model. It allows you to deliver information from one device to another. It ensures secure package transportation and guarantees package integrity protection.
Before you start transferring data, a secure connection must be established. This happens as follows:
2. Opening a secure channel. The sender and the recipient must agree on how they will encrypt and compress the data.
3. User authentication. After a secure channel has been opened, the server must check who has connected to it and whether this is an authorized user.
There are two ways to identify a user:
We’ll discuss it in detail a bit later.
SSH has established a secure connection. Now the client can transfer data.
We’ve described what SSH is and how it works. Now let’s see how to apply it in real-life situations.
To connect to the server, you’ll need to provide the following dаta:
On our Hosting, this information is available in the control panel.
If you need to connect to VDS, head to Virtual private servers and click on the Instructions button:
To find the information about the dedicated server, head to Dedicated servers > Instructions:
You’ll find all the necessary data in the first section called Server Information:
If your computer runs on Linux or macOS, head to the terminal.
You’ll see a window. Type:
ssh username@185.211.200.111
Replace username with your login and 185.211.200.111 with the IP address of the server that you need to connect to.
Press Enter.
If your device runs on Windows, you’ll need to install the client first. In the examples below, we’ll be using PuTTY.
Launch the program, click on Session, and enter the IP of the remote device into the Host Name (or IP Address) field:
Click Open.
Once you are connected, a console window will open.
As mentioned above, if it’s the first time that the client is connecting to the server, it will send you a fingerprint:
The authenticity of host ’185.211.200.111 (185.211.200.111)’ can’t be established.
ECDSA key fingerprint is ed:fe:f5:d7:98:fe:85:64:e1:44:11:af:e7:8d:33:de.
Are you sure you want to continue connecting (yes/no)?
Type yes.
After that, a password request will appear on the screen. Once you’ve entered the password, the connection will be established, and you will be able to control the device remotely.
Using an SSH key is a good alternative to entering your password every time when connecting to the server.
You will need two keys: a public and a private one. The private key is held in secret and cannot be shared with anyone else in any situation. The public key can be shared with other people who you are going to exchange encrypted data with.
You’ll need both keys because SSH uses an asymmetric encryption method. The information you transmit is encrypted using the first key, and it can be decrypted only by the other person owning the second key.
1. Head to the terminal and enter the following string:
ssh-keygen -t rsa
2. Specify where you would like to save the keys:
Enter file in which to save the key (/home/user/.ssh/id_rsa):
Specify the directory path. Or press Enter to choose the default location /.ssh/id_rsa.
3. The following message on the screen will ask you to create a custom passphrase to increase security:
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
If you don’t want to enter it every time when connecting to the server, press Enter.
4. The keys are ready:
Your identification has been saved in /home/user/.ssh/id_rsa.
Your public key has been saved in /home/user/.ssh/id_rsa.pub.
The key fingerprint is:
ed:fe:f5:d7:98:fe:85:64:e1:44:11:af:e7:8d:33:de user@localhost
The key’s randomart image is:
+-+
| |
| |
| .. * O o B .|
| . . + + * S |
| == B o + . .|
| .. B . = . . |
| .. B o = + ..|
| . E.o * . o .|
| oooS +. |
+--+
The private key is stored in ~/.ssh/id_rsa, and the public key is stored in ~/.ssh/id_rsa.pub. This is where they will be saved if you do not specify any other directory in the second step. If you chose another path, the message will contain other data.
You will need to upload the public key to the server. Below we’ll tell you how to do this.
You’ll need to install the PuTTYgen app.
1. Launch the app. Select the RSA key type. Make sure that its length makes up 2048 bits.
2. Click on Generate and move the cursor randomly. The program uses cursor movement to generate random data.
The public key will appear at the top of the window.
It is advisable to copy it right away in order to upload it to the server later.
3. You can save the keys in any directory on your device by clicking on the Save public key and Save private key buttons.
The VDS management key can be added using the VMmanager panel. You can enter it from your personal account. Open the Products/Services tab, head to the Virtual private servers section, select the required server, and click To panel.
You can find the panel access data either in the letter that we sent you after server activation or in the Instructions section.
Once you’ve entered the VMmanager panel, go to the SSH keys tab and click Add.
You’ll need to enter the key name (it can be any name of your choice) and paste the public SSH key.
Click OK. Done! The SSH key will be automatically added to all future virtual machines. Yet you will have to add the key manually to each VDS that you’ve already purchased.
Later on, if you add a key to VDS and then reinstall its operating system, the key will remain valid on the new OS.
The SSH key can be added to dedicated servers using the DCImanager panel. You can enter this panel from your personal account. Open the Products/Services tab, head to Dedicated servers, click on a specific server and click To panel.
Go to the SSH keys tab and click Add.
Enter a name and paste the public SSH key.
Click OK. Just like it is with VDS, this key will be automatically added to all new dedicated servers.
You have connected to a remote device and successfully completed the authentication process. Now you can control the machine from your computer using various commands.
There are plenty of them. All these commands work the same way with all the existing SSH clients.
We’ll enlist several most common commands.
1. ls—displays the names of all files and directories on the remote device. It is used in combination with the following set of commands:
2. cd—navigating between directories. Enter the command, specify the directory path, and this directory will be opened.
3. sudo—allows you to run any commands as an admin.
4. mv—renames files or moves them into certain directories. For example, we’ve entered mv name1 name2. If name2 is an existing directory, then the name1 file will be moved there. If the name2 directory does not exist, the name1 file will be renamed to name2.
5. rm—a command for deleting files and directories. To delete a file or a directory, enter its name after this command.
6. cp—is used when you need to copy a file or a directory. If you enter cp 1file 2file, then 1file will be copied to 2file. If you need to copy one directory into another, type -r after cp. This is what it is going to look like:
cp -r 1dir 2dir
If the 2dir directory does not exist, it will be created.
7. chmod—changing file access permissions. First comes the command, then the access rights, and the user that is given or deprived of these rights. Last comes the file path.
There are three rights types:
And there are three user types:
The ‘+’ sign indicates permission, the ‘-’ sign indicates a ban.
For example, we can type:
chmod о+r filename
This means that we have allowed everyone to read the filename file except for its owner and the file group.
8. scp—transferring files from your device to the server. After the command, you need to specify the local file name (or directory path), username, server IP address, and address of the directory where you want to place the file.
This is what it is going to look like:
scp example.txt username@111.222.333.444:/path/to/new/location/
These are just a few of the basic SSH commands. Knowing them is enough to gain a basic understanding of how to work with the protocol. Yet this list won’t be enough to fully use SSH in practice.
Host your projects on our virtual and dedicated servers and manage them from anywhere in the world.