Difference between revisions of "Zero Tier One"
Line 2: | Line 2: | ||
Zero Tier One is an application which creates a virtual network. The virtual network allows users who are not on the same network to connect and work as if they were. The software can be installed on almost any machine and operating system, allowing anyone to to connect from almost anywhere on any device. You can install Zero Tier One [https://www.zerotier.com/download/ Here] | Zero Tier One is an application which creates a virtual network. The virtual network allows users who are not on the same network to connect and work as if they were. The software can be installed on almost any machine and operating system, allowing anyone to to connect from almost anywhere on any device. You can install Zero Tier One [https://www.zerotier.com/download/ Here] | ||
== How Do We Use It? == | ==How Do We Use It?== | ||
We use Zero Tier One to allow students that aren't in person to connect to a machine that is on the network, using remote desktop this allows them to use a computer as if they were in person. This has been a great tool for the class in a time when there's a lot of students that aren't in person. | We use Zero Tier One to allow students that aren't in person to connect to a machine that is on the network, using remote desktop this allows them to use a computer as if they were in person. This has been a great tool for the class in a time when there's a lot of students that aren't in person. | ||
== How to Install == | |||
You're going to go [https://www.zerotier.com/download/ here] find your operating system. Once you have found your operating system, and it works for almost every operating system and device, you will download. Once you've downloaded it you will then install it as you would any other application. | |||
== Installing for Linux (Debian based) == | |||
Installing for Linux is a little different. | |||
If you're going to trust an SSL to authenticate the site, you'll open a terminal and type | |||
<code>curl -s <nowiki>https://install.zerotier.com</nowiki> | sudo bash</code> | |||
But if you don't want to trust an SSL and you have a GPG installed then you're going to still open a terminal but you're going to type instead. | |||
<code>curl -s '<nowiki>https://raw.githubusercontent.com/zerotier/ZeroTierOne/master/doc/contact%40zerotier.com.gpg'</nowiki> | gpg --import && \ | |||
if z=$(curl -s '<nowiki>https://install.zerotier.com/'</nowiki> | gpg); then echo "$z" | sudo bash; fi</code> |
Revision as of 18:27, 16 April 2021
What is Zero Tier One?
Zero Tier One is an application which creates a virtual network. The virtual network allows users who are not on the same network to connect and work as if they were. The software can be installed on almost any machine and operating system, allowing anyone to to connect from almost anywhere on any device. You can install Zero Tier One Here
How Do We Use It?
We use Zero Tier One to allow students that aren't in person to connect to a machine that is on the network, using remote desktop this allows them to use a computer as if they were in person. This has been a great tool for the class in a time when there's a lot of students that aren't in person.
How to Install
You're going to go here find your operating system. Once you have found your operating system, and it works for almost every operating system and device, you will download. Once you've downloaded it you will then install it as you would any other application.
Installing for Linux (Debian based)
Installing for Linux is a little different.
If you're going to trust an SSL to authenticate the site, you'll open a terminal and type
curl -s https://install.zerotier.com | sudo bash
But if you don't want to trust an SSL and you have a GPG installed then you're going to still open a terminal but you're going to type instead.
curl -s 'https://raw.githubusercontent.com/zerotier/ZeroTierOne/master/doc/contact%40zerotier.com.gpg' | gpg --import && \
if z=$(curl -s 'https://install.zerotier.com/' | gpg); then echo "$z" | sudo bash; fi