---
title: PuTTY
url: https://docs.vultr.com/products/compute/instances/vx1-cloud-compute/connection/putty
description: Connect to your Vultr VX1™ Cloud Compute instance on Windows using PuTTY with either default user credentials or SSH keys.
publish_date: 2025-11-19T14:08:51.684772Z
last_updated: 2026-05-26T18:52:31.278203Z
---

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

PuTTY is an open-source terminal emulator and SSH client for Windows workstations. It provides a user-friendly interface and terminal to connect to instances using SSH. PuTTY supports both password-based authentication and SSH keys for secure connections to an instance.

Follow this guide to connect to a Vultr VX1™ Cloud Compute instance using PuTTY on Windows.

## Connect to an Instance Using the Default User Credentials

1. Open PuTTY from your applications menu.
1. Enter your instance's public IP address in the **Host Name (or IP address)** field.
1. Keep `22` as the **Port** value and **SSH** as the connection type.
1. Click **Open** to connect to your instance using SSH.
1. Click **Accept** when prompted to add the instance's public key to your workstation's known hosts.
1. Enter your username when prompted for the `login as` value.
1. Enter the user's password when prompted and press **ENTER** to log in.
1. View the active user information in your SSH session.

    ```console
    $ whoami
    ```

## Connect to an Instance Using SSH Keys

1. Enter your instance's public IP address in the **Host Name (or IP address)** field.
1. Keep `22` as the **Port** and **SSH** as the connection type.
1. Expand the **SSH** group on the main navigation menu to access additional connection options.
1. Expand the **Auth** group and select **Credentials** from the list of options.
1. Click **Browse** within the **Private key file for authentication** field to load your private key.
1. Click **Data** within the **Connection** group and enter the default instance username in the **Auto-login username** field to use with your SSH key.
1. Navigate to **Session** on the main navigation menu and enter a new session name in the **Saved Sessions** field.
1. Click **Save** to store your SSH key, user, and the instance IP configurations.
1. Click **Open** to connect to the instance using the SSH key session information.
1. Click **Accept** when prompted to add the instance's public key to your workstation's known hosts.
1. View the active user information in your SSH session.

    ```console
    $ whoami
    ```