This page checks whether an IPv4 address range is fully contained inside a target CIDR block. That is useful when a single host check is not enough and you need to know whether an entire start-to-end range fits the parent network you intend to allow, route, document, or reserve.
This kind of validation matters in ACL work, IP planning, firewall object cleanup, and change review. Range mistakes are easy to miss visually, especially when only one endpoint escapes the subnet.
A disciplined approach is to confirm both endpoints first. If the start fits but the end does not, the issue is usually a prefix-length or boundary-selection problem rather than random failure.
A CIDR subnet defines one continuous address block. For a tested range to be fully contained, both the start and end points must sit inside that same normalized block and the range itself must be valid from lower to higher address order.
That seems simple, but it catches a surprisingly common class of operational mistakes: ranges that look visually close to a subnet but actually cross the boundary by one or more addresses.
Firewall object review
A team wants to confirm that a permitted range does not unintentionally expand beyond the intended subnet. The page reveals whether the full object fits.
Allocation sanity check
A requested child range should sit inside a larger reserved network. Use the checker before creating documentation or provisioning changes.
Cleanup of recorded ranges
An IPAM entry or spreadsheet claims a range belongs to a subnet. This page validates whether the record is actually true.
What does this page validate?
It validates whether a full IPv4 start-to-end range is fully contained inside one target CIDR subnet.
Why not just test one endpoint?
Because a range can start inside the subnet and still cross the boundary at the far end.
When should I use this instead of a host checker?
Use this page when the policy or allocation decision is about a range object, not a single IP address.
What if I am not sure what the parent subnet should be?
Use IPv4 Subnet Calculator or IPv4 Subnet Boundary first to reason about the correct network block.
Sometimes it pays to stay in bed on Monday, rather than spending the rest of the week debugging Monday’s code.
…
…