2015-08-20 08:37:43 +02:00
|
|
|
# My SSH config. This does leak existense of some hosts where I have
|
|
|
|
# access, but they should require SSH key authentication anyway.
|
|
|
|
|
|
|
|
Host *
|
2015-08-30 16:11:04 +02:00
|
|
|
# Ensure KnownHosts are unreadable if leaked.
|
|
|
|
# While you might be reading this file from GitHub, I haven't
|
|
|
|
# specified all hosts here.
|
|
|
|
HashKnownHosts yes
|
|
|
|
|
2015-08-30 16:08:29 +02:00
|
|
|
# Verify SSHFP records. In case DNSSEC is used this skips the
|
|
|
|
# question on whether you trust the fingerprint or not.
|
2015-08-20 08:49:31 +02:00
|
|
|
VerifyHostKeyDNS=yes
|
2015-08-30 16:08:29 +02:00
|
|
|
|
|
|
|
# Multiple sessions over single connection
|
2015-08-20 08:37:43 +02:00
|
|
|
ControlMaster yes
|
2015-08-30 16:08:29 +02:00
|
|
|
# Path for the control socket
|
2015-08-20 08:37:43 +02:00
|
|
|
ControlPath /tmp/SSH_%u-%r.%h.%p
|
2015-08-30 16:08:29 +02:00
|
|
|
# Keep connection open in the background even after connection has been
|
|
|
|
# closed.
|
2015-08-20 08:37:43 +02:00
|
|
|
ControlPersist yes
|
2015-08-30 16:08:29 +02:00
|
|
|
|
2015-08-20 08:37:43 +02:00
|
|
|
ForwardAgent no
|
|
|
|
ForwardX11 no
|
2015-08-30 16:08:29 +02:00
|
|
|
|
2015-08-20 08:37:43 +02:00
|
|
|
IdentityFile ~/.ssh/Mikaela_Suomalainen
|
2015-08-30 16:08:29 +02:00
|
|
|
|
2015-08-20 08:37:43 +02:00
|
|
|
LogLevel VERBOSE
|
|
|
|
Protocol 2
|
2015-08-30 16:08:29 +02:00
|
|
|
|
|
|
|
# Always try public key authentication
|
2015-08-20 08:37:43 +02:00
|
|
|
PubkeyAuthentication yes
|
2015-08-30 16:08:29 +02:00
|
|
|
|
|
|
|
# "ping" the server every minute, if it doesn't reply in three
|
|
|
|
# "pings", disconnect.
|
2015-08-20 08:37:43 +02:00
|
|
|
ServerAliveInterval 60
|
|
|
|
|
|
|
|
Host hilla
|
|
|
|
HostName hilla.kapsi.fi
|
2015-08-23 05:53:48 +02:00
|
|
|
User mikaela
|
2015-08-20 08:37:43 +02:00
|
|
|
|
|
|
|
Host lakka
|
|
|
|
HostName lakka.kapsi.fi
|
2015-08-23 05:53:48 +02:00
|
|
|
User mikaela
|
2015-08-20 08:37:43 +02:00
|
|
|
|
|
|
|
Host synvaler
|
|
|
|
HostName synvaler.mikaela.info
|
|
|
|
AddressFamily inet6
|
2015-08-20 19:48:28 +02:00
|
|
|
User nemo
|
2015-08-23 05:53:48 +02:00
|
|
|
|
|
|
|
Host verdarik
|
|
|
|
HostName verdarik.mikaela.info
|
|
|
|
User mikaela
|
|
|
|
|
|
|
|
Host tezagm
|
|
|
|
HostName tezagm.mikaela.info
|
|
|
|
User mikaela
|