.ssh/config
author Oleksandr Gavenko <gavenkoa@gmail.com>
Sun, 14 Aug 2011 16:08:05 +0300
changeset 174 f862e6d84d02
parent 89 92844597e8d7
child 222 8111e9e127f5
permissions -rw-r--r--
Move key binding as dabbrev-expand defined only in bash.


# Allow sharing of multiple sessions over a single network connection for all
# host. Also don't prompt for password when connection live.
Host *
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
# CompressionLevel has value 1..9 (fast..slow/best) with default 6.
# Applicable for SSH protocol version 1.
CompressionLevel 8

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