Options

Max subnets per subnet mask

amart83amart83 Member Posts: 30 ■■□□□□□□□□
What is the best way to determine the maximum amount of subnets a default subnet mask can produce?
Career path: Working on upgrading to MCSA2K3 then MSCE2K3 > CCENT > CCNA

Comments

  • Options
    dynamikdynamik Banned Posts: 12,312 ■■■■■■■■■□
    What do you mean by "default subnet mask?"

    The number is going to depend on your host requirements. You could use all the available bits to obtain the maximum, but then you wouldn't be able to have any hosts icon_lol.gif
  • Options
    royalroyal Member Posts: 3,352 ■■■■□□□□□□
    1111111.0000000.00000000.00000000 = 255.0.0.0 (Class A Default Subnet Mask) means that you can borrow 22 bits for subnets since you have to leave 2 over at minimum for clients. This means 2^22 for subnets which means 4,194,304 subnets

    1111111.1111111.00000000.00000000 = 255.255.0.0 (Class B Default Subnet Mask) means that you can borrow 14 bits for subnets since you have to leave 2 over at minimum for clients. This means 2^14 for subnets which means 16,384 subnets

    1111111.1111111.11111111.00000000 = 255.255.255.0 (Class C Default Subnet Mask) means that you can borrow 6 bits for subnets since you have to leave 2 over at minimum for clients. This means 2^6 for subnets which means 16 subnets

    Because we're always leaving 2 bits over for clients, for each scenario you'll have (2^2)-2 = 2 clients. Not a whole lot! But you definitely won't have to worry about broadcast traffic hitting every client!

    If you want more clients, take 1 bit away from the subnet and add it to the clients. For example, for our Class C scenario, we can instead use 3 bits for the subnet which leaves 5 bits for the clients. Because of this, we'll have 2^3 for subnets which means 8 possible subnets and (2^5)-2 for clients which means 30 clients on each subnet.
    “For success, attitude is equally as important as ability.” - Harry F. Banks
  • Options
    amart83amart83 Member Posts: 30 ■■□□□□□□□□
    Sorry, I should have stated my question correctly.

    What is the formula to determine how many networks a subnet mask can produce?

    Do I use 2^X (where X is the left most bits?)

    If that's the case, then:

    255.0.0.0: 2^8 = 256 networks?
    255.255.0.0: 2^16 = 65,536 networks?
    255.255.255.0: 2^24 = 16,777,216 networks?
    Career path: Working on upgrading to MCSA2K3 then MSCE2K3 > CCENT > CCNA
  • Options
    royalroyal Member Posts: 3,352 ■■■■□□□□□□
    I already answered your question by showing you the calculations in my post...
    “For success, attitude is equally as important as ability.” - Harry F. Banks
  • Options
    amart83amart83 Member Posts: 30 ■■□□□□□□□□
    royal wrote:
    I already answered your question by showing you the calculations in my post...
    I appreciate your help royal but my first question was worded incorrectly. Please refer to my second question. I've re-read your post but it doesn't answer the question I originally intended to ask.
    Career path: Working on upgrading to MCSA2K3 then MSCE2K3 > CCENT > CCNA
  • Options
    royalroyal Member Posts: 3,352 ■■■■□□□□□□
    amart83 wrote:
    royal wrote:
    I already answered your question by showing you the calculations in my post...
    I appreciate your help royal but my first question was worded incorrectly. Please refer to my second question.

    Yes, 2^x where x is the left most bits. And again, I show all this in my calculations. You look at the amount of bits I have in the left most and you can see I use the 2^X calculations. What do you find confusing about in my original post where I show the calculations and how things are done?
    “For success, attitude is equally as important as ability.” - Harry F. Banks
  • Options
    jbaellojbaello Member Posts: 1,191 ■■■□□□□□□□
    You need to practice using the above formula then it will answer all your questions, you might also need to check this site I used to study subnetting it's a good primer if your confused.

    http://www.semsim.com/ccna/tutorial/subnetting/subnetting.html
  • Options
    amart83amart83 Member Posts: 30 ■■□□□□□□□□
    royal wrote:
    amart83 wrote:
    royal wrote:
    I already answered your question by showing you the calculations in my post...
    I appreciate your help royal but my first question was worded incorrectly. Please refer to my second question.

    Yes, 2^x where x is the left most bits. And again, I show all this in my calculations. You look at the amount of bits I have in the left most and you can see I use the 2^X calculations. What do you find confusing about in my original post where I show the calculations and how things are done?
    I'm looking at your example and your not using 2^X where X is all the left most bits.

    Your example is 2^X where X is the bits you borrowed (ie, in your example, X disregards the default network bits for the given class)
    Career path: Working on upgrading to MCSA2K3 then MSCE2K3 > CCENT > CCNA
  • Options
    meadITmeadIT Member Posts: 581 ■■■■□□□□□□
    amart83 wrote:

    Your example is 2^X where X is the bits you borrowed (ie, in your example, X disregards the default network bits for the given class).


    That's exactly what a subnet is. It's when you borrow bits to subnet. If you're asking how many networks (not sub-networks) are in each class, then your 2^8, 2^16, and 2^24 calculations are correct. I think your questions may be unclear.
    CERTS: VCDX #110 / VCAP-DCA #500 (v5 & 4) / VCAP-DCD #10(v5 & 4) / VCP 5 & 4 / EMCISA / MCSE 2003 / MCTS: Vista / CCNA / CCENT / Security+ / Network+ / Project+ / CIW Database Design Specialist, Professional, Associate
  • Options
    royalroyal Member Posts: 3,352 ■■■■□□□□□□
    amart83 wrote:
    Your example is 2^X where X is the bits you borrowed (ie, in your example, X disregards the default network bits for the given class)

    That's in my last example. In the first 3 examples I do it all based on the default subnet mask. Hence I'm using all left-most bits instead of borrowed bits.
    “For success, attitude is equally as important as ability.” - Harry F. Banks
  • Options
    amart83amart83 Member Posts: 30 ■■□□□□□□□□
    A little late to reply but...

    I was just looking at things the wrong way.

    Thanks to everyone who helped and have a happy turkey day!
    Career path: Working on upgrading to MCSA2K3 then MSCE2K3 > CCENT > CCNA
Sign In or Register to comment.