Skip to content

Commit

Permalink
Merge pull request #173 from pythian/rel/oratk-43
Browse files Browse the repository at this point in the history
Ensure that the sshd parameter ServerAliveInterval is set to avoid connection timeout issues
  • Loading branch information
mfielding authored Jan 27, 2025
2 parents 985d830 + 3762194 commit 546851d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install-oracle.sh
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ INSTANCE_HOSTNAME_PARAM="^[a-z0-9]+$"
INSTANCE_SSH_KEY="${INSTANCE_SSH_KEY:-~/.ssh/id_rsa}"
INSTANCE_SSH_KEY_PARAM="^.+$"

INSTANCE_SSH_EXTRA_ARGS="${INSTANCE_SSH_EXTRA_ARGS:-'-o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o IdentityAgent=no'}"
INSTANCE_SSH_EXTRA_ARGS="${INSTANCE_SSH_EXTRA_ARGS:-'-o ServerAliveInterval=60 -o ServerAliveCountMax=3 -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o IdentityAgent=no'}"
INSTANCE_SSH_EXTRA_ARGS_PARAM="^/.+$"

NTP_PREF="${NTP_PREF}"
Expand Down

0 comments on commit 546851d

Please sign in to comment.