62 lines
1.5 KiB
Plaintext
Raw Normal View History

2015-08-20 09:37:43 +03: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 17:08:29 +03:00
# Path for the control socket
2015-08-20 09:37:43 +03:00
ControlPath /tmp/SSH_%u-%r.%h.%p
2015-08-30 17:17:12 +03:00
# Multiple sessions over single connection
ControlMaster yes
2015-08-30 17:08:29 +03:00
# Keep connection open in the background even after connection has been
# closed.
2015-08-20 09:37:43 +03:00
ControlPersist yes
2015-08-30 17:08:29 +03:00
2015-08-20 09:37:43 +03:00
ForwardAgent no
ForwardX11 no
2015-08-30 17:08:29 +03:00
2015-08-30 17:17:12 +03: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
# SSH key to use
2015-08-20 09:37:43 +03:00
IdentityFile ~/.ssh/Mikaela_Suomalainen
2015-08-30 17:08:29 +03:00
2015-08-20 09:37:43 +03:00
LogLevel VERBOSE
Protocol 2
2015-08-30 17:08:29 +03:00
# Always try public key authentication
2015-08-20 09:37:43 +03:00
PubkeyAuthentication yes
2015-08-30 17:08:29 +03:00
2015-09-01 15:54:05 +03:00
# If the server doesn't reply in "three" pings, connection is dead.
# Defaults to 3 anyway, but I add it here for clearity and
# in case it decides to change in the future.
ServerAliveCountMax 3
# "ping" the server every minute.
2015-08-20 09:37:43 +03:00
ServerAliveInterval 60
2015-08-30 17:17:12 +03:00
# Verify SSHFP records. In case DNSSEC is used this skips the
# question on whether you trust the fingerprint or not.
VerifyHostKeyDNS=yes
2015-08-20 09:37:43 +03:00
Host hilla
HostName hilla.kapsi.fi
2015-08-23 06:53:48 +03:00
User mikaela
2015-08-20 09:37:43 +03:00
Host lakka
HostName lakka.kapsi.fi
2015-08-23 06:53:48 +03:00
User mikaela
2015-08-20 09:37:43 +03:00
Host synvaler
AddressFamily inet6
2015-08-30 17:17:12 +03:00
HostName synvaler.mikaela.info
2015-08-20 20:48:28 +03:00
User nemo
2015-08-23 06:53:48 +03:00
Host tezagm
HostName tezagm.mikaela.info
User mikaela
2015-08-30 17:17:12 +03:00
Host verdarik
HostName verdarik.mikaela.info
User mikaela