Changes between Version 7 and Version 8 of SSHKEYGEN


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

--

Legend:

Unmodified
Added
Removed
Modified
  • SSHKEYGEN

    v7 v8  
    88}}}
    99
    10 Then they will ask to enter default .ssh path
     10 Then they will ask to enter default .ssh path
    1111{{{
    1212Enter file in which to save the key (/home/yourusername/.ssh/id_rsa):
    1313}}}
    1414
    15 We can key in any passphrase to make extra security but just press enter with empty key it will automate gen-key for you
     15 We can key in any passphrase to make extra security but just press enter with empty key it will automate gen-key for you
    1616{{{
    1717Enter passphrase (empty for no passphrase):
    1818}}}
    1919
    20 Now the public and private key will be kept in
     20 Now the public and private key will be kept in
    2121{{{
    2222ls -al
     
    2929ssh-copy-id remote_username@server_ip_address
    3030}}}
    31 or with manual ssh with
     31 or with manual ssh with
    3232{{{
    3333cat ~/.ssh/id_rsa.pub | ssh remote_username@server_ip_address "mkdir -p ~/.ssh && chmod 700 ~/.ssh && cat >> ~/.ssh/authorized_keys && chmod 600 ~/.ssh/authorized_keys"