ssh_config: fix comments

This commit is contained in:
Aminda Suomalainen 2015-09-06 08:15:17 +03:00
parent dc9f8b0ab5
commit 68c6da5aec
2 changed files with 6 additions and 6 deletions

View File

@ -2,7 +2,7 @@
# access, but they should require SSH key authentication anyway.
Host *
# Path for the control socket
# Path for the control socket.
ControlPath /tmp/SSH_%u-%r.%h.%p
# Multiple sessions over single connection
ControlMaster yes
@ -19,7 +19,7 @@ Host *
LogLevel VERBOSE
Protocol 2
# Always try public key authentication
# Always try public key authentication.
PubkeyAuthentication yes
# Send LANG, LANGUAGE and LC_* environment variables to the server.
@ -35,7 +35,7 @@ Host *
# OpenSSH 6.8+ - ask all host keys from servers.
# I trust the server admins and ways to identify the keys (DNSSEC,
# manual)
# manual).
UpdateHostKeys yes
# Verify SSHFP records. In case DNSSEC is used this skips the

View File

@ -3,7 +3,7 @@
# without host specific options.
Host *
# Path for the control socket
# Path for the control socket.
ControlPath /tmp/SSH_%u-%r.%h.%p
# Multiple sessions over single connection
ControlMaster yes
@ -20,13 +20,13 @@ Host *
LogLevel VERBOSE
Protocol 2
# Always try public key authentication
# Always try public key authentication.
PubkeyAuthentication yes
# Send LANG, LANGUAGE and LC_* environment variables to the server.
SendEnv LANG LANGUAGE LC_*
# If the server doesn't reply in "three" pings, connection is dead.
# If the server doesn't reply in three "pings", connection is dead.
# Defaults to 3 anyway, but I add it here for clearity and
# in case it decides to change in the future.
ServerAliveCountMax 3