[Dev] build server

Luke Shumaker lukeshu at lukeshu.com
Sat Feb 10 18:44:59 GMT 2018


On Thu, 08 Feb 2018 19:25:04 -0500,
Luke Shumaker wrote:
> It is accessible on LibreVPN at the addresses 192.168.9.164 and
> [2001:1291:200:83ab:943c:c4fa:9c6:861f].  If you can't be bothered to
> join LibreVPN, proton.parabola.nu is a on LibreVPN; you may use it as
> a jump box.

I'm working on improving LibreVPN docs, but in the mean time:

 - LibreVPN is the 192.168.9.X/24 IPv4 net / the
   2001:1291:200:83ab:X:X:X:X/64 IPv6 network.

 - If you have an SSH key on proton.parabola.nu, you can just run this
   from proton:

	ssh -p1863 $USER at 192.168.9.164

 - Or, to save a step, from your local box you can (assuming you can
   `ssh proton.parabola.nu`):

	ssh -o ProxyCommand='ssh -W %h:%p proton.parabola.nu' -p1863 $USER at 192.168.9.164

   If you need extra flags to connect to proton, you'll need to add
   those to the ProxyCommand.

 - Or, to simiplify things, you can add this to your `~/.ssh/config`:

	# Simplify connecting to parabola.nu servers and beefcake
	Host *.parabola.nu 192.168.9.164
		Port 1863
		User YOUR-PARABOLA-USERNAME # if this is different than your local username

	# Use proton.parabola.nu as a jump box to get to LibreVPN
	Host 192.168.9.*
		ProxyCommand ssh -W %h:%p proton.parabola.nu

   Then, you can just

	ssh 192.168.9.164

-- 
Happy hacking,
~ Luke Shumaker



More information about the Dev mailing list