Skip to content

Category

Networking tools.

Subnet, CIDR, IP and DNS calculators that do exact 32- and 128-bit math in your browser.

Networking tools

When you reach for Networking tools.

Subnetting is the arithmetic everyone does under pressure and nobody does twice the same way. You are mid-incident, someone asks whether 10.20.4.0/22 overlaps the VPC CIDR you allocated last quarter, and the honest answer is that you are about to count in binary on a napkin.

The mistakes are predictable. Off-by-one on the broadcast address. Forgetting that a /31 has no usable hosts in the classic model but is legal for point-to-point links. Assuming IPv6 behaves like IPv4 with longer numbers, when the host counts are large enough that ordinary JavaScript numbers silently lose precision.

These tools do the maths exactly. Every calculation runs on BigInt, so a /8 in IPv4 and a /48 in IPv6 are equally correct — no float rounding, no truncation at 2^53. Parsers return a specific reason when input is rejected ("Octet 256 is greater than 255") rather than a generic failure, because during an incident "invalid" is not a useful answer.