From 09f0f0e1ab482bc12a9020c50535ec03e6dfd92a Mon Sep 17 00:00:00 2001 From: Ivan Baluta Date: Wed, 18 Feb 2026 17:02:22 +0700 Subject: [PATCH] ssh-keygen: update page (#21170) --- pages/common/ssh-keygen.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pages/common/ssh-keygen.md b/pages/common/ssh-keygen.md index c004723d86..0c02009f05 100644 --- a/pages/common/ssh-keygen.md +++ b/pages/common/ssh-keygen.md @@ -10,19 +10,19 @@ - Generate an ed25519 key with 32 key derivation function rounds and save the key to a specific file: -`ssh-keygen -t {{ed25519}} -a {{32}} -f {{~/.ssh/filename}}` +`ssh-keygen -t ed25519 -a 32 -f {{~/.ssh/filename}}` - Generate an RSA 4096-bit key with email as a comment: -`ssh-keygen -t {{rsa}} -b {{4096}} -C "{{comment|email}}"` +`ssh-keygen -t rsa -b 4096 -C "{{comment|email}}"` -- Remove the keys of a host from the known_hosts file (useful when a known host has a new key): +- Remove the keys of a host from the `known_hosts` file (useful when a known host has a new key): `ssh-keygen -R {{remote_host}}` - Retrieve the fingerprint of a key in MD5 Hex: -`ssh-keygen -l -E {{md5}} -f {{~/.ssh/filename}}` +`ssh-keygen -l -E md5 -f {{~/.ssh/filename}}` - Change the password of a key: @@ -30,8 +30,8 @@ - Change the type of the key format (for example from OPENSSH format to PEM), the file will be rewritten in-place: -`ssh-keygen -p -N "" -m {{PEM}} -f {{~/.ssh/OpenSSH_private_key}}` +`ssh-keygen -p -m PEM -f {{~/.ssh/OpenSSH_private_key}}` -- Retrieve public key from secret key: +- Retrieve public key from private key: `ssh-keygen -y -f {{~/.ssh/OpenSSH_private_key}}`