SSH
Generating an SSH Key
ssh-keygen -a 1000 -t ed25519 -C "{{ YOUR_EMAIL }}"
# Alternatively
ssh-keygen -t rsa -b 4096 -C "{{ UNIQUE_NAME }}"Naming SSH Keys
id_<key_algorithm>_<servername>_<purpose>
id_<key_algorithm>_<service>_<purpose>Adding a Public Key to a Remote Server
SSH config
Adding your SSH key to the ssh-agent
Last updated