Skip to content

Instantly share code, notes, and snippets.

@etoosamoe
Created January 20, 2024 22:02
Show Gist options
  • Save etoosamoe/07c8ac5cae58d11066ba1fe5ebe9b7a3 to your computer and use it in GitHub Desktop.
Save etoosamoe/07c8ac5cae58d11066ba1fe5ebe9b7a3 to your computer and use it in GitHub Desktop.
SSH Client configuration example | ssh config example
Host *.com
StrictHostKeyChecking no
User etoosamoe
ForwardAgent yes
IdentityFile /Users/username/.ssh/id_rsa
IdentitiesOnly yes
UserKnownHostsFile=/dev/null
UseKeychain yes
AddKeysToAgent yes
ServerAliveInterval 60
ServerAliveCountMax 1200
Host std-*
StrictHostKeyChecking no
User ci-user
ForwardAgent yes
IdentityFile /Users/username/.ssh/id_rsa_second
IdentitiesOnly yes
UserKnownHostsFile=/dev/null
UseKeychain yes
AddKeysToAgent yes
ServerAliveInterval 60
ServerAliveCountMax 1200
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment