Table of Contents

back  
 next
, ,

ssh with key files

The advantages of using SSH key-based include:

Clearly use of unique password encrypted keys gives best security. However if a user has access to you terminal and user password they effectively have full system access anyway.

The use of sudo should not be necessary as the keys created should be user based.

ssh-keygen

The ssh-keygen command is used to create ssh key pairs

Use man ssh-keygen to see options and description of command.

ssh-keygen default

ssh-keygen with filename

Warning

During further SSH key pair generation, if you do not specify a unique file name, you are prompted for permission to overwrite the existing id_rsa and id_rsa.pub files. If you overwrite the existing id_rsa and id_rsa.pub files, you must then replace the old public key with the new one on ALL of the SSH servers that have your old public key.

Once you have generated the keys, they are stored in the /user/home/.ssh/ directory with the following permissions:

sharing keys

Some examples:

The remote ssh will ask for remote shell password.

Use man ssh–copy-id to see options and description of command.

references

Using ssh-keygen and sharing for key-based authentication in Linux

back  
 next