##
##  ssh_config -- OpenSSH Client Configuration
##

Host localhost
    Compression                     no
    ForwardX11                      yes
    KeepAlive                       yes

#   Global Default Settings
#   (keep this section last here, because
#   the rule is "first matching is used")
Host *
    BatchMode                       no
    CheckHostIP                     yes
    Protocol                        1,2
    HostKeyAlgorithms               ssh-rsa,ssh-dss
    PreferredAuthentications        hostbased,publickey,keyboard-interactive,password
    Cipher                          3des
    Ciphers                         aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour,aes192-cbc,aes256-cbc
    MACs                            hmac-sha1,hmac-md5,hmac-ripemd160,hmac-sha1-96,hmac-md5-96
    Compression                     yes
    CompressionLevel                4
    ConnectionAttempts              2
    PubkeyAuthentication            yes
    DSAAuthentication               yes
    RSAAuthentication               yes
    ChallengeResponseAuthentication yes
    PasswordAuthentication          yes
    NumberOfPasswordPrompts         2
    RhostsAuthentication            no
    RhostsRSAAuthentication         no
    StrictHostKeyChecking           no
    UsePrivilegedPort               no
    EscapeChar                      ~
    ForwardAgent                    yes
    ForwardX11                      no
    GatewayPorts                    no
    KeepAlive                       no
    LogLevel                        INFO

