IP Subnetting based on the Number of Devices
A practical example of IP subnetting.
We'll cover the following...
Next network
Let’s ask a question: What’s the next network?
When it comes to subnetting, we are not only interested in the current network but also in the next network. Let’s suppose we have the following network:
192.168.0.0/27
The total number of IP addresses from a network with a mask of /27
is . (because and ). It also tells us that the next network will start after IP addresses from the starting address. Hence, the next network will be 192.168.0.32/27
. Similarly, we can get addresses of the next networks with an increment of 32: 192.168.0.64/27
, 192.168.0.96/27
, and 192.168.0.128/27
.
What is the next network of 84.88.32.24/29
?
Take a look at the following table to see some other examples:
Network - IP | First IP | Last IP | Next Network |
192.168.0.0/24 | 192.168.0.1 | 192.168.0.255 | 192.168.1.0/24 |
10.0.0.0/27 | 10.0.0.1 | 10.0.0.31 | 10.0.0.32/27 |
10.10.0.128/26 | 10.10.0.129 | 10.10.0.191 | 10.10.0.192/26 |
If we have a mask of /24
, the total number of IP addresses is For any field in an IP, the maximum value can be between ...