19 lines
477 B
Plaintext
19 lines
477 B
Plaintext
|
## Multiplex connections
|
||
|
ControlMaster auto
|
||
|
ControlPath ~/.ssh/master/control-%h-%p-%r
|
||
|
ControlPersist 600
|
||
|
|
||
|
## Disbale GSSAPI authentication to speedup connecting
|
||
|
GSSAPIAuthentication=no
|
||
|
|
||
|
## Hash hostnames in known_hosts
|
||
|
HashKnownHosts yes
|
||
|
|
||
|
## Add hosts to known_hosts and check keys at connecting
|
||
|
## Disable temporary for connecting to unknown hosts
|
||
|
StrictHostKeyChecking no
|
||
|
|
||
|
## Accept additional keys from hosts to enable key rotation
|
||
|
UpdateHostKeys yes
|
||
|
|
||
|
include conf.d/*.conf
|