Size: 1023
Comment:
|
Size: 1073
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 1: | Line 1: |
Back to ComputerTerms |
|
Line 19: | Line 21: |
Back to ComputerTerms |
Back to ComputerTerms
Original ClassfulAddressing
Class |
Starts With Bits |
Network Bit Length |
Host Bit Length |
Range of Host Addresses |
|
Class A |
0 |
8 |
24 |
1.0.0.0 to 127.255.255.255 |
|
Class B |
10 |
16 |
16 |
128.0.0.0 to 191.255.255.255 |
|
Class C |
110 |
24 |
8 |
192.0.0.0 to 223.255.255.255 |
|
Class D |
1110 |
Multicast Address |
224.0.0.0 to 239.255.255.255 |
||
Class E |
1111 |
Reserved for future use |
240.0.0.0 to 255.255.255.255 |
Subnetting
The bit patern at the beginning of an address gave the type. But this is a very ineffecient classification because what if someone needs only 256 addresses? The you have to give them a class B.
So subnetting allows us to use a subnet mask to hand out smaller address ranges:
124.0.0.0/255.255.255.240 or 124.0.0.0/28 is a classless subnet that has 16 IP addresses in it.
If you get confused, you can always translate the address and the subnet mast to binary and examine them there.
Back to ComputerTerms