Early-stage software. Shurli is experimental and built with AI assistance. It will have bugs. Not recommended for production or safety-critical use. Read the disclaimer.
Your Network Fixes Itself

Your Network Fixes Itself

February 13, 2026·
Satinder Grewal

Your Network Fixes Itself

What’s new

Shurli can now roll back bad config changes automatically. Change your relay address and lose connectivity? The daemon reverts your config and restarts with the working version, no manual intervention needed, even if you can’t SSH in anymore.

Why it matters

The nightmare scenario for any remote-access tool: you change the config on your home server, the new config breaks connectivity, and now you can’t reach the machine to fix it. Network engineers have solved this for decades with “commit confirmed,” and now Shurli has it too.

Technical highlights

The commit-confirmed pattern - apply config, start timer, auto-rollback if not confirmed

  • Config archive/rollback: Before any config change, the current config is archived to .config.last-good.yaml with atomic writes (temp file + rename). shurli config rollback restores it instantly
  • Commit-confirmed pattern: shurli config apply new.yaml --confirm-timeout 5m applies the change and starts a timer. If you don’t run shurli config confirm within 5 minutes, the config auto-reverts and the daemon restarts with the known-good version
  • Watchdog + sd_notify: Pure Go implementation of systemd’s sd_notify protocol (READY=1, WATCHDOG=1, STOPPING=1). The watchdog runs health checks every 30 seconds and only reports healthy when all checks pass. No-op on macOS, same binary works everywhere
  • Extensible health checks: The daemon adds a socket health check to verify its API is still accepting connections. Future batches will add libp2p connection health

What’s next

Leveraging more libp2p features: AutoNAT v2, QUIC-preferred transport ordering, and smarter dialing.