...
Enable the default (official) ZeroTier instance:
Code Block | ||
---|---|---|
| ||
[admin@mikrotik] > zerotier/enable zt1 |
Add a new network, specifying the network ID you created in the ZeroTier cloud console:
Code Block | ||
---|---|---|
| ||
[admin@mikrotik] zerotier/interface/add network=1d71939404912b40 instance=zt1 |
Verify ZeroTier configuration:
Code Block | ||
---|---|---|
| ||
[admin@MikroTik] > zerotier/interface/print Flags: R - RUNNING Columns: NAME, MAC-ADDRESS, NETWORK, NETWORK-NAME, STATUS # NAME MAC-ADDRESS NETWORK NETWORK-NAME STATUS 0 R zerotier1 42:AC:0D:0F:C6:F6 1d71939404912b40 modest_metcalfe OK |
Now you might need to allow connections from the ZeroTier interface to your router, and optionally, to your other LAN interfaces:
Code Block | ||
---|---|---|
| ||
[admin@mikrotik] /ip firewall filter> add action=accept chain=forward in-interface=zerotier1 place-before=0 [admin@mikrotik] /ip firewall filter> add action=accept chain=input in-interface=zerotier1 place-before=0 |
Code Block | ||
---|---|---|
| ||
[admin@MikroTik] > ip/address/print where interface~"zero"
Flags: D - DYNAMIC
Columns: ADDRESS, NETWORK, INTERFACE
# ADDRESS NETWORK INTERFACE
3 D 192.168.192.105/24 192.168.192.0 zerotier1
[admin@MikroTik] > ping 192.168.192.252 count=3
SEQ HOST SIZE TTL TIME STATUS
0 192.168.192.252 56 64 407us
1 192.168.192.252 56 64 452us
2 192.168.192.252 56 64 451us
sent=3 received=3 packet-loss=0% min-rtt=407us avg-rtt=436us max-rtt=452us |
Tip |
---|
You should specify routes to specific internal subnets in the ZeroTier cloud console, to make sure you can access those networks when connecting from other devices. |
...