NVIDIA / NVIDIA/Personal-AI-Router
Cluster peer stuck offline when paired over non-multicast link (Tailscale / VPN) — mDNS does not traverse tailscale0
@ckelseynv arbeitet bereits daran.
Seit 18.9.2026.
- Vorherrschende Sprache
- Go
- Sterne
- 1.4k
- Forks
- 250
- Ø Merge
- 23 Std. 27 Min.
- Gemergte PRs (30 T.)
- 1
Beschreibung
Cluster member stuck "offline" when paired over a non-multicast link (Tailscale / VPN)
Summary
After a successful PIN pairing between two nodes connected only via a non-multicast
link (Tailscale, ZeroTier, Hamachi, corporate VPN), the peer is permanently shown
as "offline" in the Overview tab and members.json lastSeen stays null,
even though every cluster TCP port (14318, 14319, 14321) is reachable both ways
and the broker log shows nvpair-ui-broker and nvpair-cluster-manager running.
Reproduction
- Two machines on the same Tailscale network (e.g.
100.100.108.73and
100.121.35.74), neither on the same LAN. - Settings → Cluster → Add node → invite by IP (Tailscale IP) → accept PIN.
Pairing completes; both members showstate: "member". - Engine-manager logs repeat forever:
remote engine status for <peer-uuid> unavailable: -32000: node <peer-uuid> is not a discovered ec peer. members.jsonfor both members showslastSeen: null, even after minutes.- The UI Overview tab never reports the peer as online.
Root cause
Presence / "online" status is driven by the mDNS discovery layer
(nvpair-node-scanner listening for _nvpair-node._tcp announcements), not by
the cluster-manager's roster probe. Multicast DNS (224.0.0.251) does not
traverse Tailscale's userspace WireGuard tunnels — both nodes send mDNS queries
on tailscale0 (mdns send: ... iface=tailscale0 ip=100.100.108.73) but no
peers' announcements ever arrive, so the peer never enters the discovery store.
Once absent from discovery, nvpair-engine-manager rejects every dial with
-32000: not a discovered ec peer, and nvpair-cluster-manager's lastSeen
timestamp is never updated.
Workaround that works today
Seed configs/manual-nodes.json (Electron-side persistence in
desktop/src/electron/service-bridge/manual-nodes-store.ts) and restart the app.
The supervisor's replayManualNodes() re-adds the entry via node/add over the
broker; nvpair-manual-nodes probes the peer directly over Tailscale every
~10 s, emits node/discovered, the broker merges it into the discovery
snapshot, and engine-manager stops rejecting the dial.
[
{
"id": "dabeast",
"address": "100.121.35.74",
"name": "dabeast"
}
]
After app restart, logs confirm:
[nvpair-manual-nodes] INFO manual node state changed node_id=dabeast addr=100.121.35.74 ollama_up=true node_info_up=true models=13 gpus=2discovery:nodes-changedcarries the peer with full model inventory- Overview tab flips the peer to online
Suggested fixes (any one would address the root cause)
- Document the workaround. Surface manual-node entry in the desktop UI
(currentlySettings → Cluster → Add nodedoes PIN-pairing only — see
desktop/src/ui/components/AddNodeModal.tsx— there is no manual-node
registration UI). - Treat manual-nodes entries as authoritative for presence. When a peer
was paired by IP and not seen via mDNS, fall back tonvpair-manual-nodes
status for heartbeat /lastSeenupdates. - Add a Tailscale-aware discovery path. Either (a) a Tailscale MagicDNS /
unicast DNS-SD fallback when mDNS browse times out, or (b) a peer relay
over the cluster's existing mTLS channel so each node advertises its
cluster peers to the others. - Avoid the crash-on-add churn. Adding a manual node today restarts
nvpair-cluster-manager; combined with the worker's in-memory state loss,
this makes the pairing flow itself brittle.
Logs
14:23:05 [nvpair-manual-nodes] INFO log level changed level=debug
14:39:57 [nvpair-manual-nodes] INFO using stdio transport
14:40:30 [nvpair-ui-broker] ERROR nvpair-errors crashed; service-error pipeline
unavailable until it restarts attempt=3
14:40:32 [nvpair-ui-broker] WARN supervisor: worker exited unexpectedly
worker=cluster-manager attempt=3
14:40:42 [nvpair-engine-manager] WARN remote engine status for
18e94d12-e71f-42c9-8c07-355f68bb2fb8 unavailable: -32000: node
18e94d12-e71f-42c9-8c07-355f68bb2fb8 is not a discovered ec peer
(Repeats every ~20 s. Discovery nodes-changed lists only linuxbeast.)
Environment
- nvpair 0.1.1 (pacman build from
release/0.1.1/linux/NVPAIR-Setup-0.1.1-x64.pacman) - Linux 7.2.5-3-omarchy, kernel 7.2.5-3-omarchy
- Tailscale 100.x on both nodes, direct peer-to-peer connection (
active; direct) - 13 models on peer, 2 GPUs
Beitragsleitfaden
Erste Schritte
- Lies das ganze Issue und danach den Beitragsleitfaden des Projekts.
- Schreib ins Issue, dass du es übernimmst — das erspart doppelte Arbeit.
- Forke das Repository und arbeite in einem Branch.
- Öffne einen Pull Request, der die Issue-Nummer nennt.
Bewertung
Dieses Issue wurde noch nicht bewertet.