Link to home
Start Free TrialLog in
Avatar of ashp87
ashp87

asked on

Network Address

Suppose that instead of using 16 bits for the network part of a class B address originally, 20 bits had been used.  How many class B networks would there have been?
Avatar of sullivanr6
sullivanr6
Flag of United States of America image

your subnetting down, to increase the number of total networks, while decreasing the total number of hosts you can support. If you orignally had a /16 bit mask then you'd have a total of 65536 networks, if you take host bits (which is what you're doing when you subnet down) away and give them to the network you'd have 2^20 which would give you over a million networks (1048576), and you'd be able to support 4094 hosts on each network.
The historical "class B" address range was 128.0.0.0 to 191.255.255.255.

That is, all addresses in the range:
01000000.00000000.00000000.00000000
01011111.11111111.11111111.11111111

This was historically spilt so that the 16 first bits were used for network address, and the remaining 16 bits were used for host addresses.

That is, the mask used to split network address and host address was:
11111111.11111111.00000000.00000000

This resulted in:
00011111.11111111  = 2^14 = 16384 subnets

If one instead had used /20 instead of /16, the mask would have been:
11111111.11111111.11110000.00000000

Which would have given:
00011111.11111111.1111 = 2^18 = 262144 subnets.


i don't understand how you've reached this conclusion???

"This resulted in:
00011111.11111111  = 2^14 = 16384 subnets"

why do you have the first three bits off?

J
The range for Class B was 128.0.0.0-191.255.255.255. The three first bits do not change.
ASKER CERTIFIED SOLUTION
Avatar of larsga
larsga
Flag of Norway image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
yea, i keep wanna to think everything is classless. but i guess in the "real world" your class B address ranges actaully mean somthing.
thanx, for clearing that up.

J
Note that I said "was" above. The traditional "classful" A/B/C/D/E were introduced in 1981. Routers were very short on CPU and RAM in those days, and one useful feature of "classful" was that the router only had to look at the first 3 bits of the address to determine the netmask.

It did have some serious problems, though. It was very inflexible, and the "C class" was very inefficient. Classful was abandoned around 1993, and was replaced by netmasks/prefixes (cidr). So what "class" an address is in has absolutely no practical meaning today in terms of inter-/intra-network routing - we use explicit netmasks instead.

The question was very explicit in what it asked for (I suppose he is cramming for something like CCDA/CCNA, the question is designed to show if you have an understanding of how the historical "classfull" division of the 32bit IP address space was done).

ashp87, the following should be useful reading for you:
http://en.wikipedia.org/wiki/Classful_network
http://en.wikipedia.org/wiki/CIDR
Avatar of ashp87
ashp87

ASKER

The answer was actually 4094 i believe.
Yes, you have to subtract 2 for the number of usable host addresses. The top and bottom host address have special meaning (broadcast and network respectively), so those two can't be used for actual hosts.

So the number of usable host addresses in a subnet is 2^n -2 (n being the number of bits used for the host part of the address).