[ssh] feat: added bastion hosts

This commit is contained in:
Simon Cornet 2024-06-16 10:22:35 +02:00
parent 8e7699f31b
commit 84f2cd260c

View File

@ -13,11 +13,17 @@
serverAliveInterval = 60; serverAliveInterval = 60;
}; };
# jumphost
"bastion" = {
hostname = "192.168.10.55";
proxyJump = "do.siempie.com"
};
# siempie lab # siempie lab
"*.do.local" = { proxyJump = "siempie.com"; }; "*.do.local" = { proxyJump = "bastion"; };
"*.hackerboys.internal" = { proxyJump = "siempie.com"; }; "*.hackerboys.internal" = { proxyJump = "bastion"; };
"*.siempie.internal" = { proxyJump = "siempie.com"; }; "*.siempie.internal" = { proxyJump = "bastion"; };
"*.siempie.local" = { proxyJump = "siempie.com"; }; "*.siempie.local" = { proxyJump = "bastion"; };
}; };
}; };
} }