Created
January 20, 2024 22:02
-
-
Save etoosamoe/07c8ac5cae58d11066ba1fe5ebe9b7a3 to your computer and use it in GitHub Desktop.
SSH Client configuration example | ssh config example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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