(a) Given IP Address Block:
Binary: 10010110.00110010.00000000.00000000
(i) Convert to Dotted Decimal Notation:
Convert each 8-bit segment from binary to decimal:
10010110
= 15000110010
= 5000000000
= 000000000
= 0
So, the IP address block in Dotted Decimal Notation is:
150.50.0.0
(ii) Identify the Class of the IP Address:
The first octet (
150
) falls within Class B (128 β 191).Class B networks have a default subnet mask of 255.255.0.0 (/16).
(iii) Number of IP Addresses in the Block:
A Class B network with a /16 subnet mask means:
2(32β16)=216=655362^{(32 β 16)} = 2^{16} = 655362(32β16)=216=65536
So, the total number of IP addresses is 65,536.
(iv) First and Last IP Addresses:
First IP Address (Network Address): 150.50.0.0
Last IP Address (Broadcast Address): 150.50.255.255
(b) Subnetting to Create 8 Subnets: (i) Number of Bits Needed for Subnetting:
To create 8 subnets, we use the formula:
2nβ₯82^n \geq 82nβ₯8 n=3(sinceΒ 23=8)n = 3 \quad \text{(since \(2^3 = 8\))}n=3(sinceΒ 23=8)
So, 3 more bits are borrowed from the host portion.
(ii) Number of Hosts per Subnet:
A Class B default has 16 host bits. Borrowing 3 bits leaves us with:
32β(16+3)=13(HostΒ bitsΒ left)32 β (16 + 3) = 13 \quad \text{(Host bits left)}32β(16+3)=13(HostΒ bitsΒ left)
Total number of hosts per subnet:
213β2=8192β2=81902^{13} β 2 = 8192 β 2 = 8190213β2=8192β2=8190
(We subtract 2 for the Network Address and Broadcast Address.)
(iii) Subnet Mask:
Default Class B subnet mask: 255.255.0.0 (/16)
Adding 3 subnet bits: /19
Subnet Mask in Dotted Decimal: 255.255.224.0
(iv) Subnet Ranges:
Each subnet increments by 32 in the third octet (224 = 256 - 32
).
Subnet Table
Subnet No. | Network Address | Broadcast Address | Usable Host IP Range |
---|---|---|---|
1 | 150.50.0.0 | 150.50.31.255 | 150.50.0.1 β 150.50.31.254 |
2 | 150.50.32.0 | 150.50.63.255 | 150.50.32.1 β 150.50.63.254 |
3 | 150.50.64.0 | 150.50.95.255 | 150.50.64.1 β 150.50.95.254 |
4 | 150.50.96.0 | 150.50.127.255 | 150.50.96.1 β 150.50.127.254 |
5 | 150.50.128.0 | 150.50.159.255 | 150.50.128.1 β 150.50.159.254 |
6 | 150.50.160.0 | 150.50.191.255 | 150.50.160.1 β 150.50.191.254 |
7 | 150.50.192.0 | 150.50.223.255 | 150.50.192.1 β 150.50.223.254 |
8 | 150.50.224.0 | 150.50.255.255 | 150.50.224.1 β 150.50.255.254 |