











CompTIA
Exam Vouchers
Save money on CompTIA exams
| Question of the day
Sign up to receive
interactive practice questions
for MCSE, CompTIA
Cisco and other exams
| TestKing
Get MCSE, MCSD, CCNA, CCNP,A+, N+ and many more | * ExamSheets *
Guide for Success!
Actual Questions & Answers
MCSE, MCSD, A+ ,CCNA, CCNP
Oracle 8i, Oracle 9i Online practice tests
Certification sites Online university Online college Online education Distance learning Software forum Server administration forum Programming resources
|
|  |
captain
NCC-1701

Registered: Jan 2001 Location: Denver Country: USA State: Certifications: Net+, MCP, MCSA 2K, MCSE 2K Working on: Security+, MCSE Win2K3
Total Posts: 253
|
|
Subnetting
Ok, I know that this topic has been beaten into ground, but this obviously my weakness. I am seeing references such as 192.168.1.0/24. I am assuming that /24 is the subnet mask, which is 255.255.255.0 because there are 8 bits in each octet. Down these same lines, something like 192.168.1.0/20 would be 255.255.240.0???? Also, in seeing something like:
Your network requires 10 subnets with 10 hosts per subnet, how in the hell do I equate this? I once learned this, but have completely forgotten how to do this! Please help!!!
__________________
-Captain
Report this post to a moderator
|
|
09-21-02 09:57 AM
|
|
Pavlov
Old Timer F

Registered: Jan 2001 Location: California Country: United States State: Certifications: A+, Net+, i-Net+, CIW-A, MCP NT4, MCSA 2000, MCSE 2000 Working on: Having Fun
Total Posts: 2615
|
|
It comes down to understanding how and where to steal bits from. Check out www.learntosubnet.com. Some keywords you are searching for are supernetting and variable length subnetting.
bits: 1 2 4 8 16 32 64 128
nets: 2 4 8 16 32 64 128 256
hosts: 256 128 64 32 16 8 4 2
mask: 128 192 224 240 248 252 254 255
determining subnets: --->
determining hosts: <---
So if you have an IP of 192.168.2.2/25, you have to steal one bit to get from /24 to /25. This means a different subnet mask - look at the chart above and move one bit to the right - the new subnet mask (instead of 255.255.255.0) becomes 255.255.255.128.
__________________
The supreme accomplishment is to blur the line between work and play.
---------------------------------------
We have enough youth, how about a fountain of smart?
Last edited by Pavlov on 09-21-02 at 01:45 PM
Report this post to a moderator
|
|
09-21-02 01:40 PM
|
|
captain
NCC-1701

Registered: Jan 2001 Location: Denver Country: USA State: Certifications: Net+, MCP, MCSA 2K, MCSE 2K Working on: Security+, MCSE Win2K3
Total Posts: 253
|
|
Thanks a lot!
Thank you very much! Subnetting can be so confusing!!! In 7 years, I have never had to do it! Appreciate the help!
__________________
-Captain
Report this post to a moderator
|
|
09-21-02 08:14 PM
|
|
captain
NCC-1701

Registered: Jan 2001 Location: Denver Country: USA State: Certifications: Net+, MCP, MCSA 2K, MCSE 2K Working on: Security+, MCSE Win2K3
Total Posts: 253
|
|
|
09-21-02 10:00 PM
|
|
twister166
I am dizzy...

Registered: Jul 2002 Location: FL, USA Country: United States State: Certifications: A+, N+, Srv+, MCSE 2K, MCSA, CCNA, CCDA, CTT+ (CBT) Working on: CTT+ (video), CCNP, CCDP, CISSP
Total Posts: 1048
|
|
Posted this while back, hope it helps:
subnetting is pretty simple:
there 4 sets of 8 bits for masks:
00000000.00000000.00000000.00000000
The mask bits must be flip to 1 in sequence, that means you cannot do 11011000, it must 11111000. And every bit you move to the right. The bit weight starts from 128 and every bit that you move to the right, it halfs: 10000000 = 128, 110000000 = 128+64 = 192, 11100000 = 128+64+32 = 224... 11111110 = 128+64+32+16+8+4+2 = 254, you will not see 255.255.255.128 or 255.255.255.255.254 in subnetting a class C address as the two subnet are ilegal, because .128 does not provide any usable network number (N-2) and .254 does not provide usable hosts (H-2).
And the slash number is nothing but tells how many bits are masked. So, if /8 is the default class A, /16 is the default for class B and /24 is the default for class C.
Just know that if you want to calculate host, start the bits from the most RIGHT bit, then starts: 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024 and minus 2 for usable host. If you are calculating networks, starts from the most LEFT bit: 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024 and minus 2 for usable networks.
Example you are given a network of 192.168.5.0/24. You need max of 32 hosts, so, 2, 4, 8, 16, 32, 64 (you need 6 bits, as usable hosts are minus 2) that is 6 bits for hosts and from the right must be preserved as 0, that means you flip 2 bits for network that is 11000000 = 192 -> 255.255.255.192 or /26.
Example you are given a network of 172.13.0.0/16 and you need 1000 networks. So, 2, 4, 8, 16, 32, 64, 128, 256, 512 and 1024, that is 10 bits from the left must be flipped to 1. So, since it is /16 so, we starts at 11111111.11111111.00000000.00000000 and flip 10 bits from the left: 11111111.11111111.11111111.11000000 and that is 255.255.255.192.
After you memorized the 2, 4, 8, 16, 32, 64, 128, 256, 512 and 1024, you pretty much do the subnet in your head.
Good Luck.
Report this post to a moderator
|
|
09-22-02 12:00 AM
|
|
jeff_j_black
that's what "THEY" said..

Registered: Jan 2002 Location: Country: United States State: Certifications: Working on:
Total Posts: 2723
|
|
Another good way to remember this is make a spreadsheet in excel that works it all out like above, and then you will be able to write it out on paper when you sit for the test.
Report this post to a moderator
|
|
09-22-02 02:31 AM
|
|
captain
NCC-1701

Registered: Jan 2001 Location: Denver Country: USA State: Certifications: Net+, MCP, MCSA 2K, MCSE 2K Working on: Security+, MCSE Win2K3
Total Posts: 253
|
|
Great idea!
Yeah, I will do that. My test is Thursday. My nerves are already getting to me. I hate taking tests! I am such a mess before the tests. Appreciate the suggestion!
__________________
-Captain
Report this post to a moderator
|
|
09-22-02 08:02 AM
|
|
l9nux
Linux & M$ in harmony! :p M

Registered: Dec 2001 Location: Sussex, UK Country: United Kingdom State: Certifications: MCSE (70-210, 70-215, 70-216, 70-217, 70-219, 70-220, 70-214) Working on: CCA, MCSE 2003
Total Posts: 167
|
|
|
09-22-02 09:35 AM
|
|
captain
NCC-1701

Registered: Jan 2001 Location: Denver Country: USA State: Certifications: Net+, MCP, MCSA 2K, MCSE 2K Working on: Security+, MCSE Win2K3
Total Posts: 253
|
|
Thanks
Appreciate it. Hope I get past this! I guess as they say, if you don't use, you lose it! Good luck to you!
__________________
-Captain
Report this post to a moderator
|
|
09-23-02 03:20 PM
|
|
|
Click here for list of 70-216
study guides
MCSE exam notes
70-216 exam details
Forum Rules: Who Can Read The Forum? Any registered user or guest.
Who Can Post New Topics? Any registered user.
Who Can Post Replies? Any registered user.
Changes: Messages can be edited by their author.
Posts: HTML code is OFF. Smilies are ON. vB code is ON. [IMG] code is ON. |
|
ExamNotes forum archive
|