You want connect to server.com
via SSH using key authentication? Follow this guide.
cd ~/.ssh
ssh-keygen -t ed25519 -C [email protected]
Provide a name for the generated key pair like: someid
Enter a passphrase and save it somewhere temporarily until we add it the keychain.
##Adjust permissions Restrict reading permissions to just yourself.
chmod 600 .ssh/newkey
chmod 600 .ssh/newkey.pub
If you accidentally changed permissions to ~/.ssh
instead, fix it with chmod u+x .ssh
.
Make sure keychain agent runs with:
eval "$(ssh-agent -s)"
To associate server and id open .ssh/config
and add:
Host server.com
AddKeysToAgent yes
UseKeychain yes
IdentityFile ~/.ssh/someid
Add passphrase for private key to keychain.
ssh-add --apple-use-keychain ~/.ssh/newkey
Copy public key to the clipboard and get it to server.com on your authentication settings.
pbcopy < ~/.ssh/someid.pub
Test SSH connection and accept server fingerprint.
ssh -T [email protected]
ssh-agent finds the correct id and get the passphrase for the private key from the keychain.
Written 2023-6-21 for macOS 13.4