Small, focused networking tools and shared TUI libraries, all in Go. Each service ships as a single binary and uses the same terminal console UX.
- dhcplane
- DHCPv4 server with JSON config, pools, reservations, sticky leases, live reload, CLI for leases/stats.
https://github.com/network-plane/dhcplane
- DHCPv4 server with JSON config, pools, reservations, sticky leases, live reload, CLI for leases/stats.
- dnsplane
- DNS resolver for labs/home. Queries multiple upstreams, prefers authoritative replies, exposes local control via UNIX socket and remote TUI over TCP.
https://github.com/network-plane/dnsplane
- DNS resolver for labs/home. Queries multiple upstreams, prefers authoritative replies, exposes local control via UNIX socket and remote TUI over TCP.
- mdnsplane
- mDNS server / proxy / shadow-proxy.
https://github.com/network-plane/mdnsplane
- mDNS server / proxy / shadow-proxy.
- dhcpdoc
- DHCP server debugging tool.
https://github.com/network-plane/dhcpdoc
- DHCP server debugging tool.
- whichdns
- Identify DNS Server used by the OS.
https://github.com/network-plane/whichdns
- Identify DNS Server used by the OS.
- headview
- Measure http head time
https://github.com/network-plane/headview
- Measure http head time
- ntpcl
- Time Client (NTP, Windows Time, HTTP, daytime, time)
https://github.com/network-plane/ntpcl
- Time Client (NTP, Windows Time, HTTP, daytime, time)
- shareplane
- Share files over a fast custom web server
https://github.com/network-plane/shareplane
- Share files over a fast custom web server
- speedplane
- Run speedtest.net tests on schedule
https://github.com/network-plane/speedplane
- Run speedtest.net tests on schedule
- planetui
- Composable TUI framework used across Network Plane tools (structured commands, middleware, async tasks, output channels).
https://github.com/network-plane/planetui
- Composable TUI framework used across Network Plane tools (structured commands, middleware, async tasks, output channels).
- planeconsole
- Monitoring console components used by the platform tools.
https://github.com/network-plane/planeconsole
- Monitoring console components used by the platform tools.
- planeoui
- Package to manage the download/search/identification of manufacturers based on their OUI (l,m,s supported) https://github.com/network-plane/planeoui
- textscore
- Text Score package to rank text similarity
https://github.com/network-plane/textscore
- Text Score package to rank text similarity
- One UX everywhere: common console and command patterns across all tools.
- Single-binary deploys: Go 1.25.5 builds, no external runtime deps.
- Readable configs: strict JSON with validation and clear errors.
- Operational clarity: explicit logs, PID files, graceful shutdown, and CLIs for inspection.
# Build a tool (example: dhcplane)
git clone https://github.com/network-plane/dhcplane
cd dhcplane
go build -o dhcplane .
# Prepare minimal config and leases
cp config.example.json config.json
echo '{"by_ip":{},"by_mac":{}}' > leases.json
# On Linux, allow binding to UDP:67 without root
sudo setcap 'cap_net_bind_service=+ep' "$(pwd)/dhcplane"
# Run with console enabled
./dhcplane serve --console