🛠️ NETLAB Tools

Network troubleshooting toolbox — runs 100% in your browser, queries via DNS-over-HTTPS. No data leaves your machine except DNS queries to public resolvers.

IPv4 Calculator

Enter IP + prefix → results here

Subnet Division

Enter prefix lengths → results here

DNS Lookup (dig-style)

Results appear here…

DNS Propagation Check

Queries 4 public resolvers independently. Different answers = propagation still in progress or DNS cache not expired.

Results appear here…

IP Info & ASN Lookup

Results appear here…

WHOIS Lookup

Powered by IANA RDAP bootstrap — free, no API key.

Results appear here…

DNS Cache Clear — client-side

Public DNS (1.1.1.1, 8.8.8.8) is NOT under your control — you can't "clear" it. TTL controls how long caches hold a record. Flush YOUR machine's cache:

Windows:  ipconfig /flushdns
macOS:    sudo dscacheutil -flushcache; sudo killall -HUP mDNSResponder
Linux:    sudo systemd-resolve --flush-caches   (or: sudo systemctl restart systemd-resolved)
Router/AP: reboot it, or flush in admin UI

Force a fresh lookup from a resolver you control:

curl -H "accept: application/dns-json" "https://cloudflare-dns.com/dns-query?name=example.com&type=A"
dig @1.1.1.1 example.com A   # bypasses local cache, queries resolver directly