From f169896dcd0c71aa89f242e2c4055cf785cf8246 Mon Sep 17 00:00:00 2001
From: Luca Bilke <luca@bil.ke>
Date: Mon, 3 Mar 2025 12:02:06 +0100
Subject: [PATCH] ssh: disable persistance for overthewire.org

---
 common/.ssh/config | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/common/.ssh/config b/common/.ssh/config
index cb8db23a..279c6213 100644
--- a/common/.ssh/config
+++ b/common/.ssh/config
@@ -3,6 +3,13 @@ Host server155.tralios.de
     ControlPersist no
     ControlPath none
 
+Host *.labs.overthewire.org
+    User bandit0
+    ControlMaster no
+    ControlPersist no
+    ControlPath none
+
+
 Host *
     ServerAliveInterval 60
     ConnectTimeout 10