mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-05 06:27:37 +00:00
bade39ee47
include 3 upstream bugs related to large environments: - Fix bug loading moons.d/ files for federated root operation. - Fix compile problem with ZT_DEBUG on some versions of clang - Fix slow network startup bug related to loading of networks.d/ cache files improve daemon functionality: - improve rc.d dependencies by requiring devfs instead of netif - use daemon(8) to capture debug logging to syslog if > FreeBSD 11.1R and if compiled with debugging option - let rc.d script load if_tap if not already present - add reminder for users about sysctls to avoid race conditions at boot time Reviewed by: mat Approved by: jrm Differential Revision: https://reviews.freebsd.org/D15534
21 lines
538 B
Plaintext
21 lines
538 B
Plaintext
#################################
|
|
|
|
First start the zerotier service:
|
|
|
|
service zerotier start
|
|
|
|
To connect to a zerotier network:
|
|
|
|
zerotier-cli join <network>
|
|
|
|
If you are running other daemons or require firewall rules to depend on
|
|
zerotier interfaces being available at startup, you may need to enable
|
|
the following sysctl in /etc/sysctl.conf:
|
|
|
|
net.link.tap.up_on_open=1
|
|
|
|
This avoids a race condition where zerotier interfaces are created, but
|
|
not up, prior to firewalls and services trying to use them.
|
|
|
|
#################################
|