---
title: FAQ
url: https://docs.vultr.com/products/orchestration/ssh-keys/faq
description: A comprehensive guide addressing common questions about managing and using SSH keys with Vultr services.
publish_date: 2024-11-15T18:19:47.433348Z
last_updated: 2026-05-26T20:19:00.340356Z
---

# Frequently Asked Questions (FAQs) for Vultr SSH Keys

These are the frequently asked questions for Vultr SSH keys.

???+ note "Why are SSH keys important?"

    Unlike passwords, Vultr SSH keys are more secure and less susceptible to brute-force attacks and eavesdropping. SSH keys encrypt data between the client and the server.
    
??? note "How do I secure my SSH keys?"

    You should protect your SSH private keys with a passphrase and avoid sharing them with unauthorized users.

??? note "How do I generate an SSH key?"

    You can use a key generator, such as ssh-keygen for Linux and PuTTYgen for Windows to create SSH keys. SSH keys are a public-private key pair. You should share the public key with the remote server and keep the private key locally on your computer. Visit the guide on how to [generate SSH Keys](https://docs.vultr.com/how-do-i-generate-ssh-keys) for more information.

??? note "Can I use a single SSH key with multiple servers?"

    Yes, you can use the same SSH key with multiple servers. However, if the key is compromised, the attacker gains access to all servers using it. Therefore, consider creating different keys for your servers.