Configuring subnets quandry

networking

I am learning the basics of subnetting however am faced with a dilemma on approaching the issue. For example I have been tasked to set up a network with 20 hosts using a Class C network addressing scheme which I understand to be 192.168.0.0 with the default subnet mask of 255.255.255.0. Now I understand that it leaves me with 254 hosts 0 being the subnet and 255 being the broadcast.

So if I have 20 hosts to setup that leaves 234 host spaces wasted unless the network grows to include that many hosts. Based on the requirements of 20 hosts I have the following questions.

  1. How do I accommodate future growth e.g. how many hosts do I allow for?
  2. If I were to simply restrict the number of hosts to 20 I take it that would leave me with a /27 subnet i.e. 192.168.0.0/27. Is that right?
  3. If 2 point is correct I would have 8 subnets with the following network subnet address, broadcast addess and starting and ending host address. Is that right?
  4. If 3 is right do I still a router to allow each subnet to communicate with one another?

Subnet addresses

192.168.0.0
192.168.0.32
192.168.0.64
192.168.0.96
192.168.0.128
192.168.0.160
192.168.0.192
192.168.0.224

The broadcast address of each of these would be

192.168.0.31
192.168.0.63
192.168.0.95
192.168.0.127
192.168.0.159
192.168.0.191
192.168.0.223

The starting and ending host addresses for each of these would be

192.168.0.1 - 192.168.0.30
192.168.0.62 - 192.168.0.94
192.168.0.126 - 192.168.0.158
192.168.0.190 - 192.168.0.222

Unless I have understood it incorrectly my host addresses should be as follows as opposed to what I thought they were above

192.168.0.1  - 192.168.0.30
192.168.0.64 - 192.168.0.94
192.168.0.96 - 192.168.0.126
192.168.0.128 - 192.168.0.158
192.168.0.192 - 192.168.0.222
192.168.0.224 - 192.168.0.254

Best Answer

  1. You're totally right, 254 hosts are allowed, so you can add 234.
  2. Exactly, /28 would be too small, /27 fits fine (30 hosts allowed)
  3. Exactly.
  4. If you have a router, it can route traffic between the subnets (if they're connected of course and the router knows how to route between them).
Related Question