summaryrefslogtreecommitdiff
path: root/accounts/gkleen@sif/ssh-hosts.nix
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2021-12-08 15:23:37 +0100
committerGregor Kleen <gkleen@yggdrasil.li>2021-12-08 15:23:37 +0100
commita2962229c6a81ac23a685d243fa43d83957b4fc4 (patch)
treeda76b91033b595d202ef76eee81d15adc1a0f1db /accounts/gkleen@sif/ssh-hosts.nix
parentf7bfa8f38cba7da1fb54bcf9e778b4dafeea967e (diff)
downloadnixos-a2962229c6a81ac23a685d243fa43d83957b4fc4.tar
nixos-a2962229c6a81ac23a685d243fa43d83957b4fc4.tar.gz
nixos-a2962229c6a81ac23a685d243fa43d83957b4fc4.tar.bz2
nixos-a2962229c6a81ac23a685d243fa43d83957b4fc4.tar.xz
nixos-a2962229c6a81ac23a685d243fa43d83957b4fc4.zip
gkleen@sif: systemd-based ssh socks proxy
Diffstat (limited to 'accounts/gkleen@sif/ssh-hosts.nix')
-rw-r--r--accounts/gkleen@sif/ssh-hosts.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/accounts/gkleen@sif/ssh-hosts.nix b/accounts/gkleen@sif/ssh-hosts.nix
index b1ac2a05..06b9ccaa 100644
--- a/accounts/gkleen@sif/ssh-hosts.nix
+++ b/accounts/gkleen@sif/ssh-hosts.nix
@@ -287,6 +287,24 @@
287 { hostname = "mathw0h.mathinst.loc"; 287 { hostname = "mathw0h.mathinst.loc";
288 proxyJump = "mathw0g"; 288 proxyJump = "mathw0g";
289 }; 289 };
290 "proxy.mathw0g" =
291 { hostname = "mathw0g.math.lmu.de";
292 extraOptions = {
293 ControlPath = "none";
294 ServerAliveCountMax = "3";
295 ServerAliveInterval = "1";
296 };
297 };
298 "proxy.mathw0h" =
299 { hostname = "mathw0h.mathinst.loc";
300 proxyJump = "proxy.mathw0g";
301 extraOptions = {
302 ControlPath = "none";
303 ExitOnForwardFailure = "yes";
304 ServerAliveCountMax = "3";
305 ServerAliveInterval = "1";
306 };
307 };
290 "vrt-kvm04" = 308 "vrt-kvm04" =
291 { hostname = "vrt-kvm04"; 309 { hostname = "vrt-kvm04";
292 proxyJump = "mathw0e"; 310 proxyJump = "mathw0e";