fix(heimdallr): disable systemd-resolved mDNS (conflicts with avahi/OTBR) #17
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "feat/heimdallr-fix-mdns"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Symptom: HA Thread panel shows "No border routers found"; Matter can't commission the Thread bulb.\n\nRoot cause: two mDNS responders on heimdallr — systemd-resolved (enabled by the shared networking module) and avahi-daemon (OTBR's client daemon) — both claim hostname
heimdallr. Avahi enters an infinite conflict loop (suffix counter climbs heimdallr-282 → -287+, never settles), so otbr-agent's_meshcop._udpservice never registers. HA discovers Thread border routers via mDNS meshcop → sees nothing.\n\nFix:services.resolved.settings.Resolve.MulticastDNS = false. Avahi remains the sole mDNS responder (OTBR needs it). Dry-build passes.