Most SSH clients automatically use these default filenames:
Algorithm: ED25519 (preferred)
- Public key: id_ed25519.pub
- Private key: id_ed25519
Algorithm: RSA (at least 2048-bit key size)
- Public key: id_rsa.pub
- Private key: id_rsa
Algorithm: DSA (deprecated)
- Public key: id_dsa.pub
- Private key: id_dsa
Algorithm: ECDSA
- Public key: id_ecdsa.pub
- Private key: id_ecdsa
- Generate your key with ssh-keygen, substituting your email address.
ed25519 key pair.Enter file in which
to save the key(/
Users/example/.ssh/id_ed25519):
3. You have the option to create a passphrase for your key. While we recommend setting up a passphrase for added security, you can bypass this prompt by simply pressing ENTER. Keep in mind that if you choose to use a passphrase, you’ll need to enter it every time you use the key, unless you also use ssh-agent.
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
saved in /Users/example/.ssh/
id_ed25519.Your public key has been
saved in/Users/example/.ssh/
id_ed25519.pub.
The key fingerprint is:
SHA256:qx6prR4Zo+VU
7Fl8yivXzzzzzzzzJ/
9NRnPbrC20w7g [email protected]
The key’s randomart image is:
+–[ED25519 256]–+
| |
| o . |
| o B o + . |
| B + + o + |
| = = S o o o |
| = + = O + + |
| . + B B = * . |
| = O + o |
| .+o=.. E . |
+—-[SHA256]—–+
5. It’s important to create a backup of your private key since it cannot be retrieved if lost.
6. To connect to an existing server using your SSH key, you must first add the public key to the authorized_keys file. Additionally, you have the option to add the public key to your Hostereo account.
Install OpenSSH on Windows 10
The OpenSSH client is an installable component for Windows 10 1809.
- Launch Settings then go to Apps > Apps and Features > Manage Optional Features.
- Scan this list to see if OpenSSH Client is already installed. If not, then click Add a feature.
- Locate OpenSSH Client, then click Install.
- Optionally, you can also install OpenSSH Client with PowerShell.
Once you’ve installed OpenSSH, follow the instructions above to create your SSH key.
Create an SSH Key on Windows with PuTTYgen
To create an SSH key on Windows using PuTTYgen, follow these steps:
- Download the latest version of the PuTTY utilities, preferably the MSI Windows Installer package.
- Install the package and launch PuTTYgen.
- Select EdDSA for the key type from the bottom of the program window.
- Set “Curve to use for generating this key” to Ed25519 (255 bits) in the lower-right corner.
- Click on the Generate button and move the mouse in the blank area to generate some random data.
- Enter a Key comment to make it easier to identify your key later.
- It’s important to keep your private key secure from unauthorized access. We recommend setting up a Key passphrase to protect your SSH key.
- Save your private key and store it securely. This file contains your public/private key pair in PuTTY format, and it cannot be recovered if lost. You can re-import this file using PuTTYgen in the future to export or convert the format of your public key.
- Click on Conversions and select Export OpenSSH key. Save this file and store it securely. This file contains your private SSH key in OpenSSH format, which you may need if you use an SSH client other than PuTTY.
- Select the text in the Public key for pasting into OpenSSH authorized_keys file box and save it to a file. This file contains your public key in OpenSSH format. If you want to add this key to your Hostereo account, you’ll need to copy and paste this key into the Customer Portal.
To recover the public key using OpenSSH when you have access to the private key, follow these steps:
- Use the ssh-keygen command with the -y option to regenerate the public SSH key.
- Provide the path to the private key with the -f option.
- Redirect the output to a file of your choice.
For example, to regenerate the public key for ~/example_key and send the output to ~/example_key.pub:
Change the Key’s Passphrase
You can change the passphrase on a private key with the -p option and pass the key name with the -f option.
View the Key’s Fingerprint
Print the key’s SHA256 fingerprint with the -l option, and pass the key name with the -f option.
FcgyUM0Qroot@localhost (RSA).
Transfer a Key to Your Server
OpenSSH provides a utility to transfer a key to your server, which requires authentication via SSH.
To use this utility, follow these steps:
- Use the -i option to specify the public key you want to transfer to the server.
- Replace the example values with your own username and the server’s IP address.
About SSH Key Formats
ED25519 keys were introduced in OpenSSH 6.5 back in 2014, and they are now widely available on various operating systems. Compared to RSA keys, ED25519 keys are considered to be more secure and offer better performance. However, if you choose to use an RSA key, it is recommended by the US National Institute of Science and Technology to use a key size of at least 2048 bits to ensure a higher level of security.