How to Connect to a Vultr Bare Metal Instance Using OpenSSH
-
by Blog Admin
- 23
How to Connect to a Vultr Bare Metal Instance Using OpenSSH
A secure connection protocol pre-installed on Vultr Bare Metal instances for remote SSH access.
OpenSSH is a connection protocol that enables SSH access on a server. It’s available and active on Vultr Bare Metal instances by default to enable secure connections.
Follow this guide to connect to a Vultr Bare Metal instance using SSH on your workstation.
Connect to an Instance Using the Default User Credentials
- Access your Vultr Bare Metal instance’s management page.
- Note the default credentials within the Overview tab and copy the user password to your clipboard.
- Open a new terminal window on your workstation.
- Connect to your Vultr Bare Metal instance using SSH.
console
$ ssh username@SERVER-IP
- 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.123 (192.0.2.123)' 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
- Paste your instance password when prompted and press Enter to log in.
username@SERVER-IP's password:
- View the active user information in your SSH session.
console
$ whoami
Connect to an Instance Using SSH Keys
Generate an SSH key on your workstation and add it to your instance before deployment. Adding an SSH key to an existing instance will result in data loss and wipe your instance to install the new key.
- Open a new terminal window on your workstation.
- Connect to your instance using a specific SSH key on your workstation.
console
$ ssh -i /path/to/private/key username@SERVER-IP
- 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.123 (192.0.2.123)' 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
- View the active user information in your SSH session.
console
$ whoami
How to Connect to a Vultr Bare Metal Instance Using OpenSSH A secure connection protocol pre-installed on Vultr Bare Metal instances for remote SSH access. OpenSSH is a connection protocol that enables SSH access on a server. It’s available and active on Vultr Bare Metal instances by default to enable…
How to Connect to a Vultr Bare Metal Instance Using OpenSSH A secure connection protocol pre-installed on Vultr Bare Metal instances for remote SSH access. OpenSSH is a connection protocol that enables SSH access on a server. It’s available and active on Vultr Bare Metal instances by default to enable…