diff --git a/modules/ssh-agent-using.adoc b/modules/ssh-agent-using.adoc index 1391f7f31d8e..872fd8ca371c 100644 --- a/modules/ssh-agent-using.adoc +++ b/modules/ssh-agent-using.adoc @@ -159,7 +159,7 @@ endif::openshift-origin[] ---- $ ssh-keygen -t ed25519 -N '' -f / <1> ---- -<1> Specify the path and file name, such as `~/.ssh/id_rsa`, of the new SSH key. If you have an existing key pair, ensure your public key is in the your `~/.ssh` directory. +<1> Specify the path and file name, such as `~/.ssh/id_ed25519`, of the new SSH key. If you have an existing key pair, ensure your public key is in the your `~/.ssh` directory. + [NOTE] ==== @@ -173,11 +173,11 @@ If you plan to install an {product-title} cluster that uses FIPS Validated / Mod $ cat /.pub ---- + -For example, run the following to view the `~/.ssh/id_rsa.pub` public key: +For example, run the following to view the `~/.ssh/id_ed25519.pub` public key: + [source,termanal] ---- -$ cat ~/.ssh/id_rsa.pub +$ cat ~/.ssh/id_ed25519.pub ---- . Add the SSH private key identity to the SSH agent for your local user, if it has not already been added. SSH agent management of the key is required for password-less SSH authentication onto your cluster nodes, or if you want to use the `./openshift-install gather` command. @@ -211,7 +211,7 @@ If your cluster is in FIPS mode, only use FIPS-compliant algorithms to generate ---- $ ssh-add / <1> ---- -<1> Specify the path and file name for your SSH private key, such as `~/.ssh/id_rsa` +<1> Specify the path and file name for your SSH private key, such as `~/.ssh/id_ed25519` + .Example output [source,terminal]