just pure fixed‑size subnetting
Exercise 1 // Class C, simple fixed subnetting
You are given the network: 192.168.50.0 /24
You must create 4 equal‑size subnets.
Tasks:
- Determine the new subnet mask
- Determine the block size
- List all subnet IDs
For the 3rd subnet, give:
Network address // Broadcast address
First usable // Last usable
Exercise 2 // Class B, moderate fixed subnetting
You are given the network: 172.16.0.0 /16
You must create 32 equal‑size subnets.
Tasks:
- Determine the new prefix length
- Determine the block size
- List the first 5 subnet IDs
For the last subnet, give:
Network address / Broadcast address
First usable / Last usable
Exercise 3 // Class A, larger space, more subnets
You are given the network: 10.0.0.0 /8
You must create 512 equal‑size subnets.
Tasks:
- Determine the new subnet mask
- Determine the increment in the octet where subnetting occurs
- Provide the subnet ID of subnet #257
For subnet #257, give:
Network address / Broadcast address
First usable / Last usable
Exercise 4 // Class C, many host per subnet
You are given the network: 198.51.100.0 /24
You must create subnets that each support at least 50 hosts.
(Still fixed‑size, no VLSM — all subnets identical.)
Tasks:
- Determine the required subnet mask
- Determine the number of subnets created
- List the first 4 subnet IDs
For the 2nd subnet, give:
Network address / Broadcast address
First usable addr / Last usable addr
Exercise 5 // Class B, high‑difficulty fixed subnetting
You are given the network: 172.20.0.0 /16
You must create subnets that each support at least 900 hosts.
All subnets must be equal size.
Tasks:
- Determine the new prefix length
- Determine the number of subnets created
- Determine the block size
- Provide the subnet ID of subnet #14
For subnet #14, give:
Network address / Broadcast address
First usable addr / Last usable addr
oplossingen:
EXERCISE 1 — 192.168.50.0/24 into 4 equal subnets
New prefix & mask: /24 → /26 (255.255.255.192)
Block size: 256−192=64 → /26 blocks of 64 addresses
Subnets:
- 192.168.50. 0 /26
- 192.168.50. 64 /26
- 192.168.50.128 /26
- 192.168.50.192 /26