Files
dotfiles/.ssh/config

23 lines
548 B
Plaintext

## Multiplex connections
ControlMaster auto
ControlPath ~/.ssh/master/control-%h-%p-%r
ControlPersist 600
## Use macOS keychain for SSH keys
AddKeysToAgent yes
UseKeychain yes
## 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