From cc23ccb08036c2b4a951d0716ef230cf0881b187 Mon Sep 17 00:00:00 2001 From: ueli Date: Fri, 3 Mar 2023 14:32:19 +0100 Subject: [PATCH] =?UTF-8?q?=E2=80=9E.ssh/config=E2=80=9C=20hinzuf=C3=BCgen?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .ssh/config | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 .ssh/config diff --git a/.ssh/config b/.ssh/config new file mode 100644 index 0000000..5038bd6 --- /dev/null +++ b/.ssh/config @@ -0,0 +1,46 @@ +Host backup.lilo.ch + User root + ProxyCommand ssh -q -W 172.23.0.21:22 u.utf3.ch + ForwardAgent yes + AddressFamily inet + IdentityFile ~/.ssh/id_ed25519 + +Host minecraft.lilo.ch + User root + ProxyCommand ssh -q -W 172.23.0.22:22 u.utf3.ch + ForwardAgent yes + AddressFamily inet + +Host dev.lilo.ch + User root + ProxyCommand ssh -q -W 172.23.0.23:22 u.utf3.ch + ForwardAgent yes + AddressFamily inet + +Host h.utf3.ch + User ueli + ForwardAgent yes + +Host u.utf3.ch + User root + ForwardAgent yes + +Host co.lilo.ch + User root + ForwardAgent yes + +Host co2.lilo.ch + User root + ForwardAgent yes + +Host o1.lilo.ch + User ubuntu + ForwardAgent yes + +Host o2.lilo.ch + User ubuntu + ForwardAgent yes + +Host * + ServerAliveInterval 10 + ServerAliveCountMax 99 \ No newline at end of file