Back to Tools & Utilities

Network & DevOps Tools

Subnet Calculator &
CIDR Calculator

Calculate network address, broadcast address, subnet mask, wildcard mask, usable host range, and AWS usable IPs instantly. Supports CIDR and dotted-decimal mask input, subnet splitting, and binary visualization.

Network Parameters

/24

Network

192.168.1.0/24

PRIVATECLASS C

Total Hosts

256

Usable Hosts

254

AWS Usable

251

Network Address

192.168.1.0

Broadcast Address

192.168.1.255

Subnet Mask

255.255.255.0

Wildcard Mask

0.0.0.255

First Usable Host

192.168.1.1

Last Usable Host

192.168.1.254

CIDR Notation

192.168.1.0/24

Address Type

Private (RFC1918 /16) (192.168.0.0/16)

CIDR Quick Reference

CIDRSubnet MaskTotal IPsUsable HostsAWS UsableCommon Use
/8255.0.0.016,777,21616,777,21416,777,211Large enterprise / ISP
/16255.255.0.065,53665,53465,531AWS VPC default
/20255.255.240.04,0964,0944,091Medium enterprise
/24255.255.255.0256254251Home / small office
/25255.255.255.128128126123Half /24 split
/26255.255.255.192646259Small team subnet
/27255.255.255.224323027Small office LAN
/28255.255.255.240161411AWS small subnet
/29255.255.255.248863Server cluster
/30255.255.255.252420Point-to-point link
/31255.255.255.254200P2P (RFC 3021)
/32255.255.255.255100Single host route

Click any row to apply that prefix to the calculator.

IPv4 Private Address Ranges (RFC 1918)

10.0.0.0/8

16,777,214 usable hosts

Large enterprise, data centres

172.16.0.0/12

1,048,574 usable hosts

AWS default VPC, mid-size nets

192.168.0.0/16

65,534 usable hosts

Home routers, small offices


What Is CIDR Notation?

CIDR (Classless Inter-Domain Routing) notation represents an IP address and its associated network prefix as a single compact value — for example 192.168.1.0/24. The number after the slash is the prefix length: the count of consecutive 1-bits in the subnet mask that identify the network portion of the address.

CIDR replaced the older classful system (Class A/B/C) in 1993, enabling more efficient IP address allocation and route aggregation. Today it is the universal standard for configuring subnets in cloud VPCs, on-premises networks, firewalls, and routing protocols.

Understanding Subnet Masks

A subnet mask is a 32-bit number written in dotted-decimal notation. It uses consecutive 1-bits for the network portion and 0-bits for the host portion. The subnet mask 255.255.255.0 is equivalent to /24 — the first 24 bits identify the network and the last 8 bits identify individual hosts within that network.

To find the network address, AND the IP address with the subnet mask. To find the broadcast address, OR the network address with the inverted mask (wildcard mask). Every address between network+1 and broadcast−1 is a usable host address.

Frequently Asked Questions

Note: All calculations use standard IPv4 subnetting rules. AWS subnet usable host counts reflect AWS's reservation of 5 IP addresses per subnet. For production network design, verify results against your platform's documentation.