From 4d245198a8cbfb2ab1f9bc6c97693f6faa67e94c Mon Sep 17 00:00:00 2001 From: David Tomaschik Date: Mon, 25 Jun 2018 20:45:14 +0200 Subject: [PATCH] Add SSH canonicalization settings. --- dotfiles/ssh/config | 28 ++++++++++++++++------------ 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/dotfiles/ssh/config b/dotfiles/ssh/config index 78ad1ff..02eef49 100644 --- a/dotfiles/ssh/config +++ b/dotfiles/ssh/config @@ -5,17 +5,21 @@ Include ~/.ssh/config.d/* # Defaults (May be Overridden) Host *.* - CheckHostIP yes + CheckHostIP yes Host * - CheckHostIP no - ControlMaster auto - ControlPath ~/.ssh/master/%r@%h:%p - ControlPersist yes - ForwardAgent no - ForwardX11 no - ForwardX11Trusted no - ServerAliveInterval 120 - UpdateHostKeys yes - User david - VerifyHostKeyDNS yes + CheckHostIP no + ControlMaster auto + ControlPath ~/.ssh/master/%r@%h:%p + ControlPersist yes + ForwardAgent no + ForwardX11 no + ForwardX11Trusted no + ServerAliveInterval 120 + UpdateHostKeys yes + User david + VerifyHostKeyDNS yes + CanonicalizeHostname yes + CanonicalDomains systemoverlord.com + CanonicalizeMaxDots 0 + CanonicalizeFallbackLocal yes