Back Network & Time

Network & Time Tools — 4 Free Browser Utilities

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

IP
IP Address Lookup & Analyzer
Validate IPs, calculate subnets, classify private/public ranges. IPv4 and IPv6.
New
Timestamp Diff Calculator
Calculate exact difference between two timestamps or dates in multiple units.
DNS
DNS Lookup Tool
Query A, AAAA, CNAME, MX, TXT, NS records via DoH.
New
Relative Time Calculator
Convert timestamps to "3 days ago", "in 2 hours".
New

Best free network & time tools for 2026

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.

What's the difference between IP lookup, DNS lookup, and reverse DNS?

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.

How do I look up an IP, DNS record, or compute a subnet mask online without uploading data?

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.

Network & time cluster — pick the right tool

NeedTool
IP geolocation, ASN, subnet calculationIP Lookup & Subnet Calculator
DNS A / AAAA / MX / TXT / CNAME recordsDNS Lookup (DoH)
Unix epoch ↔ readable date conversionUnix Timestamp Converter
Difference between two timestampsTimestamp Diff Calculator
Relative time ("3 days ago", "in 2 hours")Relative Time Calculator
HTTP request building (curl-like)HTTP Request Builder
HTTP status code referenceHTTP Status Codes

Which network & time tool should you use?

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.

Common network & time mistakes to avoid

Frequently Asked Questions

CIDR (Classless Inter-Domain Routing) notation appends a prefix length to an IP address, such as 192.168.1.0/24, which indicates the number of bits used for the network portion. From this prefix length you can derive the subnet mask, the network address, the broadcast address, and the total number of usable host addresses in the range. The IP Address Lookup & Analyzer tool accepts any IPv4 or IPv6 address with an optional CIDR prefix and instantly calculates the full subnet details — network range, wildcard mask, first and last usable host — so you can plan IP allocation or verify firewall rules without manual binary math.
Private IP addresses are reserved ranges defined by RFC 1918 (for IPv4: 10.0.0.0/8, 172.16.0.0/12, and 192.168.0.0/16) that are used within local networks and are not routable on the public internet. Public IP addresses are globally unique and reachable from anywhere on the internet. Knowing whether an address is private or public is essential for network diagnostics, configuring NAT rules, setting up VPNs, and auditing security policies. The IP Address Lookup & Analyzer tool automatically classifies any entered address as private, public, loopback, link-local, or multicast, helping you quickly verify network configurations.
Computing the precise duration between two points in time requires handling varying month lengths, leap years, timezone offsets, and daylight saving transitions. The Timestamp Diff Calculator lets you enter two dates, datetimes, or Unix timestamps and instantly shows the difference broken down into years, months, days, hours, minutes, and seconds, as well as total days, total hours, and total seconds. This is useful for calculating SLA durations, measuring deployment intervals, determining age from a birthdate, computing elapsed time between log entries, or planning project timelines — all calculated in the browser with no data sent to any server.

Other Categories