Changes between Version 2 and Version 3 of SSHKEYGEN


Ignore:
Timestamp:
05/26/21 02:40:37 (4 years ago)
Author:
krit
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SSHKEYGEN

    v2 v3  
    22
    33
    4 1. Create ssh key at localhost
     41.Create ssh key at localhost [[br]]
     5
    56{{{
    67ssh-keygen -t rsa -b 4096 -C user@remotehost.com
    78}}}
     9
    810Then they will ask to enter default .ssh path
    911{{{
    1012Enter file in which to save the key (/home/yourusername/.ssh/id_rsa):
    1113}}}
     14
    1215We can key in any passphrase to make extra security but just press enter with empty key it will automate gen-key for you
    1316{{{
    1417Enter passphrase (empty for no passphrase):
    1518}}}
     19
    1620Now the public and private key will be kept in
    1721{{{
     
    2125
    22262. In your local host copy public key (id_rsa.pub) to remote host
     27
    2328{{{
    2429ssh-copy-id remote_username@server_ip_address