Free2BoxFree2Box

IP Subnet Calculator

Calculate subnets, CIDR, and network ranges

IP Address
Calculation Results
Network Address192.168.1.0
Broadcast Address192.168.1.255
Subnet Mask255.255.255.0
Wildcard Mask0.0.0.255
First Host192.168.1.1
Last Host192.168.1.254
Total Hosts256
Usable Hosts254
IP ClassC
Binary Representation11000000.10101000.00000001.00000000
Common Subnets
CIDRSubnet MaskUsable Hosts
/8255.0.0.016,777,214
/16255.255.0.065,534
/24255.255.255.0254
/25255.255.255.128126
/26255.255.255.19262
/27255.255.255.22430
/28255.255.255.24014
/29255.255.255.2486
/30255.255.255.2522

Cómo Usar

1

Ingresa Tus Valores

Completa los campos de entrada con tus números o parámetros.

2

Obtén Resultados Instantáneos

Los resultados se actualizan automáticamente mientras escribes — sin necesidad de botón de envío.

3

Copia o Guarda

Copia los resultados al portapapeles o úsalos en tu flujo de trabajo.

Por Qué Usar Esta Herramienta

100% Gratis

Sin costos ocultos, sin niveles premium — todas las funciones son gratuitas.

Sin Instalación

Se ejecuta completamente en tu navegador. No necesitas descargar ni instalar nada.

Privado y Seguro

Tus datos nunca salen de tu dispositivo. Nada se sube a ningún servidor.

Funciona en Móvil

Totalmente responsivo — úsalo en tu teléfono, tableta o escritorio.

IP Subnetting: Network Design and Address Planning

Key Takeaways

  • Subnetting divides large IP networks into smaller, manageable segments — improving security, performance, and address utilization.
  • CIDR notation (/24, /16, etc.) defines the network prefix length, determining how many hosts each subnet can accommodate.
  • All subnet calculations are performed in your browser — your network architecture data stays private.

IP subnetting is a fundamental networking skill that enables efficient use of IP address space and logical network segmentation. Whether you are designing a corporate network, planning cloud VPC configurations, or troubleshooting connectivity issues, understanding subnet masks, CIDR notation, and address ranges is essential for every network engineer and cloud architect.

A /24 subnet provides 254 usable host addresses, while a /16 provides 65,534 — choosing correctly prevents address exhaustion.

Capacity Planning

Key Concepts

1

CIDR Notation

Classless Inter-Domain Routing (CIDR) notation like 192.168.1.0/24 specifies the network prefix length. The /24 means the first 24 bits are the network portion, leaving 8 bits (256 addresses) for hosts.

2

Subnet Mask

A subnet mask (e.g., 255.255.255.0 for /24) determines which bits of an IP address identify the network and which identify the host. ANDing an IP with its mask gives the network address.

3

Network, Broadcast, and Usable Addresses

Every subnet has a network address (first, all host bits 0), broadcast address (last, all host bits 1), and usable range (everything between). A /24 has 256 total addresses but only 254 usable.

4

VLSM — Variable Length Subnet Masking

VLSM allows different subnets within the same network to have different prefix lengths. This enables efficient address allocation — a /28 (14 hosts) for a small office and /22 (1022 hosts) for a data center.

Pro Tips

Always plan for growth — if you need 50 hosts now, use a /25 (126 hosts) or /24 (254 hosts) rather than a /26 (62 hosts).

Use private address ranges (10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16) for internal networks to conserve public IPv4 addresses.

In cloud environments (AWS VPC, Azure VNet), remember that some addresses are reserved by the provider — typically the first 4 and last 1.

Document your subnet allocation plan — without documentation, overlapping subnets and routing conflicts are inevitable as networks grow.

All subnet calculations are performed entirely in your browser. Your network addressing information, which may reveal infrastructure details, is never transmitted to any server.

Preguntas Frecuentes