diff options
-rw-r--r-- | %HOME%/.ssh/config | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/%HOME%/.ssh/config b/%HOME%/.ssh/config index 91ee89b..c6b4036 100644 --- a/%HOME%/.ssh/config +++ b/%HOME%/.ssh/config @@ -1,7 +1,18 @@ -Include ~/.ssh/config_work AddKeysToAgent yes + +# Make known_hosts actually readable. HashKnownHosts no + +# Don't verify localhost, duh. NoHostAuthenticationForLocalhost yes + +# Add server keys to known_hosts silently, I never bother to verify them +# anyway. +StrictHostKeyChecking no + +# Keep ssh connections alive. +# Wonder why this isn't default. ServerAliveCountMax 3 ServerAliveInterval 15 -StrictHostKeyChecking no + +Include ~/.ssh/config_local |