From e15e591d40deb63668f25ee5f06acd24d35e1e49 Mon Sep 17 00:00:00 2001 From: Luca Bilke <luca@bil.ke> Date: Thu, 14 Nov 2024 13:28:27 +0100 Subject: [PATCH] ssh: improve performance --- common/.ssh/config | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 common/.ssh/config diff --git a/common/.ssh/config b/common/.ssh/config new file mode 100644 index 00000000..14ce68d1 --- /dev/null +++ b/common/.ssh/config @@ -0,0 +1,16 @@ +Host * + ServerAliveInterval 60 + ConnectTimeout 10 + AddKeysToAgent ask + EscapeChar ` + ControlMaster auto + ControlPersist 10m + ControlPath ${XDG_RUNTIME_DIR}/%C + +Match all + Include config_host + +# BEGIN ANSIBLE MANAGED BLOCK +Match all + Include config_tralios +# END ANSIBLE MANAGED BLOCK