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


Ignore:
Timestamp:
07/21/15 13:02:10 (9 years ago)
Author:
Sander Maijers
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SystemAdministration/Security/OpenSSH

    v7 v8  
    1010== Generating a new ssh private/public key pair ==
    1111
    12 
    13 Issue the following command in '~/.ssh':
     12To generate key pair, issue the following command in `~/.ssh`:
    1413{{{
    1514ssh-keygen -t ed25519 -C "<description>" -f <username>@<host_shorthand>
    1615}}}
    1716
    18 Ed25519 is advised as it is fast, small and particularly secure (has all paraneters set to known secure values by default). If you must use something else, use RSA:
     17Ed25519 is the best key type as it is fast, small and particularly secure (it has all paraneters set to known secure values by default). If you must use something else, use RSA with a 2048 bits key size:
    1918{{{
    2019ssh-keygen -t rsa -o -b 2048 -C  "<description>" -f <username>@<host_shorthand>
     
    4241== Mac OS X ==
    4342
    44 If Ed25519 is not available on your computer, install `openssh` via homebrew ([http://epocsquadron.com/a-comprehensive-ssh-key-primer/ reference]).
     43If your `ssh-keygen` fails to generate keys of the Ed25519 type, install `openssh` via homebrew ([http://epocsquadron.com/a-comprehensive-ssh-key-primer/ reference]).
    4544
    4645{{{