X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=ssh_config;h=62babfce373192a98a322c11f2018991b53df91d;hb=b8b992b2aba6d6e9eed0f0b2e025c08511139290;hp=217ae9ef7abf90de2533f81bbca70578282b70b7;hpb=5b041628369b1f54ab4460c6f05ec203b20d28fd;p=config%2Fdotfiles.git diff --git a/ssh_config b/ssh_config index 217ae9e..62babfc 100644 --- a/ssh_config +++ b/ssh_config @@ -15,6 +15,13 @@ # You should have received a copy of the GNU General Public License # along with this file. If not, see . +# Undocumented (and not very well tested) feature. This drops the connection +# after 5 seconds of inactivity. Thanks to shad0VV in #openssh on Freenode +# (2012-11-04 18:40 CET) for telling me about this undocumented feature. +# +# ServerAliveCountMax 0 +# ServerAliveInterval 5 + # Rules for all hosts. Host * @@ -29,8 +36,9 @@ Host * # to local X11! ForwardX11Trusted no -# If -M is used store the control master socket in ~/.ssh. Necessary for -# ControlMaster to work. +# Allow using -M (ControlMaster) to create a master SSH session which +# "tunnels" other connections to the same host, thus reducing the number of +# authentications (which are relatively slow) and TCP connections. ControlPath ~/.ssh/master-%l-%h-%p-%r # Abort if not all requested port forwardings can be set up. @@ -39,5 +47,7 @@ Host * # Don't send any environment variables. SendEnv +# Check host IP in known_hosts when connecting to detect DNS spoofing. + CheckHostIP yes # Ask before adding any host keys to ~/.ssh/known_hosts. StrictHostKeyChecking ask