From 1527a2b6ac413e3af53975d31dd63325cec613b1 Mon Sep 17 00:00:00 2001 From: Adar Nimrod <nimrod@shore.co.il> Date: Sat, 27 Jan 2024 13:32:32 +0200 Subject: [PATCH] SSH config: Reduce the keep alive interval. With HAProxy I'm getting disconnections. --- .ssh/config.d/10_global | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ssh/config.d/10_global b/.ssh/config.d/10_global index d50406a..e1bee5a 100644 --- a/.ssh/config.d/10_global +++ b/.ssh/config.d/10_global @@ -3,7 +3,7 @@ Compression yes ControlMaster auto ControlPath ~/.ssh/cm_%C.sock ControlPersist 3m -ServerAliveInterval 30 +ServerAliveInterval 15 IdentitiesOnly yes ForwardAgent no HashKnownHosts yes -- GitLab