From 021a05bf0ec2c853c34db29dda943b2900e933c5 Mon Sep 17 00:00:00 2001 From: Simon Cornet Date: Thu, 20 Jun 2024 10:57:29 +0200 Subject: [PATCH] [ssh] feat: use bastion.siempie.com as jumphost --- nix/home/ssh/ssh.nix | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/nix/home/ssh/ssh.nix b/nix/home/ssh/ssh.nix index beb9d3e..7540069 100644 --- a/nix/home/ssh/ssh.nix +++ b/nix/home/ssh/ssh.nix @@ -13,17 +13,11 @@ serverAliveInterval = 60; }; - # jumphost - "bastion" = { - hostname = "192.168.10.55"; - proxyJump = "do.siempie.com"; - }; - # siempie lab - "*.do.local" = { proxyJump = "bastion"; }; - "*.hackerboys.internal" = { proxyJump = "bastion"; }; - "*.siempie.internal" = { proxyJump = "bastion"; }; - "*.siempie.local" = { proxyJump = "bastion"; }; + "*.do.local" = { proxyJump = "bastion.siempie.com"; }; + "*.hackerboys.internal" = { proxyJump = "bastion.siempie.com"; }; + "*.siempie.internal" = { proxyJump = "bastion.siempie.com"; }; + "*.siempie.local" = { proxyJump = "bastion.siempie.com"; }; }; }; }