-1

I need to calculate a network with VLSM. It says I should start with the 5th net of private class B when subnet mask is 16. What is this 5th net?

The network looks like this: https://dl.dropboxusercontent.com/u/34140308/uploads/IMG_20150108_074523.jpg

Exceen
  • 765
  • 1
  • 4
  • 20

1 Answers1

2

Exceen, it's easier if I write it as an answer.

The private class B network is 172.16.0.0/12.

You need to use subnet mask /16, so every private class B network is 0.0.255.255 large or a little more than 65k hosts per subnet.

  • 1st subnet: 172.16.0.0/16
  • 2nd subnet: 172.17.0.0/16
  • 3rd subnet: 172.18.0.0/16
  • 4th subnet: 172.19.0.0/16
  • 5th subnet: 172.20.0.0/16.

You'll need to use 172.20.0.0/16 for your network diagram. From the diagram we can tell you need 8 subnets. So you can either split the 172.20.0.0/16 range into 172.20.0.0/24 - 172.20.8.0/24 or use VLSM to be more efficient.

CustomX
  • 9,948
  • 30
  • 85
  • 115