1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
Host *
# SSH private key to access the remote server.
IdentityFile /etc/sidedoor/id_rsa
# SSH host key of the remote server.
UserKnownHostsFile /etc/sidedoor/known_hosts
# If tunneled traffic is encrypted (e.g., SSH),
# it probably does not compress well.
Compression no
# Disable password authentication.
BatchMode yes
# Terminate if unable to set up port forwarding.
ExitOnForwardFailure yes
# Enable SSH keepalives.
ServerAliveInterval 30
# Disconnect after unresponsive SSH keepalives.
ServerAliveCountMax 2
|