Setting up SSH keys for authentication

Encrypted cloud connection

Here are the steps how to add an SSH key for authentication on a linux machine.

SSH keypairs are combination of a public key that you can share on your remote machines and a private key that you should store securely and use for accessing the remote machines. They add both better security than passwords and less effort to remember different password for each server you log on.

Read More

Generating SSH keys in Linux

This article can help you on generating SSH keypair for authentication to your remote machines. The benefits of using SSH keys are the added security in compare with password authentication and the ease that you can you the same keypair to connect to multiple sites and remote machines, by just sharing you public key and keeping your private key secure.

Read More

Setup SSH Keys with ssh-copy-id

In the article below, you can find quick and easy explanation how to generate and setup ssh keys between two hosts.
SSH keys have two major benefits – added security and easier management of multiple hosts with one public key. Nowadays, it gets more and more popular with the eve of the Automation era – you know, keeping THE passwords in a file is not the best security.

Read More