SSH Keys
Revision as of 15:51, 22 April 2020 by AlphaCubed (talk | contribs) (Created page with "Using keys are more secure than using passwords for SSH, and easier since you don't need to keep entering the password to the remote machine. ==Generating a Key== Basically j...")
Using keys are more secure than using passwords for SSH, and easier since you don't need to keep entering the password to the remote machine.
Generating a Key[edit | edit source]
Basically just run the following command and hit enter 3 times to accept the defaults:
ssh-keygen -t rsa
Put Key on a Remote Machine[edit | edit source]
Run the following line to put the key on the remote machine. Be sure to change the REMOTE_USER and REMOTE_IP with your machine's info:
cat ~/.ssh/id_rsa.pub | ssh REMOTE_USER@REMOTE_IP "mkdir -p ~/.ssh && cat << ~/.ssh/authorized_keys"