Fun subnetting

DevilsbaneDevilsbane Member Posts: 4,214 ■■■■■■■■□□
You are the network administrator for the small branch office of a large corporation. Your network consists of 85 Windows XP Professional computers and 10 Windows Server 2003 computers. You have been assigned the IP address of 204.29.99.0/24. You are not allowed to use a different IP address range. However, subnetting is permitted. All three subnets connect to a central router. An additional subnet will be added in the future.
You must divide the IP addresses, reserving the maximum number of IP addresses for the future subnet. Subnet1 contains 10 computers, Subnet2 contains 25 computers, and Subnet3 contains 60 computers.
How should each subnet's network IP address be configured?

A.
Subnet1 - 204.29.99.192/27
Subnet2 - 204.29.99.128/26
Subnet3 - 204.29.99.0/25


B.
Subnet1 - 204.29.99.240/29
Subnet2 - 204.29.99.224/28
Subnet3 - 204.29.99.192/27


C
Subnet1 - 204.29.99.224/28
Subnet2 - 204.29.99.192/27
Subnet3 - 204.29.99.128/26


D
Subnet1 - 204.29.99.192/27
Subnet2 - 204.29.99.192/27
Subnet3 - 204.29.99.192/27


I am curious to hear what your answers are, I will provide the "correct answer" along with my thought process later.

Thanks
Decide what to be and go be it.

Comments

  • dynamikdynamik Banned Posts: 12,312 ■■■■■■■■■□
    You simply need to select the minimum number of bits that allows that many hosts.

    10 = 4 (/28 )
    25 = 5 (/27)
    60 = 6 (/26)

    The answer is obvious with those choices. If you have a question that has multiple answers with the same subnets, check the ranges and find the one that doesn't have any overlap or other oddities.
  • DevilsbaneDevilsbane Member Posts: 4,214 ■■■■■■■■□□
    You know I did that, and came up with 28 for the first one, but then went back and changed it to 27 for some reason. I guess I just can't count...

    And yes, the answer is C.
    Decide what to be and go be it.
  • knownheroknownhero Member Posts: 450
    dynamik wrote: »
    You simply need to select the minimum number of bits that allows that many hosts.

    10 = 4 (/28 )
    25 = 5 (/27)
    60 = 6 (/26)

    The answer is obvious with those choices. If you have a question that has multiple answers with the same subnets, check the ranges and find the one that doesn't have any overlap or other oddities.

    Thats what I did. I just remembered that its doubles when taking 1 of the mask length:

    For example:

    /32 = 1
    /31 = 2
    /30 = 4
    /29 = 8
    /28 = 16

    And worked it out that way.
    70-410 [x] 70-411 [x] 70-462[x] 70-331[x] 70-332[x]
    MCSE - SharePoint 2013 :thumbup:

    Road map 2017: JavaScript and modern web development

  • earweedearweed Member Posts: 5,192 ■■■■■■■■■□
    knownhero wrote: »
    Thats what I did. I just remembered that its doubles when taking 1 of the mask length:

    For example:

    /32 = 1
    /31 = 2
    /30 = 4
    /29 = 8
    /28 = 16

    And worked it out that way.
    I did it similar to this, also
    No longer work in IT. Play around with stuff sometimes still and fix stuff for friends and relatives.
  • dynamikdynamik Banned Posts: 12,312 ■■■■■■■■■□
    knownhero wrote: »
    Thats what I did. I just remembered that its doubles when taking 1 of the mask length:

    Yep. With binary, if you remember 1 bit = 2 values, 5 bits = 32 values and 10 bits = 1024 values, you can easily double/halve your way to any other one (that'll you'll likely be tested on, anyway).
  • earweedearweed Member Posts: 5,192 ■■■■■■■■■□
    It works for IPv6 subnetting also.
    No longer work in IT. Play around with stuff sometimes still and fix stuff for friends and relatives.
Sign In or Register to comment.