Changes between Version 6 and Version 7 of SystemAdministration/Security/OpenSSH


Ignore:
Timestamp:
07/21/15 12:59:23 (9 years ago)
Author:
Sander Maijers
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SystemAdministration/Security/OpenSSH

    v6 v7  
    11= Generating an OpenSSH key pair =
    2 == Guidelines ==
     2== Rules and guidelines ==
    33
    4  * Algorithm: ed25519 or rsa 4096bits
    5  * Supply a password for your private key
    6  * Use a unique private/public key pair per server
     4 * '''Always''' use a (strong) passphrase on your private keys!
     5 * Use a unique private/public key pair for each username, host combination.
     6 * It is more secure to not use a key agent or multiplexing (`ControlMaster`), as any process running on your computer can abuse those mechanisms to perform commands on hosts you were permitted to log in to.
     7
     8If you fail to follow these rules and guidelines, a compromise of the server's security may actually be ''more likely'' than if we were still using fixed passwords.
    79
    810== Generating a new ssh private/public key pair ==