ssh.rst
changeset 2408 c19423f2e7ee
parent 2397 320b2c43529b
child 2520 787ff2658636
--- a/ssh.rst	Mon Jan 20 18:52:27 2020 +0200
+++ b/ssh.rst	Sun Jan 26 15:50:46 2020 +0200
@@ -27,10 +27,13 @@
   $ ssh-keygen -t dsa -f my_dsa_key  # store priv key under my_dsa_key
                                      # and pub key under my_dsa_key.pub
 
-  $ ssh-keygen -y -f ~/.ssh/id_dsa >~/.ssh/id_dsa.pub  # recover pub key from priv
+Recover pub key from priv::
+
+  $ ssh-keygen -y -f ~/.ssh/id_dsa >~/.ssh/id_dsa.pub
+
+Change passphrase of priv key::
 
   $ ssh-keygen -p -N "newphrase" -P "oldphrase" -f ~/.ssh/id_dsa
-                                     # change passphrase of priv key
 
 Coping and deleting public keys
 ===============================