ssh_config: update comments, add Includes

Resolves: #69
This commit is contained in:
Mikaela Suomalainen 2020-05-22 14:27:46 +03:00
parent 2a7a15c0ed
commit d8d48508bd
No known key found for this signature in database
GPG Key ID: 440D764E4F4A6C2D
1 changed files with 10 additions and 3 deletions

View File

@ -1,6 +1,10 @@
# /etc/ssh/ssh_config - at least the Arch default was full of comments
# so I think it makes more sense if I just paste my normal config here
# without host specific options.
# This works as a /etc/ssh/ssh_config or ~/.ssh/config like how I keep
# using it. Higher option takes priority (keep `Host *` bottom)
# User specific configs
Include ~/.ssh/config.d/*.conf
# Debian includes this
Include /etc/ssh/ssh_config.d/*.conf
Host *
# Path for the control socket.
@ -14,6 +18,9 @@ Host *
ForwardAgent no
ForwardX11 no
# Debian sets this as yes, upstream no. TODO: What is it?
#GSSAPIAuthentication yes
# Ensure KnownHosts are unreadable if leaked.
HashKnownHosts yes