Inspect subnet ranges
See the actual start and end addresses for CIDR blocks such as 10.0.0.0/24.
🔒 Browser-side processing
Compute subnet, broadcast, and host range details from IPv4 CIDR blocks.
Guide
Calculate network address, broadcast address, and usable IPv4 host ranges before changing firewall or subnet settings.
See the actual start and end addresses for CIDR blocks such as 10.0.0.0/24.
Check whether a firewall, allowlist, or VPN range is broader or narrower than intended before deployment.
Record network address, broadcast address, and host count to make infrastructure notes clearer.
Workflow
Examples
Input
192.168.0.0/24
Output
Network 192.168.0.0
Broadcast 192.168.0.255
Host range 192.168.0.1 - 192.168.0.254
Usable hosts 254
Input
10.0.8.0/22
Output
Network 10.0.8.0
Broadcast 10.0.11.255
Host range 10.0.8.1 - 10.0.11.254
Usable hosts 1,022
Troubleshooting
Usable hosts exclude the network address and the broadcast address. A /24 gives 254 usable hosts, not 256.
A /32 identifies a single host. A /31 is used for point-to-point router links and uses both addresses with no broadcast (RFC 3021).
A /26 is smaller than a /24. As the number grows the host count shrinks — a common inversion when writing firewall or security group rules.
Review
This tool focuses on IPv4 CIDR calculation. IPv6 uses different notation and sizing rules.
Cloud networks may reserve some addresses in every subnet. Confirm usable host counts with the platform documentation.
Related