Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Make sure Broadcast is enabled on your ZeroTier network's settings.


Further Help from a ZeroTier User

The solution that worked reliably for me was to lower the metric for the ENTIRE ZeroTier Virtual Interface [not just one route, as suggested by others]. This resulted in multicast and broadcast routes being preferred on the ZeroTier network which resolved many "cannot see others in LAN" problems when running games over ZeroTier. The only downside is, that this will break broadcasts/multicasts on the physical network or other networks (except ARP and DHCP, which seemed to work just fine).

So apparently it's only possible to switch between interfaces and choose which one should be preferred. Therefore you should revert your changes when you're done - I found two ways to do this: Disable the zerotier service and start it up again. This seemed to "clear" the metrics and reset them to their default values, always preferring the physical wire. Other obvious solution is to manually set the metrics to it's previous value, using the same command.

The following are code examples on how to to this, designed for the Windows bash (.bat files). These scripts usually need to be run as Administrator - there are ways to automatically elevate bash scripts, see this link: https://stackoverflow.com/a/12264592

Code Block
@echo off >NUL
@SETLOCAL enableextensions enabledelayedexpansion
set "NetConID="
  wmic NIC where Description="ZeroTier One Virtual Port" ^
    list /format:textvaluelist.xsl>"%temp%\wmcnc.txt" 2>&1
  for /F "tokens=1* delims==" %%I in ('type "%temp%\wmcnc.txt"') do (
    if /i "%%I"=="NetConnectionID" set "NetConID=%%~J"
  )
del "%temp%\wmcnc.txt" 2>nul
netsh interface ipv4 set interface "!NetConID!" metric=1

This script would set the metric of the ZeroTier interface to the lowest allowed (20 or so) metric, which usually resolves "broadcasts/multicasts not getting send over ZeroTier" issues

Filter by label (Content by label)
showLabelsfalse
max5
spacescom.atlassian.confluence.content.render.xhtml.model.resource.identifiers.SpaceResourceIdentifier@a51
showSpacefalse
sortmodified
reversetrue
typepage
cqllabel in ( "windows" , "gaming" , "lan" , "mdns" ) and type = "page" and space = "SD"
labelswindows gaming mdns lan

...