diff options
author | Case Duckworth | 2024-07-14 21:27:50 -0500 |
---|---|---|
committer | Case Duckworth | 2024-07-14 21:27:50 -0500 |
commit | 812b71ad1ddf7793d9daacb952b769dab097f640 (patch) | |
tree | f36da0ab431c8eb4410886860220f961463a4ae0 /ssh/config | |
parent | Update emacs (diff) | |
download | dots-812b71ad1ddf7793d9daacb952b769dab097f640.tar.gz dots-812b71ad1ddf7793d9daacb952b769dab097f640.zip |
Add ssh
Diffstat (limited to 'ssh/config')
-rw-r--r-- | ssh/config | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/ssh/config b/ssh/config new file mode 100644 index 0000000..f59ddf0 --- /dev/null +++ b/ssh/config | |||
@@ -0,0 +1,17 @@ | |||
1 | # ~/.ssh/config | ||
2 | |||
3 | Include machines | ||
4 | |||
5 | # defaults | ||
6 | Host * | ||
7 | CanonicalizeHostname yes | ||
8 | ForwardAgent yes | ||
9 | ExitOnForwardFailure yes | ||
10 | AddKeysToAgent yes | ||
11 | ControlMaster auto | ||
12 | ControlPath ~/.ssh/master-%r@%h:%p | ||
13 | ControlPersist 10m | ||
14 | ServerAliveInterval 10 | ||
15 | ServerAliveCountMax 10 | ||
16 | IdentitiesOnly yes | ||
17 | PubKeyAuthentication yes | ||