4 free network and time utilities — IP lookup with IPv4/IPv6 + subnet/CIDR calculation, DNS lookup via DNS-over-HTTPS, Unix timestamp converter, timestamp difference calculator. Browser-only.
4 Network & Time Tools
Network and time utilities sit at the boundary between application code and infrastructure: every cloud deploy, every API integration, every scheduled job needs IP/CIDR math, DNS resolution, timestamp arithmetic. The 4 tools in this category replace common Stack Overflow lookups ("what's the broadcast address for /26", "is this IP private", "what's the difference in days between these two dates") with one-tap browser-native operations. Network calls (IP lookup geolocation, DNS-over-HTTPS) use public APIs (Cloudflare DoH, ipify, ipapi.co) that don't require auth — the tool itself runs in your browser, with the underlying queries going to those public endpoints.
Three distinct operations that are routinely confused. IP lookup takes an IP address (yours or any public IP) and returns geolocation, ASN, ISP, and whether it's residential / business / datacenter / VPN. Used for fraud detection, geo-redirects, and "is this user from a known cloud range" checks. Backed by databases like MaxMind GeoIP2, ipinfo.io, and ipapi.co. DNS lookup takes a domain name and returns its A/AAAA/MX/TXT/CNAME records — the standard "what IP does this domain point to" query. Modern tools use DNS-over-HTTPS (DoH) to query Cloudflare 1.1.1.1 or Google 8.8.8.8 from the browser without exposing the query to your ISP. Reverse DNS (PTR record lookup) takes an IP and returns its registered hostname (used for email server validation and spam scoring). All three are different lookups against different infrastructure.
The IP lookup pulls geolocation from public APIs (ipify, ipapi.co) — your local IP isn't uploaded, only the IP you explicitly query. DNS lookup uses DNS-over-HTTPS to Cloudflare (1.1.1.1) — encrypted from your browser, not visible to your ISP. Subnet calculation runs entirely in JavaScript using bitwise operations on the parsed CIDR — no network call. Timestamp conversion runs in the browser via native Date math. The only outbound calls are the explicit IP/DNS lookups against well-known public resolvers; everything else is client-side.
| Need | Tool |
|---|---|
| IP geolocation, ASN, subnet calculation | IP Lookup & Subnet Calculator |
| DNS A / AAAA / MX / TXT / CNAME records | DNS Lookup (DoH) |
| Unix epoch ↔ readable date conversion | Unix Timestamp Converter |
| Difference between two timestamps | Timestamp Diff Calculator |
| Relative time ("3 days ago", "in 2 hours") | Relative Time Calculator |
| HTTP request building (curl-like) | HTTP Request Builder |
| HTTP status code reference | HTTP Status Codes |
Network tools answer the everyday questions that come up when wiring up infrastructure: is this IP private or public, what's in this subnet, what records does this domain have, how long ago was that timestamp. All four run client-side; DNS lookups go straight to Cloudflare's DoH endpoint without any server intermediary.
/24 with 24 hosts. A /24 subnet has 256 addresses (254 usable). Higher number = smaller subnet. The slash counts network bits, not hosts.10.0.0.0/8, 172.16/12, 192.168/16 as routable. Those are RFC 1918 private ranges — never reachable from the public internet. Common cause of "works locally, broken in prod" deploys.dig +trace to bypass caches.Date.now() in milliseconds with code expecting seconds (or vice versa). JS uses ms, most Unix tools and PostgreSQL use seconds. Off by 1000× is a fun outage.Frequently Asked Questions
Other Categories