What is Fixed-Length Subnet Masking (FLSM)?
FLSM is a way of splitting a large block of IP addresses into smaller, equal-sized groups called subnets. Every subnet you create is exactly the same size and supports the same number of devices. It works best when every part of your network needs roughly the same number of connections.
What is the difference between Total Usable Host and Total Available Host?
Total Usable Host is the number of addresses you can actually assign to devices — the block size minus 2 (network address + broadcast address). Total Available Host is the full block size including those two reserved addresses. For a /26: Total Usable Host = 62, Total Available Host = 64.
What is the difference between FLSM and VLSM?
With FLSM every subnet is the same size, even if some parts of your network only need a handful of devices — those unused addresses are wasted. VLSM lets you make each subnet a different size so you only use exactly what you need. FLSM is simpler; VLSM saves more addresses when your segments have very different sizes.
How does the calculator work out the right subnet size?
You enter how many devices each subnet needs to support. The calculator adds 2 to that number (network + broadcast), then picks the next block size that is a power of 2 and large enough to fit. For 50 devices it needs at least 52 addresses, so it picks 64, giving 62 usable addresses per subnet.
What is the Free/Unused IP Network table?
After building your subnets there are often addresses left over inside your original block. The calculator shows those leftover addresses in the Free/Unused IP Network table. Every free block uses the same prefix and host count as your allocated subnets — ready to use as a future subnet with no recalculation needed.
What does "Insufficient address space" mean?
The subnets you asked for are too large to fit inside the address block you defined. To fix it: lower the CIDR number to increase the pool (e.g. /24 → /23), reduce the No. of Subnets, or lower the Hosts per Subnet value.
When should I use FLSM instead of VLSM?
FLSM is the right choice when all your network areas need roughly the same number of devices, when you want the simplest possible setup, or when studying for a networking exam. If different areas have very different sizes, VLSM will make much better use of your available addresses.