Difference between revisions of "Network/VPN"

From Makers Local 256
Jump to: navigation, search
(Making a page the vpn info)
 
(update to indicate the current status)
 
(13 intermediate revisions by 2 users not shown)
Line 1: Line 1:
== VPN Info ==
+
We no longer support a traditional VPN. SSH access for those that need it is the way to go.
* We use [http://openvpn.net/ OpenVPN]
+
* All member have the option to use the vpn.
+
  
== VPN Access ==
+
== Poor Man's VPN ==
=== Acquiring ===
+
You can use ssh to log into the newvpn box:
# Request VPN account from networking guys
+
 
#* This will need to be done in person, or over secure communications
+
<code>ssh hfuller@shop.makerslocal.org</code>
# You will create keys and a config file.  These are used to access the vpn.
+
 
 +
From there, you could ssh to other resources at the shop, or do whatever else you can do from the command line.
 +
 
 +
You can also use ssh's -L option to forward ports on your local machine to ports on the Makers network, if that's your thing:
 +
 
 +
<code>ssh -L 2222:cascade:22 tylercrumpton@shop.makerslocal.org</code>
 +
 
 +
If I were Tyler, this example would expose port 22 on [[CasCADE]] as port 2222 on my local computer. See <code>man ssh</code> for more help with this.
 +
 
 +
Finally, [https://mosh.mit.edu/ mosh] is also available. As you might guess, you can do this:
 +
 
 +
<code>mosh hfuller@shop.makerslocal.org</code>

Latest revision as of 11:25, 24 October 2022

We no longer support a traditional VPN. SSH access for those that need it is the way to go.

Poor Man's VPN

You can use ssh to log into the newvpn box:

ssh hfuller@shop.makerslocal.org

From there, you could ssh to other resources at the shop, or do whatever else you can do from the command line.

You can also use ssh's -L option to forward ports on your local machine to ports on the Makers network, if that's your thing:

ssh -L 2222:cascade:22 tylercrumpton@shop.makerslocal.org

If I were Tyler, this example would expose port 22 on CasCADE as port 2222 on my local computer. See man ssh for more help with this.

Finally, mosh is also available. As you might guess, you can do this:

mosh hfuller@shop.makerslocal.org