about summary refs log tree commit diff stats
path: root/ssh/config
diff options
context:
space:
mode:
Diffstat (limited to 'ssh/config')
-rw-r--r--ssh/config17
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
3Include machines
4
5# defaults
6Host *
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