NetSarang xShell – Powerful SSH Client

image

Still using Putty + WinSCP / FileZilla?

Then we recommend paying attention to such software as xShell.

  • It supports not only SSH protocol but others as well. For example telnet or rlogin.
  • You can connect to multiple servers at the same time (tab mechanism).
  • There is no need to enter data every time, you can remember them.
  • Starting with the 6th version, a Russian interface appeared, it understands all Russian encodings, including UTF-8.
  • Supports both password connection and key connection.

  • Moreover, now you don’t need to run WinSCP or FileZilla separately to manage files via ftp / sftp.
  • The xShell developers took your needs into account and made xFtp as well, which supports regular FTP and SFTP.
  • And the most important thing is that xFtp can be launched directly from an active ssh session and it will immediately connect to this particular server in file transfer mode (using the sFtp protocol). But you can open xFtp yourself and connect to any of the servers.

Also included is a public / private key generator and a manager for their management.

image

Completely free for personal non-commercial use or education.

www.netsarang.com/ru/free-for-home-school

Fill in the fields, be sure to email, to which you have access, a download link will be sent there.

image

Download, install both applications. We launch.

After starting, we see a window with a list of saved sessions, while it is empty. Press “new”

image

We fill in the data for the connection, port / host / ip address, as well as the desired session name.
Next, go to authentication and fill in the username and password.

image

Next, Ok and connect to the server.

For xFTP, everything is the same. The only thing that needs to be selected is the protocol, by default it will be sFTP, you can select regular FTP.

The most convenient thing is that the selected text is automatically copied to the clipboard
(Tools – options – keyboard and mouse – copy the marked text to the clipboard).

image

You can connect not only with a password, but also using a key, which is much safer and more convenient.

It is necessary to generate our key, to be more precise a pair – public / private keys.

Launch Xagent (installed in the kit).

We see the list of keys while it is empty. Click Manage Keys, then Generate
Type RSA
Length 4096 bits minimum.

image

Click Next, wait. Then again Next

We name the key as it is convenient for us, if you wish, you can protect the key by setting an additional password (it will be requested when connecting or importing the key on another device)

image

Further Next and we see our own PUBLIC key. We use it to connect to the server. One key can be used on many servers, which is convenient.

This completes the generation, but not all.
You need to add a key on the server.
Connect to the server via ssh and go to /root/.ssh

root@alexhost# cd /root/.ssh

to which in 90% of cases we get an error -bash: cd: /root/.ssh: No such file or directory
this is normal, this folder is missing if keys have not been generated on the server before.

It is necessary to generate the key of the server itself in the same way.

root@alexhost# ssh-keygen -t rsa -b 4096

We will be offered the path where to save the key file.
We agree to the default /root/.ssh/id_rsa by pressing Enter.
Then the password for the key file and confirmation, or leave blank and Enter.

Go to /root/.ssh again:

root@alexhost# cd /root/.ssh

The authorized_keys file needs to be created:

root@alexhost# nano authorized_keys

We insert into it our key in text form obtained above:

image

Save, exit.
Ctrl + O
Ctrl + X

Go to xShell, call the list of saved sessions (Alt + O)

image

Find our session, click properties, go to authentication.

In the method field, select the public key.
In the custom key field, select our previously created key, save and connect.

image

The client uses a PRIVATE key, PUBLIC is registered on the server.

The private key can be transferred to your other PC if you want to connect from it.

In Xagent – manage keys, select the key – Export, save.

On another Xagent pc – manage keys – Import, select, add. If the key was password protected, the password will be requested at this point.

The key can be assigned to any user, not only root.

Path standard / user_home_folder/.ssh/authorized_keys
For the user alexhost, for example, by default it will be /home/alexhost/.ssh/authorized_keys

image

Similar Posts

Leave a Reply

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