Access Your Dedicated Server via SSH

What is SSH?

SSH (Secure Shell) is the standard way to connect to your dedicated server and execute commands directly. It is an encrypted and secure connection. With SSH, you can install software, restart services, configure the server, and much more.

Required Connection Data

You will find these in your welcome email or client area:

  • Server IP: E.g.: 192.168.1.100
  • SSH Port: 22 (default)
  • Username: root (or the one we assigned you)
  • Password: From your welcome email

Connect from Windows

You have two options:

Option A — PuTTY (free program)

  1. Download PuTTY and install it
  2. In Host Name, type your server's IP
  3. Port: 22 — Type: SSH
  4. Click Open
  5. Accept the security alert (first time)
  6. Enter the username and password

Option B — PowerShell or CMD (Windows 10/11)

ssh root@YOUR-SERVER-IP

Connect from Mac or Linux

Open the Terminal and type:

ssh root@YOUR-SERVER-IP

The first time, you will see a fingerprint warning. Type yes and press Enter. Then enter your password.

???? Recommended Security: After your first connection, change the root password with the passwd command and consider setting up SSH key authentication instead of a password.
✅ Connected. You now have full control of your server. Use exit to securely close the SSH session.