Convert Figma logo to code with AI

zerotier logoZeroTierOne

A Smart Ethernet Switch for Earth

14,173
1,652
14,173
280

Top Related Projects

18,532

The easiest, most secure way to use WireGuard and 2FA.

Netmaker makes networks with WireGuard. Netmaker automates fast, secure, and distributed virtual networks.

14,290

A scalable overlay networking tool with a focus on performance, simplicity and security

Mirror only. Official repository is at https://git.zx2c4.com/wireguard-go

6,175

Peer-to-peer VPN

10,618

OpenVPN is an open source VPN daemon

Quick Overview

ZeroTierOne is an open-source, cross-platform software-defined networking tool that creates secure, distributed networks. It allows users to connect devices and build virtual networks as if they were on a local area network, regardless of their physical location or network configuration.

Pros

  • Easy to set up and use, with minimal configuration required
  • Supports a wide range of platforms, including Windows, macOS, Linux, iOS, and Android
  • Provides end-to-end encryption for secure communication
  • Offers both free and paid plans, with the free plan supporting up to 100 devices

Cons

  • May have performance limitations compared to traditional VPNs for some use cases
  • Requires installation of software on all devices, which may not be feasible in some enterprise environments
  • Limited documentation and community support compared to more established networking solutions
  • Some users report occasional connectivity issues or difficulties with NAT traversal

Getting Started

To get started with ZeroTierOne:

  1. Download and install ZeroTierOne from the official website: https://www.zerotier.com/download/
  2. Run the installer and follow the prompts to complete the installation
  3. Join a network by running the following command in a terminal or command prompt:
sudo zerotier-cli join <network-id>

Replace <network-id> with the ID of the network you want to join.

  1. Accept the new member on the ZeroTier Central web interface (if you're the network admin)
  2. Verify the connection by running:
sudo zerotier-cli status

You should now be connected to the ZeroTier network and able to communicate with other devices on the same network.

Competitor Comparisons

18,532

The easiest, most secure way to use WireGuard and 2FA.

Pros of Tailscale

  • Easier setup and configuration, especially for non-technical users
  • Built-in support for single sign-on (SSO) and identity providers
  • More user-friendly interface and management console

Cons of Tailscale

  • Less flexible networking options compared to ZeroTierOne
  • Closed-source server component, limiting self-hosting capabilities
  • Potentially higher costs for larger deployments or advanced features

Code Comparison

ZeroTierOne configuration example:

{
  "physical": {
    "eth0": {
      "type": "ethernet",
      "dhcp": true
    }
  },
  "virtual": {
    "zt0": {
      "type": "zerotier",
      "nwid": "8056c2e21c000001"
    }
  }
}

Tailscale configuration example:

acls:
  - action: accept
    users: ["*"]
    ports: ["*:*"]

Both projects aim to simplify secure networking, but they differ in their approach. ZeroTierOne offers more advanced networking features and greater flexibility, while Tailscale focuses on ease of use and integration with existing identity systems. The code examples demonstrate the configuration complexity difference, with ZeroTierOne requiring more detailed network setup and Tailscale using a simpler ACL-based approach.

Netmaker makes networks with WireGuard. Netmaker automates fast, secure, and distributed virtual networks.

Pros of Netmaker

  • Fully open-source and self-hosted solution, offering greater control and customization
  • Built-in support for multi-cloud and hybrid-cloud environments
  • Advanced routing capabilities, including split tunneling and custom DNS

Cons of Netmaker

  • Steeper learning curve and more complex setup compared to ZeroTierOne
  • Smaller community and less extensive documentation
  • May require more server resources for larger deployments

Code Comparison

ZeroTierOne (C++):

void Node::processVirtualNetworkFrame(const SharedPtr<Network> &network,const MAC &fromMac,const MAC &toMac,unsigned int etherType,const void *data,unsigned int len)
{
    // ... (frame processing logic)
}

Netmaker (Go):

func (network *Network) ProcessPacket(packet *packet.Packet) error {
    // ... (packet processing logic)
}

Both projects handle network packet processing, but ZeroTierOne uses C++ with more low-level control, while Netmaker employs Go for improved readability and safety. ZeroTierOne's implementation appears more detailed, potentially offering finer-grained control over network operations.

14,290

A scalable overlay networking tool with a focus on performance, simplicity and security

Pros of Nebula

  • Designed for security-first approach with end-to-end encryption
  • Highly scalable, capable of handling large networks with thousands of nodes
  • Flexible configuration options for advanced networking scenarios

Cons of Nebula

  • Steeper learning curve compared to ZeroTierOne
  • Less user-friendly for non-technical users
  • Lacks some features like easy NAT traversal found in ZeroTierOne

Code Comparison

ZeroTierOne configuration example:

{
  "settings": {
    "allowTcpFallbackRelay": true,
    "portMappingEnabled": true
  }
}

Nebula configuration example:

pki:
  ca: /etc/nebula/ca.crt
  cert: /etc/nebula/host.crt
  key: /etc/nebula/host.key
static_host_map:
  "10.0.0.1": ["100.64.22.11:4242"]
lighthouse:
  am_lighthouse: false
  interval: 60

The code snippets highlight the difference in configuration approaches. ZeroTierOne uses a simpler JSON format, while Nebula employs a more detailed YAML configuration, reflecting its focus on advanced networking capabilities and security features.

Mirror only. Official repository is at https://git.zx2c4.com/wireguard-go

Pros of wireguard-go

  • Simpler protocol design, leading to easier auditing and potentially fewer security vulnerabilities
  • Faster connection establishment and lower latency
  • Smaller codebase, making it easier to maintain and integrate into other projects

Cons of wireguard-go

  • Less feature-rich compared to ZeroTierOne, lacking advanced networking capabilities
  • Requires manual configuration and key management, unlike ZeroTierOne's automated approach
  • Limited cross-platform support compared to ZeroTierOne's wide range of supported devices

Code Comparison

ZeroTierOne (C++):

void Node::processVirtualNetworkFrame(...)
{
    // Complex routing and packet handling logic
    // ...
}

wireguard-go (Go):

func (device *Device) RoutineHandshake() {
    // Simpler handshake and key exchange logic
    // ...
}

The code snippets illustrate the difference in complexity between the two projects. ZeroTierOne's implementation involves more intricate networking logic, while wireguard-go focuses on a streamlined approach to secure communication.

6,175

Peer-to-peer VPN

Pros of n2n

  • Fully decentralized peer-to-peer VPN, not relying on central servers
  • Open-source with a strong focus on privacy and security
  • Supports NAT traversal and encryption out of the box

Cons of n2n

  • Less user-friendly setup compared to ZeroTierOne
  • Smaller community and fewer enterprise features
  • May require more manual configuration for complex networks

Code Comparison

n2n:

int main(int argc, char * argv[]) {
    n2n_edge_t eee;
    tuntap_dev tuntap;
    // ... (initialization code)
    edge_init(&eee);
}

ZeroTierOne:

int main(int argc, char **argv) {
    std::string homeDir;
    std::string configFilePath;
    // ... (initialization code)
    OneService *service = OneService::newInstance(homeDir.c_str(),configFilePath.c_str());
}

Both projects use C/C++ for their core implementations. n2n focuses on a more lightweight, edge-centric approach, while ZeroTierOne has a more comprehensive service-oriented structure. The code snippets show the entry points for each project, highlighting their different initialization processes.

10,618

OpenVPN is an open source VPN daemon

Pros of OpenVPN

  • Widely adopted and well-established, with extensive documentation and community support
  • Highly configurable, offering granular control over network settings
  • Compatible with a wide range of devices and operating systems

Cons of OpenVPN

  • Can be complex to set up and configure, especially for beginners
  • Requires manual port forwarding and firewall configuration in many cases
  • May have slower performance compared to newer VPN protocols

Code Comparison

OpenVPN configuration example:

port 1194
proto udp
dev tun
ca ca.crt
cert server.crt
key server.key
dh dh2048.pem

ZeroTierOne configuration example:

{
  "settings": {
    "allowManagementFrom": ["127.0.0.1/8"],
    "authTokens": [],
    "interfacePrefixBlacklist": ["zt"]
  }
}

While OpenVPN uses a more traditional configuration file format, ZeroTierOne employs a JSON-based configuration. OpenVPN's configuration tends to be more verbose and detailed, reflecting its high level of customization. ZeroTierOne's configuration is generally simpler, focusing on key settings for its peer-to-peer networking approach.

Convert Figma logo designs to code with AI

Visual Copilot

Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.

Try Visual Copilot

README

ZeroTier - Global Area Networking

This document is written for a software developer audience. For information on using ZeroTier, see the: Website, Documentation Site, and Discussion Forum.

ZeroTier is a smart programmable Ethernet switch for planet Earth. It allows all networked devices, VMs, containers, and applications to communicate as if they all reside in the same physical data center or cloud region.

This is accomplished by combining a cryptographically addressed and secure peer to peer network (termed VL1) with an Ethernet emulation layer somewhat similar to VXLAN (termed VL2). Our VL2 Ethernet virtualization layer includes advanced enterprise SDN features like fine grained access control rules for network micro-segmentation and security monitoring.

All ZeroTier traffic is encrypted end-to-end using secret keys that only you control. Most traffic flows peer to peer, though we offer free (but slow) relaying for users who cannot establish peer to peer connections.

The goals and design principles of ZeroTier are inspired by among other things the original Google BeyondCorp paper and the Jericho Forum with its notion of "deperimeterization."

Visit ZeroTier's site for more information and pre-built binary packages. Apps for Android and iOS are available for free in the Google Play and Apple app stores.

ZeroTier is licensed under the BSL version 1.1. See LICENSE.txt and the ZeroTier pricing page for details. ZeroTier is free to use internally in businesses and academic institutions and for non-commercial purposes. Certain types of commercial use such as building closed-source apps and devices based on ZeroTier or offering ZeroTier network controllers and network management as a SaaS service require a commercial license.

A small amount of third party code is also included in ZeroTier and is not subject to our BSL license. See AUTHORS.md for a list of third party code, where it is included, and the licenses that apply to it. All of the third party code in ZeroTier is liberally licensed (MIT, BSD, Apache, public domain, etc.).

Getting Started

Everything in the ZeroTier world is controlled by two types of identifier: 40-bit/10-digit ZeroTier addresses and 64-bit/16-digit network IDs. These identifiers are easily distinguished by their length. A ZeroTier address identifies a node or "device" (laptop, phone, server, VM, app, etc.) while a network ID identifies a virtual Ethernet network that can be joined by devices.

ZeroTier addresses can be thought of as port numbers on an enormous planet-wide enterprise Ethernet smart switch supporting VLANs. Network IDs are VLAN IDs to which these ports may be assigned. A single port can be assigned to more than one VLAN.

A ZeroTier address looks like 8056c2e21c and a network ID looks like 8056c2e21c000001. Network IDs are composed of the ZeroTier address of that network's primary controller and an arbitrary 24-bit ID that identifies the network on this controller. Network controllers are roughly analogous to SDN controllers in SDN protocols like OpenFlow, though as with the analogy between VXLAN and VL2 this should not be read to imply that the protocols or design are the same. You can use our convenient and inexpensive SaaS hosted controllers at my.zerotier.com or run your own controller if you don't mind messing around with JSON configuration files or writing scripts to do so.

Project Layout

The base path contains the ZeroTier One service main entry point (one.cpp), self test code, makefiles, etc.

  • artwork/: icons, logos, etc.
  • attic/: old stuff and experimental code that we want to keep around for reference.
  • controller/: the reference network controller implementation, which is built and included by default on desktop and server build targets.
  • debian/: files for building Debian packages on Linux.
  • doc/: manual pages and other documentation.
  • ext/: third party libraries, binaries that we ship for convenience on some platforms (Mac and Windows), and installation support files.
  • include/: include files for the ZeroTier core.
  • java/: a JNI wrapper used with our Android mobile app. (The whole Android app is not open source but may be made so in the future.)
  • node/: the ZeroTier virtual Ethernet switch core, which is designed to be entirely separate from the rest of the code and able to be built as a stand-alone OS-independent library. Note to developers: do not use C++11 features in here, since we want this to build on old embedded platforms that lack C++11 support. C++11 can be used elsewhere.
  • osdep/: code to support and integrate with OSes, including platform-specific stuff only built for certain targets.
  • rule-compiler/: JavaScript rules language compiler for defining network-level rules.
  • service/: the ZeroTier One service, which wraps the ZeroTier core and provides VPN-like connectivity to virtual networks for desktops, laptops, servers, VMs, and containers.
  • windows/: Visual Studio solution files, Windows service code, and the Windows task bar app UI.
  • zeroidc/: OIDC implementation used by ZeroTier service to log into SSO-enabled networks. (This part is written in Rust, and more Rust will be appearing in this repository in the future.)

Contributing

Please do pull requests off of the dev branch.

Releases are done by merging dev into main and then tagging and doing builds.

Build and Platform Notes

To build on Mac and Linux just type make. On FreeBSD and OpenBSD gmake (GNU make) is required and can be installed from packages or ports. For Windows there is a Visual Studio solution in windows/.

  • Mac
    • Xcode command line tools for macOS 10.13 or newer are required.
    • Rust for x86_64 and ARM64 targets if SSO is enabled in the build.
  • Linux
    • The minimum compiler versions required are GCC/G++ 8.x or CLANG/CLANG++ 5.x.
    • Linux makefiles automatically detect and prefer clang/clang++ if present as it produces smaller and slightly faster binaries in most cases. You can override by supplying CC and CXX variables on the make command line.
    • Rust for x86_64 and ARM64 targets if SSO is enabled in the build.
  • Windows
    • Visual Studio 2022 on Windows 10 or newer.
    • Rust for x86_64 and ARM64 targets if SSO is enabled in the build.
  • FreeBSD
    • GNU make is required. Type gmake to build.
    • binutils is required. Type pkg install binutils to install.
    • Rust for x86_64 and ARM64 targets if SSO is enabled in the build.
  • OpenBSD
    • There is a limit of four network memberships on OpenBSD as there are only four tap devices (/dev/tap0 through /dev/tap3).
    • GNU make is required. Type gmake to build.
    • Rust for x86_64 and ARM64 targets if SSO is enabled in the build.

Typing make selftest will build a zerotier-selftest binary which unit tests various internals and reports on a few aspects of the build environment. It's a good idea to try this on novel platforms or architectures.

Running

Running zerotier-one with -h option will show help.

On Linux and BSD, if you built from source, you can start the service with:

sudo ./zerotier-one -d

On most distributions, macOS, and Windows, the installer will start the service and set it up to start on boot.

A home folder for your system will automatically be created.

The service is controlled via the JSON API, which by default is available at 127.0.0.1:9993. It also listens on 0.0.0.0:9993 which is only usable if allowManagementFrom is properly configured in local.conf. We include a zerotier-cli command line utility to make API calls for standard things like joining and leaving networks. The authtoken.secret file in the home folder contains the secret token for accessing this API. See service/README.md for API documentation.

Here's where home folders live (by default) on each OS:

  • Linux: /var/lib/zerotier-one
  • FreeBSD / OpenBSD: /var/db/zerotier-one
  • Mac: /Library/Application Support/ZeroTier/One
  • Windows: \ProgramData\ZeroTier\One (That's the default. The base 'shared app data' folder might be different if Windows is installed with a non-standard drive letter assignment or layout.)

Basic Troubleshooting

For most users, it just works.

If you are running a local system firewall, we recommend adding a rules permitting zerotier. If you installed binaries for Windows this should be done automatically. Other platforms might require manual editing of local firewall rules depending on your configuration.

See the documentation site for more information.

The Mac firewall can be found under "Security" in System Preferences. Linux has a variety of firewall configuration systems and tools.

On CentOS check /etc/sysconfig/iptables for IPTables rules. For other distributions consult your distribution's documentation. You'll also have to check the UIs or documentation for commercial third party firewall applications like Little Snitch (Mac), McAfee Firewall Enterprise (Windows), etc. if you are running any of those. Some corporate environments might have centrally managed firewall software, so you might also have to contact IT.

ZeroTier One peers will automatically locate each other and communicate directly over a local wired LAN if UDP port 9993 inbound is open. If that port is filtered, they won't be able to see each others' LAN announcement packets. If you're experiencing poor performance between devices on the same physical network, check their firewall settings. Without LAN auto-location peers must attempt "loopback" NAT traversal, which sometimes fails and in any case requires that every packet traverse your external router twice.

Users behind certain types of firewalls and "symmetric" NAT devices may not be able to connect to external peers directly at all. ZeroTier has limited support for port prediction and will attempt to traverse symmetric NATs, but this doesn't always work. If P2P connectivity fails you'll be bouncing UDP packets off our relay servers resulting in slower performance. Some NAT router(s) have a configurable NAT mode, and setting this to "full cone" will eliminate this problem. If you do this you may also see a magical improvement for things like VoIP phones, Skype, BitTorrent, WebRTC, certain games, etc., since all of these use NAT traversal techniques similar to ours.

If a firewall between you and the Internet blocks ZeroTier's UDP traffic, you will fall back to last-resort TCP tunneling to rootservers over port 443 (https impersonation). This will work almost anywhere but is very slow compared to UDP or direct peer to peer connectivity.

Additional help can be found in our knowledge base.

Prometheus Metrics

Prometheus Metrics are available at the /metrics API endpoint. This endpoint is protected by an API key stored in metricstoken.secret to prevent unwanted information leakage. Information that could be gleaned from the metrics include joined networks and peers your instance is talking to.

Access control is via the ZeroTier control interface itself and metricstoken.secret. This can be sent as a bearer auth token, via the X-ZT1-Auth HTTP header field, or appended to the URL as ?auth=<token>. You can see the current metrics via cURL with the following command:

// Linux
curl -H "X-ZT1-Auth: $(sudo cat /var/lib/zerotier-one/metricstoken.secret)" http://localhost:9993/metrics

// macOS
curl -H "X-ZT1-Auth: $(sudo cat /Library/Application\ Support/ZeroTier/One/metricstoken.secret)" http://localhost:9993/metrics

// Windows PowerShell (Admin)
Invoke-RestMethod -Headers @{'X-ZT1-Auth' = "$(Get-Content C:\ProgramData\ZeroTier\One\metricstoken.secret)"; } -Uri http://localhost:9993/metrics

To configure a scrape job in Prometheus on the machine ZeroTier is running on, add this to your Prometheus scrape_config:

- job_name: zerotier-one
  honor_labels: true
  scrape_interval: 15s
  metrics_path: /metrics
  static_configs:
  - targets:
    - 127.0.0.1:9993
    labels:
      group: zerotier-one
      node_id: $YOUR_10_CHARACTER_NODE_ID
  authorization:
    credentials: $YOUR_METRICS_TOKEN_SECRET

If neither of these methods are desirable, it is probably possible to distribute metrics via Prometheus Proxy or some other tool. Note: We have not tested this internally, but will probably work with the correct configuration.

Metrics are also available on disk in ZeroTier's working directory:

// Linux /var/lib/zerotier-one/metrics.prom

// macOS /Library/Application\ Support/ZeroTier/One/metrics.prom

//Windows C:\ProgramData\ZeroTier\One\metrics.prom

Available Metrics

Metric NameLabelsMetric TypeDescription
zt_packetpacket_type, directionCounterZeroTier packet type counts
zt_packet_errorerror_type, directionCounterZeroTier packet errors
zt_dataprotocol, directionCounternumber of bytes ZeroTier has transmitted or received
zt_num_networksGaugenumber of networks this instance is joined to
zt_network_multicast_groups_subscribednetwork_idGaugenumber of multicast groups networks are subscribed to
zt_network_packetsnetwork_id, directionCounternumber of incoming/outgoing packets per network
zt_peer_latencynode_idHistogrampeer latency (ms)
zt_peer_path_countnode_id, statusGaugenumber of paths to peer
zt_peer_packetsnode_id, directionCounternumber of packets to/from a peer
zt_peer_packet_errorsnode_idCounternumber of incoming packet errors from a peer

If there are other metrics you'd like to see tracked, ask us in an Issue or send us a Pull Request!

HTTP / App server

There is a static http file server suitable for hosting Single Page Apps at http://localhost:9993/app/

Use zerotier-cli info -j to find your zerotier-one service's homeDir

cd $ZT_HOME
sudo mkdir -p app/app1
sudo mkdir -p app/appB
echo '<html><meta charset=utf-8><title>appA</title><body><h1>hello world A' | sudo tee app/appA/index.html 
echo '<html><meta charset=utf-8><title>app2</title><body><h1>hello world 2' | sudo tee app/app2/index.html 
curl -sL http://localhost:9993/app/appA http://localhost:9993/app/app2 

Then visit http://localhost:9993/app/app1/ and http://localhost:9993/app/appB/

Requests to paths don't exist return the app root index.html, as is customary for SPAs. If you want, you can write some javascript that talks to the service or controller api.