# source: https://github.com/dotphiles/dotphiles/blob/master/ssh/config
# archive: https://web.archive.org/web/20220327110425/https://github.com/dotphiles/dotphiles/blob/master/ssh/config

#
# dotphiles : https://github.com/dotphiles/dotphiles
#
# Description:  Config for ssh client
#
# Authors:
#   Ben O'Hara <bohara@gmail.com>
#

# Global Settings
ForwardAgent yes
#VisualHostKey yes
HashKnownHosts no
#ConnectTimeout 2

# My Hosts
#Host hostname hostname.fqdn.com
#    Hostname hostname.fqdn.com

# Default
Host *
    #User username
    StrictHostKeyChecking ask
    ServerAliveCountMax 6
    ServerAliveInterval 30
    KeepAlive yes
    #ControlMaster auto
    #ControlPath ~/.ssh/master/%r@%h:%p
    #ControlPersist 8h
