Use cases and examples
This page walks through common real-world scenarios to show how IP Calculator’s features work together.
1. Planning a small office network
You have been assigned 192.168.1.0/24 and need to allocate subnets for four groups with different sizes:
- Servers — 10 hosts
- Workstations — 50 hosts
- Guest Wi-Fi — 30 hosts
- Printers — 5 hosts
Steps:
- Switch to the VLSM tab.
- Enter
192.168.1.0as the address and24as the prefix. - Add four requirements: “Workstations” with 50 hosts, “Guest Wi-Fi” with 30 hosts, “Servers” with 10 hosts, and “Printers” with 5 hosts.
- The Allocations table will show the optimal subnet for each requirement. For example, Workstations might receive 192.168.1.0/26 (62 usable hosts) and Printers might receive 192.168.1.192/29 (6 usable hosts).
- Check the Free Space section to see how much room remains for future growth.
- Click Export to save the allocation plan as CSV or HTML.
2. Splitting a /16 into department subnets
Your organisation owns 10.10.0.0/16 and you need to carve it into subnets for different departments, not all the same size.
Steps:
- In the Calculator tab, enter
10.10.0.0with prefix16. - Use the Split into / control to set the child prefix to /24. This shows all 256 possible /24 subnets.
- On the Subnet Map, right-click a subnet and select Split to divide it further — for example, split a /24 into two /25 subnets for a smaller department.
- Use Join with next or Join with previous to merge adjacent subnets into a larger block for a department that needs more addresses.
- Continue splitting and joining until the layout matches your requirements. Use Ctrl+Z to undo any mistakes.
3. Summarising routes for a routing table
You have several contiguous /24 networks and want to advertise them as a single summary route.
Steps:
- Switch to the Supernet tab.
- Enter the networks, one per line:
10.0.0.0/2410.0.1.0/2410.0.2.0/2410.0.3.0/24 - The Summary Routes table shows the result:
10.0.0.0/22covering all 1024 addresses. - The message “Routes successfully summarised” confirms an exact summary with no wasted space.
If your networks are not contiguous (e.g. 10.0.0.0/24 and 10.0.5.0/24), the result will contain multiple summary routes, and the message “Cannot be reduced to a single route” will appear.
4. Auditing IP allocations for conflicts
Different teams have submitted their subnet assignments and you need to check for overlaps before deploying them.
Steps:
- Switch to the Overlap tab.
- Enter all subnets, one per line, or click Load File… to import them from a text file:
10.1.0.0/1610.1.5.0/2410.1.5.0/2410.2.0.0/16 - Review the Relationships table. You will see:
- 10.1.0.0/16 CONTAINS 10.1.5.0/24 — one team’s broad allocation includes another team’s specific subnet.
- 10.1.5.0/24 is IDENTICAL to 10.1.5.0/24 — a duplicate entry that needs to be resolved.
- 10.1.0.0/16 and 10.2.0.0/16 show no overlap.
- Use the Network Visualisation chart to see the relative sizes and positions of all networks at a glance.
5. Understanding a /27 subnet for CCNA study
You need to work out the details of 172.16.5.64/27 for an exam question.
Steps:
- In the Calculator tab, enter
172.16.5.64with prefix27. - Read the Network Details:
- Network: 172.16.5.64
- Broadcast: 172.16.5.95
- First Host: 172.16.5.65
- Last Host: 172.16.5.94
- Usable Hosts: 30
- Read the Mask Details:
- Subnet Mask: 255.255.255.224
- Wildcard: 0.0.0.31
- Mask Bits: 27, Host Bits: 5
- Look at the Binary Visualisation to see 27 network bits (coloured) followed by 5 host bits. This confirms that the last 5 bits determine host addresses within the subnet, giving 25 = 32 total addresses (30 usable after removing the network and broadcast addresses).