How to connect to your Ultra.cc slot via SSH
SSH, also known as Secure Shell, is a network protocol that gives users a secure way to remotely access your seedbox.slot remotely. With SSH, you can do the following:
- Provides secure access for users to your
seedboxslot - Can be used for secure file transfers to and from your PC
- Issue remote commands
- Can be used to diagnose and troubleshoot if there are problems with your apps
All of our seedboxslot plans come with SSH access.
Changing your SSH Password
Before logging into your SSH, you should first set your own SSH/FTP password.
- Login to your User Control Panel and
loginlog in with the credentials you set and Press Connect
- Click Access details and click Change password beside SSH access.
- Set your
passwordPassword to anything you wish. We recommend using a unique password that you do not use in any of your existing accounts and has the following:- At least 12 characters
- An uppercase letter
- A lowercase letter
- At least 1 number
- At least 1 symbol
- When you're
donedone, click Confirm change
- A popup saying Password successfully changed should appear on the lower right corner of the page, signifying that the
passwordPassword is set successfully.
SSH Clients and How to Connect
OpenSSH
OpenSSH is an open-source alternative to the proprietary Secure Shell software suite offered by SSH Communications Security and is bundled with some Linux distributions and macOS. It is also an optional feature in Windows 10 since the October 2018 Update (Version 1809).
Installing OpenSSH in Windows 10
- To install OpenSSH client, go to Settings then go to Apps > Apps and Features > Manage Optional Features. Then, click Add a feature.
- Then, select OpenSSH Client and click Install.
- Once installation is completed, return to Apps > Apps and Features > Manage Optional Features and you should see OpenSSH Client listed under Optional features.
Installing OpenSSH in Linux
Some Linux distributions distributions have OpenSSH client installed as part of their bundle. Provided below are the commands to install OpenSSH clients in some of the popular Linux distributions.
Ubuntu/Debian: sudo apt installInstall openssh-client
Arch Linux/Manjaro Linux: sudo pacman -Syyu openssh
Fedora: sudo dnf install -y openssh-client;
Accessing Seedbox’slot’s Terminal via OpenSSH
The following screenshots are from Windows' command promptprompt, but itthey should be the same on Windows, LinuxLinux, and macOS.
- Open up a command prompt window, Windows PowerShell
windowwindow, or a terminal window (macOS/Linux) and type in either of the following
ssh username@IP_of_seedboxusername@IP_of_slot (usbdocs@123.456.789)
ssh username@lwxxx.usbx.me (usbdocs@lw500.usbx.me)
ssh username@username.lwxxx.usbx.me (usbdocs@usbdocs.lw500.usbx.me)
- When you do this the first time, this message appears. This is normal. This means that your computer does not recognize the remote host, which is your
seedboxslot, and will happen the first time you connect to a new host. - Type
yes
and press ENTER to continue. You can compare your IP address shown here to the one indicated to yourUCPUCP, and if it's correct, typeyes
.
- Then, enter the
passwordPassword that you set earlier. Take note that you won't see anything in the password field as you type. This is normal as no visual feedback of passwords given in the terminal is part of the security measures taken by default.
- When you entered the correct
password,Password, you'll enter the shell of yourseedbox.slot.
PuTTY
PuTTY is a free and open-source GUI SSH, Telnet, RloginRlogin, and serial port connection client for Windows. You may also use this to connect to your seedbox.slot.
Installation
- Download and install the latest release of PuTTY here.
Setting up PuTTY
- Launch
PuTTYPuTTY, and you'll be greeted with this window.
- Login to your UCP and navigate to your Access details Tab
- Put in the hostname or the IP of the
seedboxslot to the Host Name (or IP Address) text box. In the screenshot, I'll be using the IP of theseedbox.slot. - Make sure that the Port is set to
22
and the Connection Type is SSH
- In Connection -> Data, enter the username registered on your slot.
- This is
optionaloptional, but under Connection, you can set Seconds between keepalives to60
. This is to prevent youtofromdisconnectdisconnecting from your SSH session whenever you're idle.
- Now, to save your profile, go to Session. Enter any name you want on the Saved sessions text box and click Save.
- We will now
loginlog in to yourseedbox.slot. Highlight the SavedsessionSession you just made. and click Open. - Another window will open
- Enter the
passwordPassword you set. Once logged in, you'll see this message. You're now in yourseedbox'slot's terminalprompt.session.