SSH Shared Key Auth
There are many guides on doing this, I’m just dropping it here as quick reminder to myself. On server1… $ ssh-keygen -t rsa $ chmod 700 ~/.ssh $ chmod 600 ~/.ssh/id_rsa Copy to server2; then on server2… $ cat id_rsa.pub >> ~/.ssh/authorized_keys $ rm -f id_rsa.pub $ chmod 700 ~/.ssh $ chmod 600 ~/.ssh/authorized_keys If [...]






