Example: quiz answers

How to Master Subnetting - gns3vault.com

How to Master Subnetting Page 2 of 103 All contents copyright C 2002-2013 by Ren Molenaar. All rights reserved. No part of this document or the related files may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording, or otherwise) without the prior written permission of the publisher. Limit of Liability and Disclaimer of Warranty: The publisher has used its best efforts in preparing this book, and the information provided herein is provided "as is." Ren Molenaar. makes no representation or warranties with respect to the accuracy or completeness of the contents of this book and specifically disclaims any implied warranties of merchantability or fitness for any particular purpose and shall in no event be liable for any loss of profit or any other commercial damage, including but not limited to special, incidental, consequential, or other damages.

This book will teach you how to calculate subnets and subnet masks, how to calculate the numbers of hosts available etc. for class A,B and C networks. And the best part: You will be able to do this off the top of your head, no need to write stuff down!

Tags:

  Calculate, How to calculate, Subnet, How to calculate subnets

Information

Domain:

Source:

Link to this page:

Please notify us if you found a problem with this document:

Other abuse

Advertisement

Transcription of How to Master Subnetting - gns3vault.com

1 How to Master Subnetting Page 2 of 103 All contents copyright C 2002-2013 by Ren Molenaar. All rights reserved. No part of this document or the related files may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording, or otherwise) without the prior written permission of the publisher. Limit of Liability and Disclaimer of Warranty: The publisher has used its best efforts in preparing this book, and the information provided herein is provided "as is." Ren Molenaar. makes no representation or warranties with respect to the accuracy or completeness of the contents of this book and specifically disclaims any implied warranties of merchantability or fitness for any particular purpose and shall in no event be liable for any loss of profit or any other commercial damage, including but not limited to special, incidental, consequential, or other damages.

2 Trademarks: This book identifies product names and services known to be trademarks, registered trademarks, or service marks of their respective holders. They are used throughout this book in an editorial fashion only. In addition, terms suspected of being trademarks, registered trademarks, or service marks have been appropriately capitalized, although Ren Molenaar cannot attest to the accuracy of this information. Use of a term in this book should not be regarded as affecting the validity of any trademark, registered trademark, or service mark. Ren Molenaar is not associated with any product or vendor mentioned in this book. How to Master Subnetting Page 3 of 103 Introduction Binary and hexadecimal numbers are a complete mystery for many of us.

3 Often we don t find it really interesting because on the internet there are plenty of subnet or binary calculators where you can easily calculate from decimal to binary to hexadecimal or the other way around, without knowing how the exact calculation works. This is no problem when you are not configuring or designing networks on a daily basis, but it will be a problem as soon as you take a networking exam, so it s best to know how to do these calculations off the top of your head. Another advantage you will have is once you have mastered the art of binary calculations you can immediately see how big a network is and what the subnet mask is when people start throwing numbers at you. One of the things I do in life is work as a Cisco Certified System Instructor (CCSI) and I noticed many people have trouble finding out what the subnet mask is, how many hosts are in a subnet , how to do summarization and so they fail at passing exams like CCNA or CCNP.

4 Anyone working with networks on a professional level should be able to do binary calculations if you ask me. This book will teach you how to calculate subnets and subnet masks, how to calculate the numbers of hosts available etc. for class A,B and C networks. And the best part: You will be able to do this off the top of your head, no need to write stuff down! Once you have mastered the tricks in this book you will wonder why you ever had difficulty solving Subnetting questions :) Enjoy reading my book and good luck mastering your binary and Subnetting skills! There are 10 types of people in the world: Those that understand binary, and those who don't! If you have any questions or comments about this book, please let me know: E-mail: Website: Facebook: Twitter: Youtube: How to Master Subnetting Page 4 of 103 Index Introduction.

5 3 1. Binary Basics .. 5 2. Welcome to Subnetting .. 7 3. Subnetting : The beginning .. 13 4. Subnetting : The Fast Way .. 31 5. Classless Inter-Domain Routing .. 43 6. Variable length subnet mask (VLSM) .. 45 7. Summarization .. 53 8. Hexadecimal calculations .. 57 9. Tackling miscellaneous Subnetting questions .. 59 10. Create your own cheat sheet .. 63 11. Final Thoughts .. 64 Appendix A Answers to exercises .. 65 How to Master Subnetting Page 5 of 103 1. Binary Basics Before we start calculating subnets and talk about IP addressing, let s first check out some basics of binary calculations. We are all used to work with decimal numbers where we count from 1 till 10. This is easy because we have 10 fingers so we don t have to count off the top of our head.

6 In the binary system, we only work with 0 or 1. 0 = Off 1 = On Bits 128 64 32 16 8 4 2 1 The bit on the far left side is called the most significant bit (MSB) because this bit has the highest value. The bit on the far right side is called the least significant bit (LSB) because this one has the lowest value. So how do we convert decimal numbers into binary? Let me show you an example: If we want the decimal number 0 in binary this means we leave all the bits off . Bits 128 64 32 16 8 4 2 1 0 0 0 0 0 0 0 0 0 Let s take the number 178 and turn it into binary, just start at the left and see which bits fit in to make this number. 128 + 32 + 16 + 2 = 178. Bits 128 64 32 16 8 4 2 1 178 1 0 1 1 0 0 1 0 Just one more! Let s turn 255 into binary.

7 128 + 64 + 32 + 16 + 8 + 4 + 2 +1 = 255 Bits 128 64 32 16 8 4 2 1 255 1 1 1 1 1 1 1 1 As you can see 255 is the highest decimal number you can create when you have 8 bits to play with. As you can see, whenever you add a bit, the decimal value doubles. For example: 2,4,8,16,32,64,128,256,512,1024,2048 and so on. This is called the powers of 2 . This is a good moment to create your own cheat sheet . Take a piece of paper and write down the 8 bits for yourself. How to Master Subnetting Page 6 of 103 Exercise 1: See if you can solve the following decimal to binary calculations: Bits 128 64 32 16 8 4 2 1 12 54 187 192 44 147 Now try to do it the other way around and calculate from binary to decimal: Bits 128 64 32 16 8 4 2 1 1 1 0 0 1 0 1 0 0 0 1 1 1 0 0 1 0 1 0 1 0 1 0 1 1 1 1 1 0 0 1 1 0 0 1 0 0 0 0 1 1 0 0 0 0 1 1 1 The appendix of this book will show you the answers.

8 How to Master Subnetting Page 7 of 103 2. Welcome to Subnetting Before we start calculating subnets, the first thing we need to do is take a look at what subnets and IP addresses are. An IP address is a numeric value that you configure on every device in a network, think about computers, laptops, servers but also networking equipment like routers, firewalls and switches. The IP address identifies every device with a unique number. Devices within the same IP subnet are able to communicate without using a router. Let s take a look at some of the terminology you might encounter when we talk about IP addresses: IP Terminology: Bit(s) A bit has 2 possible values, 1 or 0. (on or off) Byte A byte is 8 bits. Octet An octet is just like a byte 8 bits, you often see byte or octet both being used.

9 Nibble A nibble is 4 bits, we ll talk about this more in the Hexadecimal chapter. Network address When we talk about routing, the network address is important. Routers use the network address to send IP packets to the right destination. with subnet mask is an example of a network address. subnet A subnet is a network that you split up in multiple smaller subnetworks. Broadcast address The broadcast address is being used by applications and computers to send information to all devices within a subnet , with subnet mask is an example of a broadcast address. Hierarchical IP addressing: IP addresses are 32 bits, divided in 4 blocks also known as 4 bytes or octets. Every byte has 8 bits. 4x8 = 32 bits. There are many ways to write down an IP address: Decimal: Binary: Hexadecimal: Decimal is what we are used to work with, as this is the way you normally configure an IP address in operating systems like Microsoft Windows, Linux or most networking equipment.

10 Hexadecimal you won t see often but for example you might encounter this in the windows registry. How to Master Subnetting Page 8 of 103 IP addresses are hierarchical unlike non-hierarchical addresses like MAC-addresses. This has some advantages, you can use a lot of IP addresses (with 32 bits the biggest number you can create is 4,3 billion or to be precise 4,294,967,296). The advantage of having a hierarchical model is needed for routing, imagine that every router on the planet would need to know every IP address on the planet. Routing wouldn t be very efficient that A better solution is a hierarchical model where we use network , subnet and hosts . Try to compare this to phone numbers: 0031 This is the country code for The Netherlands 013 This is the city code for Tilburg 1234567 This is a single number for a customer.


Related search queries