Understanding Subnetting and CIDR

1. Introduction to Subnetting

Subnetting is the process of dividing a larger network into smaller sub-networks (subnets). This helps in efficient IP address allocation, improved network security, and better performance.

A subnet mask is used to define the boundary of each subnet by determining which part of an IP address belongs to the network and which part belongs to the host.


2. Understanding CIDR (Classless Inter-Domain Routing)

CIDR notation represents a subnet mask by using a slash (/) followed by the number of bits used for the network portion.

For example:

  • 192.168.1.0/24 means that the first 24 bits are for the network, and the remaining 8 bits are for hosts.

  • The subnet mask for /24 is 255.255.255.0, meaning 256 total IPs (254 usable hosts).

The formula to calculate the total IPs:

Total IPs = 2^(32 - CIDR Prefix)
Usable Hosts = Total IPs - 2 (Network & Broadcast Address)

3. How to Determine the Number of Subnets and Hosts

Step-by-Step Process

  1. Identify the given IP address and CIDR prefix.

  2. Determine the subnet mask.

  3. Calculate total subnets using borrowed bits.

  4. Calculate the number of usable hosts per subnet.

  5. Identify the subnet IP ranges.

Subnet Mask Creation

A subnet mask is a 32-bit number where:

  • Network bits = 1s

  • Host bits = 0s

For example:

  • /24255.255.255.0 (First 24 bits as 1s, last 8 bits as 0s)

  • /26255.255.255.192 (First 26 bits as 1s, last 6 bits as 0s)

  • /30255.255.255.252 (First 30 bits as 1s, last 2 bits as 0s)


4. Examples of Subnetting

Example 1: /24 Subnet

Given:

  • IP Address: 192.168.1.0/24

  • Subnet Mask: 255.255.255.0

  • Total IPs: 2^(32-24) = 256

  • Usable Hosts: 256 - 2 = 254

Subnet Breakdown:

SubnetNetwork AddressFirst HostLast HostBroadcast Address
1st192.168.1.0/24192.168.1.1192.168.1.254192.168.1.255

This /24 network is one big subnet with 254 usable IPs.


Example 2: /26 Subnet (Dividing a /24 into 4 subnets)

Given:

  • IP Address: 10.0.0.0/26

  • Subnet Mask: 255.255.255.192

  • Total IPs: 2^(32-26) = 64

  • Usable Hosts: 64 - 2 = 62

  • Number of Subnets from /24: 2^(26-24) = 4

Subnet Breakdown:

SubnetNetwork AddressFirst HostLast HostBroadcast Address
1st10.0.0.0/2610.0.0.110.0.0.6210.0.0.63
2nd10.0.0.64/2610.0.0.6510.0.0.12610.0.0.127
3rd10.0.0.128/2610.0.0.12910.0.0.19010.0.0.191
4th10.0.0.192/2610.0.0.19310.0.0.25410.0.0.255

Each subnet has 62 usable IPs.


Example 3: /30 Subnet (For Point-to-Point Connections)

Given:

  • IP Address: 172.16.0.0/30

  • Subnet Mask: 255.255.255.252

  • Total IPs: 2^(32-30) = 4

  • Usable Hosts: 4 - 2 = 2

Subnet Breakdown:

SubnetNetwork AddressFirst HostLast HostBroadcast Address
1st172.16.0.0/30172.16.0.1172.16.0.2172.16.0.3
2nd172.16.0.4/30172.16.0.5172.16.0.6172.16.0.7
3rd172.16.0.8/30172.16.0.9172.16.0.10172.16.0.11

Each subnet only has 2 usable IPs, making it ideal for point-to-point connections.


5. Importance of Subnet Mask

A subnet mask is critical for:

  • Defining Network Boundaries: Separates networks and hosts.

  • Routing Efficiency: Ensures that data reaches the correct subnet.

  • Security: Limits communication between devices by segmenting the network.

  • Optimized IP Utilization: Prevents wastage of IP addresses.


6. Summary

CIDRSubnet MaskTotal IPsUsable HostsSubnets from /24
/24255.255.255.02562541
/26255.255.255.19264624
/30255.255.255.2524264

This guide provides a step-by-step approach to subnetting, making it easier to determine the number of subnets and hosts.

0
Subscribe to my newsletter

Read articles from bhuvanchand maddi directly inside your inbox. Subscribe to the newsletter, and don't miss out.

Written by

bhuvanchand maddi
bhuvanchand maddi