Tested tool guide
Tested browser tools
Checked August 16, 2026
What Supernet Calculator does, with a checked example
Paste a list of subnet prefixes and the tool tests whether they collapse into one larger block. Each prefix becomes an address range; the tool joins them and checks that the union is one continuous interval whose size is a power of two, starting on an address aligned to that size. If so, it returns the summarizing prefix with mask, address range, usable host count, and a routing-table line. Otherwise it reports the set as not aggregable. The usual surprise: contiguity alone is not enough, so adjacent /24s such as 192.168.1.0 and 192.168.2.0 cannot be merged at all.
Worked example
A concrete input and expected output from the current implementation.
Input
192.168.8.0/24
192.168.9.0/24
192.168.10.0/24
192.168.11.0/24
->
Expected output
192.168.8.0/22
Netmask: 255.255.252.0
Range: 192.168.8.0 - 192.168.11.255
Addresses: 1024 (1022 usable)
Four /24 blocks hold 4 x 256 = 1024 addresses, exactly the size of a /22 (2^10). The starting address 192.168.8.0 sits on a 1024-address boundary because the third octet 8 is a multiple of 4, so the merged block is exact: it covers all four inputs and spills into neither 192.168.7.255 nor 192.168.12.0.