Open SSH  is a connectivity tool for secure remote access to your seedbox. It is based on SSH protocol. It encrypts your traffic to eliminate eavesdropping, connection hijacking and other cyber security attacks.

How to access your seedbox using Open SSH on the Windows system.
For accessing your seedbox using OpenSSH you first need to install OpenSSH on your seedbox.Let’s look into the installation of Openssh on evoseedbox.

1. Login to your client area and search for OpenSSH in the apps section.

Openssh Tutorial

Openssh Tutorial

2. Click on the install button and once the installation is complete open the app from the installed app section as shown below.

Openssh Tutorial

You will be able to see a pop-up where your host id and port number which will be used for creating a connection.

Openssh Tutorial

This completes our OpenSSH installation on our Seedbox.To use Openssh on windows we need to first install openssh client on our windows too. This link will guide you how to check if Openssh is installed or not and also how to install it  if not already installed.

3. Once Openssh client is installed.Open powershell on windows by searching ‘Power Shell’ in windows apps.

Openssh Tutorial

4. On opening the Power Shell type ‘ssh’ and hit enter. If Openssh is correctly installed  you will see the openssh usage guide as shown below.

Openssh Tutorial

5. Now to connect to your seedbox type ssh command with the username  provided in the FTP detail and hostid(provided in OpenSSH window).

Following format should be used:
‘ssh username@hostid  -p  port no’

Openssh Tutorial

You will asked to enter password which you can get from the FTP detail.

Openssh Tutorial

6. After entering the password you should be able to use Openssh as shown below.

Openssh Tutorial

Using Openssh on Ubuntu

Similar to Windows , first install openssh on your seedbox and note the host id and port no as reference for making connection. Now lets try connecting your seedbox using Openssh on ubuntu system.

  1. Open terminal on your system and type following command:

‘sudo apt update ‘

Openssh Tutorial

2. Once the above command execution is complete . Type ‘ sudo apt install openssh-client’ and press enter.

Openssh Tutorial

If you face an error as shown in the screenshot above, you need to kill the ongoing process which is using apt.

3. Type ‘ ps aux | grep -i apt’ and press enter which will list all the process ids which are currently using ‘apt’.

Openssh Tutorial

4. Kill the process using the command ‘sudo kill <process id>’. After th process has been terminated try again to install openssh client using the same command ‘sudo apt install openssh-client’

Openssh Tutorial

5. You can now test your installation by creating a connection to your seedbox as mentioned in the windows openssh connection section. Ex. ssh <username>@<host id> -p <port no.>

Openssh Tutorial

You will be prompted to enter password and accept SH256 signature after which connecting process will be complete.