about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorCase Duckworth2024-07-14 21:27:50 -0500
committerCase Duckworth2024-07-14 21:27:50 -0500
commit812b71ad1ddf7793d9daacb952b769dab097f640 (patch)
treef36da0ab431c8eb4410886860220f961463a4ae0
parentUpdate emacs (diff)
downloaddots-812b71ad1ddf7793d9daacb952b769dab097f640.tar.gz
dots-812b71ad1ddf7793d9daacb952b769dab097f640.zip
Add ssh
-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