Compute intersection between two sets of CIDRs/ranges.
CIDR overlap detection computes the intersection of two IP address sets, returning the addresses that appear in both Set A and Set B. The result is expressed as the minimal set of CIDR blocks covering the overlapping space.
Basic Overlap Example:
No Overlap Example:
Merge Option:
When "Merge inputs" is enabled (recommended), the tool first consolidates overlapping ranges within each set before computing the intersection:
Algorithm Steps:
Practical Applications:
Overlap detection is essential for preventing address conflicts in network design. Common scenarios include validating that VPC peering connections have non-overlapping CIDR blocks (AWS requirement), ensuring branch office subnets don't conflict with headquarters, and verifying that DMZ networks are properly isolated from internal networks.