From cbb0d1dfb5a44a0296265c551a2d73594220c246 Mon Sep 17 00:00:00 2001 From: srw Date: Wed, 4 Sep 2024 04:49:42 +0000 Subject: [PATCH] Add Remote Access --- Remote-Access.md | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 Remote-Access.md diff --git a/Remote-Access.md b/Remote-Access.md new file mode 100644 index 0000000..ef58550 --- /dev/null +++ b/Remote-Access.md @@ -0,0 +1,39 @@ +# Vaasl Remote Access + +### Jumpboxes + +These hosts have external ssh and wireguard services + +``` +abernathy.ch2.vaasl.io +braxas.ch2.vaasl.io +butler.ny1.vaasl.io +``` + +### SSH Config + +User SSH Configuration `~/.ssh/config` + +``` +Host * + Protocol 2 + Compression yes + CheckHostIP yes + ForwardX11 no + ForwardAgent no + +Host vaasl-jump-abernathy + Hostname abernathy.ch2.vaasl.io + Port 12000 + +Host vaasl-jump-braxas + Hostname braxas.ch2.vaasl.io + Port 12000 + +Host vaasl-jump-butler + Hostname butler.ny1.vaasl.io + Port 12000 + +Host *.mgmt.*.vaasl.io + ProxyJump vaasl-jump-abernathy +```