Subnetting is the process of partitioning a single physical network into multiple, smaller logical sub-networks (subnets).
If you are currently practicing, use these standard formulas found in guru-level reports: Total IP Addresses 2 to the cap H-th power is the number of host bits. Usable Host Addresses (removes the network and broadcast addresses). Number of Subnets 2 to the cap S-th power is the number of bits borrowed from the host portion. Block Size Recommended Free PDF Resources
While the complete book is available for purchase in print and on Kindle, the author has made an incredibly generous move for learners: the website has the same content for free. This means you can access the full educational material without spending a dime.
solves this by allowing you to subnet an already subnetted network. This lets you apply different masks ( /24 , /28 , /30 ) within the same larger network infrastructure. The Golden Rule of VLSM:
Identifies the specific device (host) on that network. The Subnet Mask
, we often use CIDR (Classless Inter-Domain Routing) notation, which counts the number of '1's in the subnet mask. 4. How to Subnet: Step-by-Step
These downloadable resources provide structured lessons and practice exercises: IP Subnetting - From Zero to Guru (Book Overview)
: Converting between decimal and binary is critical for calculating masks and ranges. Subnetting Types FLSM (Fixed Length Subnet Mask) : Dividing a network into equal-sized subnets. VLSM (Variable Length Subnet Mask)
How many groups do you need?
To convert binary to decimal quickly, memorize the positional values of an 8-bit octet. Each position from left to right represents a power of 2: Bit Position 272 to the seventh power 262 to the sixth power 252 to the fifth power 242 to the fourth power 222 squared 212 to the first power 202 to the 0 power Decimal Value 128 64 32 16 8 4 2 1
This is where resources like the "Fast IP Subnetting: The 60-Second Cheat Sheet" come in. This approach, developed by Paul Browning, uses a simple chart method to answer any subnetting question in 60 seconds or less without using a single line of binary code. This "Cheat Chart" can be hand-drawn on scratch paper at the start of an exam, and with practice, you can move it entirely into your brain.
: Breaking down an IP address into its Network and Host portions. Binary Mastery
The broadcast address is always one less than the next network ID. Quick Example: Subnetting 192.168.1.0 /24 into four groups. We need to borrow 2 bits (2^2 = 4). New mask: /26 (24 + 2). In decimal, /26 is 255.255.255.192 . Magic Number: 256 - 192 = 64 . Networks: .0, .64, .128, .192. 5. Guru Level: VLSM (Variable Length Subnet Masking)
Each number is double the one to its right. If a bit is "1," you add the value. If it's "0," you skip it. 11000000 = 128 + 64 = 192 . 3. Classful vs. Classless Networking