.ssh/config
author Oleksandr Gavenko <gavenkoa@gmail.com>
Tue, 05 Sep 2017 17:35:44 +0300
changeset 885 bfbd7fdc89f8
parent 868 e3b5f71d12f0
child 930 e867bffa536e
permissions -rw-r--r--
https://superuser.com/questions/1247541/make-bash-completion-to-ignore-exe-extention-in-cygwin https://superuser.com/questions/1072481/tab-completion-for-command-arguments-fail-in-cygwin-due-to-exe-suffix https://github.com/scop/bash-completion/issues/164


Host *

# Allow sharing of multiple sessions over a single network connection for all
# host. Also don't prompt for password when connection live.
# This option was disabled to simplify use of port forwarding.
# You can enable it and pass "-s none" to ssh.
# ControlPath ~/.ssh/sock_%r@%h_%p
# ControlMaster auto

# This by default.
# UserKnownHostsFile ~/.ssh/known_hosts

# Enable compression. To turn on it manually invoke ssh with -C key.
Compression yes

# Prefer public key authentication.
PreferredAuthentications publickey,keyboard-interactive,password
PubkeyAuthentication yes

# Bypass locale env vars to remote host.
# Add to remote opensshd: AcceptEnv LANG LC_*
SendEnv LANG LC_*