OneQode Documentation
FeedbackSupportStatus
  • 👋Welcome
  • Compute
    • SSH keys
      • Create an SSH key
      • Add your SSH key
    • Instances
      • Create an instance
      • Control an instance
      • Delete an instance
      • Configurations / Flavors
    • Cloud-init
  • Storage
    • Images
      • Create an image
      • Create a snapshot
    • Local storage
    • Volumes
      • Automatically mount a volume
  • Network
    • Floating IPs
    • BGP Communities
  • API
    • API overview
    • Get an API key
    • Install the CLI client
    • Server quick start
  • Dedicated Servers
    • Installing an OS remotely
Powered by GitBook
On this page

Was this helpful?

  1. Compute
  2. SSH keys

Create an SSH key

How to generate an SSH key

Generate a new key on your computer

To create a new SSH key, you can do so through the command line tool on a Linux machine (or using the Windows Subsystem for Linux)

Enter the following command to create a key:

ssh-keygen -t ed25519 -C "your_email@example.com"

In this example, the ssh-keygen command creates a new SSH key using the RSA algorithm with a 4096-bit key length.

The -C option adds a comment to the key, which is your email address in this case. The command will prompt you for a file in which to save the key, or accept the default location.

PreviousSSH keysNextAdd your SSH key

Last updated 2 years ago

Was this helpful?