DNSGlobe – Rust TUI to watch DNS propagate around the world
Summary
DNSGlobe is a Rust terminal application that queries 34 DNS resolvers worldwide in parallel to check and display propagation status on a world map, with watch mode for continuous monitoring.
View Cached Full Text
Cached at: 07/05/26, 10:34 PM
514-labs/dnsglobe
Source: https://github.com/514-labs/dnsglobe
dnsglobe
A global DNS propagation checker for your terminal — a Rust TUI that queries 34 public DNS resolvers around the world in parallel, compares their answers, and shows the propagation of your record on a world map.

Think dnschecker.org / whatsmydns.net, but in your terminal, with watch mode: start a check and it re-polls until the record has propagated everywhere.
Resolvers span the global anycast networks (Google, Cloudflare, Quad9), North America, Europe, Russia, the Middle East, East Asia, and the southern hemisphere (Telstra AU, SafeSurfer NZ, UOL BR) — each queried directly, so you see every server’s own current view of the record.
Each resolver is queried directly (no cache, EDNS0, TCP fallback for
truncated answers), so what you see is each server’s own current view of the
record. Answers sharing any record are grouped together — so round-robin DNS
(each resolver caching a different subset of an IP pool) counts as one
consistent answer, not twenty conflicting ones. The propagation gauge shows
how many resolvers are in the majority group; outliers are flagged
≠ DIFFERS once all results are in.
On terminals ≥150 columns wide, a world map appears on the right with one dot per resolver, colored by status (green agrees, magenta differs, red error, yellow in flight).
Usage
Install:
brew install 514-labs/tap/dnsglobe # Homebrew (macOS/Linux)
cargo install dnsglobe # from crates.io
# or grab a prebuilt binary from the GitHub Releases page
Run:
dnsglobe # start empty, type a domain
dnsglobe example.com # query immediately and watch
dnsglobe --once example.com TXT # no TUI: print results, exit (for scripts)
Keys
| Key | Action |
|---|---|
| type / ⌫ / Del | edit domain |
| ←/→ / Home/End | move cursor in the domain field |
| Enter | start the check and watch: re-polls every 30 s until propagation reaches 100% |
| Ctrl+R | stop or resume watching |
| Tab / Shift-Tab | select record type (A, AAAA, CNAME, MX, NS, TXT, SOA) |
| ↑/↓ / PgUp/PgDn | scroll the resolver table |
| Ctrl+U | clear domain |
| Esc / Ctrl+C | quit |
Notes
- Several resolvers are anycast networks, so the responding node is the one nearest to you; the location column is the operator’s home region.
- Resolver list lives in
src/resolvers.rs— add or remove entries freely. Every entry was verified to answer external queries; many well-known ISP resolvers (and, notably, all major African ones) refuse queries from outside their network, so they can’t be included.
Similar Articles
AI Tool Discovery at Scale: All You Need is DNS
This paper proposes ToolDNS, a framework that retrofits semantic tool discovery onto the DNS infrastructure, achieving scalable O(log N) resolution and reducing search space by 95.26% on a benchmark of over 33,000 real-world tools across multiple protocols.
Armadillo – A DNS Server in Gleam for Homelab Use
Armadillo is a self-hosted DNS server written in Gleam for homelab use. It checks local records first and forwards unknown queries to an upstream resolver, with a configurable zone file and ETS caching.
@DavidHodge: I built SatRadar as a weekend project: every active satellite orbiting Earth, live, at up to 120 FPS in your browser. T…
David Hodge built SatRadar, a browser-based tool that displays over 10,000 active satellites in real-time at up to 120 FPS by running the SGP4 orbital propagator entirely on the GPU via WebGL2 shaders.
@akshay_pachaar: I built a real-time satellite tracker on a 3D Globe. It interactively shows 10k+ active satellites orbiting Earth, incl…
A developer built a real-time 3D satellite tracker using Tiger Cloud (TimescaleDB) and Claude Code, demonstrating the Tiger CLI MCP server for time-series data. The article also highlights Speedcast's production-scale use of the technology.
Gaining control of every projector and camera on campus
A student at Colorado School of Mines built a fast brute-force DNS enumeration tool to discover all devices on campus network, first in Python then in Rust, by permuting subdomains on the local DNS.