diff options
Diffstat (limited to 'ssh')
-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 | ||