shohei
shohei is a next-generation DNS diagnostic CLI. Where dig shows raw records, shohei visualizes the complete picture: the DNSSEC chain of trust from root to answer, the iterative resolution path hop-by-hop, and modern transports (DoH / DoT) — all rendered as color-coded trees in your terminal.
- DNSSEC chain tree — see every DS, DNSKEY, and trust step from
.to your domain; add-vfor key tags and algorithm names - Iterative resolution trace — watch queries travel from root servers to TLD to authoritative NS
- Authority + Additional sections — see NS referrals and glue records when querying authoritative servers directly
- N-way server comparison — diff any number of resolvers simultaneously with
--compare - DoH, DoT, and DoQ — DNS-over-HTTPS, DNS-over-TLS, and DNS-over-QUIC built in
- Zone transfer (AXFR) — dump an entire zone from an authoritative server with
--axfr - Multiple record types —
--type a --type aaaa --type mxin a single invocation - Reverse DNS —
-x 1.2.3.4resolves PTR records for IPv4 and IPv6 - Stdin and file batch mode — pipe a list of domains or use
-f domains.txt - Human-readable TTL —
300displayed as5m,3600as1h - JSON output — pipe-friendly for scripting and automation
- Watch mode — auto-refresh at a set interval with
--watch - Short output — data values only, one per line, with
--short - Interactive TUI — browse records, DNSSEC chain, and trace in a single terminal window (
--features tui)
Why shohei?
DNS tooling splits into three camps: classic tools (dig, drill, delv) that show raw output with no visual layer; modern alternatives (dog, doggo, q) that add colors and modern transports but skip deep diagnostics; and shohei, which combines both and adds the only terminal-native DNSSEC chain-of-trust visualization and annotated iterative trace in the space.
| Feature | shohei | dig | dog | doggo | q | delv | drill |
|---|---|---|---|---|---|---|---|
| Colored output | ✓ | ✓ | ✓ | ✓ | |||
| DNSSEC chain-of-trust tree | ✓ | ||||||
| DNSSEC validation | ✓ | ✓ | ✓ | ✓ | |||
| Iterative resolution trace (visual) | ✓ | ||||||
| Authority + Additional sections | ✓ | ✓ | ✓ | ✓ | |||
N-way server comparison (--compare) |
✓ | ||||||
| Zone transfer (AXFR) | ✓ | ✓ | ✓ | ||||
Watch / auto-refresh (--watch) |
✓ | ||||||
Script-friendly output (--short) |
✓ | ||||||
Multiple record types (--type a --type mx) |
✓ | ✓ | |||||
Reverse DNS shorthand (-x 1.2.3.4) |
✓ | ✓ | ✓ | ||||
Force TCP (--tcp) |
✓ | ✓ | ✓ | ||||
Disable recursion (--no-recurse) |
✓ | ✓ | ✓ | ✓ | |||
| Query latency display | ✓ | ✓ | ✓ | ✓ | |||
| DNS-over-HTTPS (DoH) | ✓ | ✓ | ✓ | ✓ | ✓ | ||
| DNS-over-TLS (DoT) | ✓ | ✓ | ✓ | ✓ | ✓ | ||
| DNS-over-QUIC (DoQ) | ✓ | ✓ | |||||
| JSON output | ✓ | ✓ | ✓ | ✓ | ✓ | ||
| Interactive TUI | ✓ |
dig = BIND utils 9.16+; q = natesales/q; delv = BIND DNSSEC-validating resolver; drill = ldns-based
Demo
Iterative Resolution Trace

Watch Mode

Interactive TUI

Installation
For the interactive TUI mode:
Or download a pre-built binary from the releases page.
Usage
DNS record query
# Multiple record types in one command
# Security / DNSSEC-related record types
Reverse DNS
Resolve the PTR record for an IP address. IPv4 and IPv6 are both supported.
DNSSEC chain of trust
Validate the full DNSSEC chain from the root trust anchor down to the target domain. Each zone's DS and DNSKEY records are checked individually.
# Verbose: show key tags, algorithm names, and KSK/ZSK roles
Iterative resolution trace
Step through the full resolution path — root servers → TLD nameservers → authoritative nameservers.
Modern transports
# DNS-over-HTTPS
# DNS-over-TLS
# DNS-over-QUIC
# Custom resolver
Authority and Additional sections
When querying an authoritative server directly, shohei displays the Authority Section (NS referrals) and Additional Section (glue A/AAAA records) — matching dig's default behavior.
# Query the .com TLD nameserver for google.com — shows NS referral + glue records
# Query an authoritative nameserver directly
Force TCP
Force DNS queries over TCP instead of UDP. Useful for large responses that get truncated (TC bit set) or environments that block UDP/53.
Short output
Strip all decoration and return just the record data — one value per line. Ideal for shell scripting.
Compare resolvers
Query the same domain from multiple DNS servers simultaneously and diff the results. Useful for detecting CDN anycast differences or verifying a new resolver. Repeat --compare for N-way comparison.
# Show that both servers return the same NS records
# Reveal CDN-induced A record differences
# N-way comparison across three resolvers
Zone transfer (AXFR)
Fetch the complete zone from an authoritative server. Requires -s to specify the authoritative nameserver.
Batch / stdin mode
Pipe a newline-separated list of domains and shohei queries each one in sequence.
Lines starting with # are ignored as comments. You can also read targets from a file with -f.
|
|
Watch mode
Repeat the query every N seconds and auto-refresh the display. Press Ctrl+C to stop.
Output formats
Interactive TUI (requires --features tui)
Pre-loads records, DNSSEC chain, and trace in parallel, then presents all three as navigable views.
shohei — google.com
┌─ Records ──────────────────────────────────────────────────────────┐
│ Query: google.com (A IN) │
│ │
│ NAME TTL TYPE DATA │
│ ────────────────────────────────────────────────────────────────── │
│ google.com. 120 A 142.250.x.x │
│ ... │
└────────────────────────────────────────────────────────────────────┘
[r] Records [d] DNSSEC [t] Trace [↑↓/jk] Scroll [q] Quit
| Key | Action |
|---|---|
r |
Records view |
d |
DNSSEC chain view |
t |
Iterative trace view |
↑ / k |
Scroll up |
↓ / j |
Scroll down |
q / Esc |
Quit |
Options
| Flag | Short | Description |
|---|---|---|
--type <TYPE> |
-t |
Record type (repeatable): a, aaaa, mx, ns, txt, cname, soa, ptr, srv, https, svcb, naptr, dnskey, ds, rrsig, caa, tlsa, sshfp, nsec, nsec3, any |
--reverse <IP> |
-x |
Reverse DNS — auto-converts IP to PTR query (IPv4 and IPv6) |
--file <FILE> |
-f |
Read domains from a file (one per line), like dig -f |
--dnssec |
-d |
DNSSEC chain-of-trust validation tree |
--verbose |
-v |
Show verbose detail (key tags, algorithms) in DNSSEC chain |
--trace |
Iterative resolution path from root servers | |
--no-recurse |
Clear RD bit — query authoritative servers directly; shows Authority + Additional sections | |
--axfr |
Full zone transfer from the server specified with -s |
|
--tcp |
Force TCP instead of UDP (requires -s; useful for large/truncated responses) |
|
--timeout <SECS> |
DNS query timeout in seconds (default: 5, max: 60) | |
--short |
Output data values only, one per line (script-friendly) | |
--watch <SECS> |
Repeat query every N seconds; Ctrl+C to stop | |
--compare <ADDR> |
Query an additional server and diff; repeat for N-way comparison | |
--doh <URL> |
DNS-over-HTTPS (e.g. https://dns.google/dns-query) |
|
--dot <IP:PORT> |
DNS-over-TLS (e.g. 1.1.1.1:853) |
|
--doq <IP:PORT> |
DNS-over-QUIC (e.g. 8.8.8.8 or 8.8.8.8:853) |
|
--server <ADDR> |
-s |
Custom DNS server (8.8.8.8 or 8.8.8.8:53) |
-4 |
Force queries over IPv4 transport | |
-6 |
Force queries over IPv6 transport | |
--output <FORMAT> |
-o |
colored (default) · plain · json |
--tui |
Interactive TUI (requires --features tui) |
Trust States
| Badge | Meaning |
|---|---|
✓ SECURE |
DNSSEC-validated, full chain of trust verified |
⚠ INSECURE |
Zone unsigned, but parent has no DS delegation (expected) |
✗ BOGUS |
Validation failed — signature mismatch or broken chain |
? INDETERMINATE |
DNSSEC not requested, or result unclear |
Built with
- hickory-dns — DNSSEC, DoH, DoT support
- clap — CLI argument parsing
- ratatui — TUI framework (optional
tuifeature) - owo-colors — Terminal colors
- comfy-table — Record table rendering
License
MIT — see LICENSE