---
title: OpenSSH
url: https://docs.vultr.com/products/compute/instances/vx1-cloud-compute/connection/openssh
description: Connect to your Vultr VX1™ Cloud Compute instance using OpenSSH with either default user credentials or SSH keys for secure access.
publish_date: 2025-11-19T14:11:47.686070Z
last_updated: 2026-05-26T18:52:34.291024Z
---

# How To Connect to a Vultr VX1™ Cloud Compute Instance Using SSH

OpenSSH is a secure protocol used to connect to remote servers through encrypted SSH sessions. Vultr VX1™ Cloud Compute instances include OpenSSH by default, allowing you to log in and manage your server securely.

Follow this guide to connect to a Vultr VX1™ Cloud Compute instance using SSH on your workstation.

## Connect to an Instance Using the Default User Credentials

1. Open your instance's management page in the Vultr Console.
1. Note the default credentials within the **Overview** tab and copy the user password to your clipboard.
1. Open a new terminal or command prompt application on your workstation.
1. Connect to your Vultr VX1™ Cloud Compute instance using SSH.

    ```console
    $ ssh username@SERVER-IP
    ```

1. Enter `yes` and press **ENTER** when prompted to add the instance's public key to your known hosts.

    ```
    The authenticity of host '192.0.2.18 (192.0.2.18)' can't be established.
    ED25519 key fingerprint is SHA256:gTAOuCiCa3Us4tpVaVHVk9d3qOjKrsqXPOsAFQbB8xw.
    This key is not known by any other names
    Are you sure you want to continue connecting (yes/no/[fingerprint])?
    ```

1. Enter your instance user's password when prompted and press **ENTER** to log in.

    ```
    username@SERVER-IP's password:
    ```

1. View the active user in your SSH session.

    ```console
    $ whoami
    ```

## Connect to an Instance Using SSH Keys

> [!NOTE]
> Generate an SSH key on your workstation and add it to your instance during deployment. Adding an SSH key using the Vultr Console after deployment will result in data loss and wipe your instance to install the new key.

1. Open a new terminal or command prompt application on your workstation.
1. Connect to your Vultr VX1™ Cloud Compute instance using a specific SSH key on your workstation.

    ```console
    $ ssh -i /path/to/private/key username@SERVER-IP
    ```

1. Enter `yes` and press **ENTER** when prompted to add the instance's public key to your known hosts.

    ```
    The authenticity of host '192.0.2.18 (192.0.2.18)' can't be established.
    ED25519 key fingerprint is SHA256:gTAOuCiCa3Us4tpVaVHVk9d3qOjKrsqXPOsAFQbB8xw.
    This key is not known by any other names
    Are you sure you want to continue connecting (yes/no/[fingerprint])? yes
    ```

1. View the active user in your SSH session.

    ```console
    $ whoami
    ```