about summary refs log tree commit diff stats
path: root/ssh/config
blob: f59ddf08da12408a8b8d2ec6b97f3aa012203404 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# ~/.ssh/config

Include machines

# defaults
Host *
  CanonicalizeHostname yes
  ForwardAgent yes
  ExitOnForwardFailure yes
  AddKeysToAgent yes
  ControlMaster auto
  ControlPath ~/.ssh/master-%r@%h:%p
  ControlPersist 10m
  ServerAliveInterval 10
  ServerAliveCountMax 10
  IdentitiesOnly yes
  PubKeyAuthentication yes