Skip to content

Instantly share code, notes, and snippets.

@sensoria-pro
Created February 25, 2024 17:22
Show Gist options
  • Save sensoria-pro/3496f271091227bb1e4c8d14a7910f1f to your computer and use it in GitHub Desktop.
Save sensoria-pro/3496f271091227bb1e4c8d14a7910f1f to your computer and use it in GitHub Desktop.
ssh config example
Host *.com
StrictHostKeyChecking no
User user_root
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 user_ci
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