Subnet Addressing
Consider the router and the three attached subnets below (A, B, and C). The number of hosts is also shown below. The subnets share the 23 high-order bits of the address space: 167.215.76.0/23
Assign subnet addresses to each of the subnets (A, B, and C) so that the amount of address space assigned is minimal, and at the same time leaving the largest possible contiguous address space available for assignment if a new subnet were to be added. Then answer the questions below.
Question List
1. Is the address space public or private?
2. How many hosts can there be in this address space?
3. What is the subnet address of subnet A? (CIDR notation)
4. What is the broadcast address of subnet A?
5. What is the starting address of subnet A?
6. What is the ending address of subnet A?
7. What is the subnet address of subnet B? (CIDR notation)
8. What is the broadcast address of subnet B?
9. What is the starting address of subnet B?
10. What is the ending address of subnet B?
11. What is the subnet address of subnet C? (CIDR notation)
12. What is the broadcast address of subnet C?
13. What is the starting address of subnet C?
14. What is the ending address of subnet C?
Solution
1. The address 167.215.76.0/23 is public.
2. Maximum number of hosts = 2^x - 2 = 2^9 - 2 = 510. The reason we have to subtract 2 from the final number is because there are always 2 addresses allocated for each address block: the subnet ID (the first address) and the broadcast address (the last address); for example, if you have 5 bits for hosts, you can have 30 hosts, because 2 of the addresses are for the subnet ID and the broadcast address which when added equals 32, which is 2^5.
3. Subnet A has 17 hosts, so it will need at least 19 addresses (for the subnet ID and broadcast address). The least number of bits that satisfy this is 5 bits. Knowing that, we take the prior subnet and add 32, the result of which is 167.215.77.128/27
4. The broadcast address of subnet A (167.215.77.128/27) is 167.215.77.159, because it is the last address in the IP range.
5. The first IP address of subnet A (167.215.77.128/27) is 167.215.77.129, found by adding 1 to the subnet address.
6. The last IP address of subnet A (167.215.77.128/27) is 167.215.77.158, found by subtracting 1 from the broadcast address (167.215.77.159).
7. Similar to the prior subnet, subnet B has 94 hosts, so it will need at least 96 addresses (for the subnet ID and broadcast address). The least number of bits that satisfy this is 7 bits. Knowing that, we take the prior subnet and add 128, the result of which is 167.215.77.0/25
8. The broadcast address of subnet B (167.215.77.0/25) is 167.215.77.127, because it is the last address in the IP range.
9. The first IP address of subnet B (167.215.77.0/25) is 167.215.77.1, found by adding 1 to the subnet address.
10. The last IP address of subnet B (167.215.77.0/25) is 167.215.77.126, found by subtracting 1 from the broadcast address (167.215.77.127).
11. Similar to the prior two subnets, subnet C has 247 hosts, so it will need at least 249 addresses (for the subnet ID and broadcast address). The least number of bits that satisfy this is 8 bits. Knowing that, we take the prior subnet and add 256, the result of which is 167.215.76.0/24
12. The broadcast address of subnet C (167.215.76.0/24) is 167.215.76.255, because it is the last address in the IP range.
13. The first IP address of subnet C (167.215.76.0/24) is 167.215.76.1, found by adding 1 to the subnet address.
14. The last IP address of subnet C (167.215.76.0/24) is 167.215.76.254, found by subtracting 1 from the broadcast address (167.215.76.255).
That's incorrect
That's correct
The answer was: public
The answer was: 510
The answer was: 167.215.77.128/27
The answer was: 167.215.77.159
The answer was: 167.215.77.129
The answer was: 167.215.77.158
The answer was: 167.215.77.0/25
The answer was: 167.215.77.127
The answer was: 167.215.77.1
The answer was: 167.215.77.126
The answer was: 167.215.76.0/24
The answer was: 167.215.76.255
The answer was: 167.215.76.1
The answer was: 167.215.76.254