SlideShare ist ein Scribd-Unternehmen logo
1 von 35
Subnetting Made Easy?Subnetting Made Easy?
The “moving stick” and the “magic number”The “moving stick” and the “magic number”
Jim BlancoJim Blanco
Aparicio-Levy Technical CenterAparicio-Levy Technical Center
Subnetting Made EasySubnetting Made Easy
•First let’s look at the overall requirement.
•A class C network consists of 4 octets totaling 32 bits.
•If we use a Class C network such as 192.168.12.0, we can only
make use of the last octet or 8 bits.
•There are 256 possible combinations of bits “on” or “off” in one octet.
Subnetting Made EasySubnetting Made Easy
•256 addresses would result in a very large collision domain.
•256 hosts using the “wire” one at a time would render the LAN
unusable.
•In business environments, host addresses are usually divided
into groups or subnets for management and security reasons.
•In addition the first address is reserved for the subnet address
and the last for a broadcast address.
•So we really have 254 available host addresses.
Subnetting Made EasySubnetting Made Easy
 We could just divide the addresses in the last octet into more manageable
blocks or “subnets”:
256/4 = 64 or 4 subnets each with 64 addresses
256/8 = 32 or 8 subnets each with 32 addresses
256/16 = 16 or 16 subnets each with 16 addresses
 But this is too simple. We must also keep track of subnet and broadcast
addresses.
Subnetting: Class CSubnetting: Class C hosthost addressaddress
192192 168168 1212 00
192192 168168 1212 0000000000000000
192192 168168 1212
192192 168168 1212
192192 168168 1212
192192 168168 1212
192192 168168 1212
192192 168168 1212
192192 168168 1212
•First convert the last octet, represented by the decimal number “0”,
into 8 binary “0”s to represent 8 bits.
Subnetting: Class CSubnetting: Class C hosthost addressaddress
192192 168168 1212 00
192192 168168 1212 000000000000000
192192 168168 1212
192192 168168 1212
192192 168168 1212
192192 168168 1212
192192 168168 1212
192192 168168 1212
192192 168168 1212
• By just utilizing the last bit, we have two possible IP addresses.
Subnetting: Class CSubnetting: Class C hosthost addressaddress
192192 168168 1212 00
192192 168168 1212 000000000000000 bit offbit off
192192 168168 1212 00 IP addressIP address
192192 168168 1212
192192 168168 1212
192192 168168 1212
192192 168168 1212
192192 168168 1212
192192 168168 1212
•First, with the bit remaining at “0” or off, the IP address is 192.168.12.0
Subnetting: Class CSubnetting: Class C hosthost addressaddress
192192 168168 1212 00
192192 168168 1212 0000000000000000 bit offbit off
192192 168168 1212 00 IP addressIP address
192192 168168 1212 000000000000001 bit onbit on
192192 168168 1212 11 IP addressIP address
192192 168168 1212
192192 168168 1212
192192 168168 1212
192192 168168 1212
•Second, when the bit is “1” or turned on, the IP address is 192.168.12.1
•Thus we have 2 possible IP addresses just utilizing the last bit
Subnetting: Class CSubnetting: Class C hosthost addressaddress
192192 168168 1212 00
192192 168168 1212 0000000000000000 bit offbit off
192192 168168 1212 00 .0.0
192192 168168 1212 0000000100000001 bit onbit on
192192 168168 1212 11 .1.1
192192 168168 1212 00000000000000 .0.0
192192 168168 1212 00000000000001 .1.1
192192 168168 1212 00000000000010 .2.2
192192 168168 1212 00000000000011 .3.3
•If we use the two last bits, in the on an off positions, we have four possible IP
addresses.
•We could continue with combinations of 3, 4 and more bits up to 8 which
would result in 256 combinations of 1 and 0 or potential IP addresses.
•Remember “0” is a number.
Subnetting: Class CSubnetting: Class C hosthost addressaddress
192192 168168 1212 00
192192 168168 1212 0000000000000000 bit offbit off
192192 168168 1212 00 .0.0
192192 168168 1212 0000000100000001 bit onbit on
192192 168168 1212 11 .1.1
192192 168168 1212 00000000000000 .0.0
192192 168168 1212 00000000000001 .1.1
192192 168168 1212 00000000000010 .2.2
192192 168168 1212 00000000000011 .3.3
•Since we cannot use the first address (subnet), 0 or the last address 255
(broadcast) we have 256-2=254 usable addresses.
•That’s one big collision domain.
•We need to divide it up into smaller blocks or “subnets”.
Subnetting: Class CSubnetting: Class C hosthost addressaddress
 Hold on. Thought we had 256 addresses?Hold on. Thought we had 256 addresses?
Or is it 254?Or is it 254?
 There are 256 combinations of 1 and 0.There are 256 combinations of 1 and 0.
 Possible addresses run from .0 to .255.Possible addresses run from .0 to .255.
 ““0” is a number.0” is a number.
 0-255 yields 256 addresses.0-255 yields 256 addresses.
 The first “0” is reserved for the subnet andThe first “0” is reserved for the subnet and
the last “255” is the broadcast address.the last “255” is the broadcast address.
Subnetting: Class CSubnetting: Class C hosthost addressaddress
 So that’s 256 – 2 or 254 usable addressesSo that’s 256 – 2 or 254 usable addresses
in our one big subnet.in our one big subnet.
 Next we need to decide how manyNext we need to decide how many
subnets will meet our networkingsubnets will meet our networking
requirement.requirement.
Subnetting: Class CSubnetting: Class C subnetsubnet addressaddress
192192 168168 1212 00
192192 168168 1212 0000000000000 bit offbit off
192192 168168 1212 00 11stst
subnetsubnet
192192 168168 1212 100000000000000 bit onbit on
192192 168168 1212 11 22eded
subnetsubnet
192192 168168 1212
192192 168168 1212
192192 168168 1212
192192 168168 1212
•The same rule applies to borrowing bits for subnet addresses.
•Start at the left side.
•The first bit can be borrowed and turned on or off resulting in 2 subnets.
Subnetting: Class CSubnetting: Class C subnetsubnet addressaddress
192192 168168 1212 00
192192 168168 1212 00000000000000
192192 168168 1212 00
192192 168168 1212 1000000010000000
192192 168168 1212 11
192192 168168 1212 00000000000000 00
192192 168168 1212 10000000000000 11
192192 168168 1212 01000000000000 22
192192 168168 1212 11000000000000 33
•Borrowing two bits yields four combinations of bits on and off, or four
different combinations and 4 possible subnets
The moving stickThe moving stick
0 0 0 0 0 0 0 0
192.168.12.0
•Now let’s put it all together with our “moving stick” method
•Write the last octet in binary
The moving stickThe moving stick
256 128 64 32 16 8 4 2 possible host addresses
0 0 0 0 0 0 0 0
•Start on the right.
•Number to the left to show possible numbers of host addresses.
The moving stickThe moving stick
256 128 64 32 16 8 4 2 possible number of host addresses
0 0 0 0 0 0 0 0
2 4 8 16 32 64 128 256 possible number of subnets
Start on the left.
Number to the right to show possible numbers of subnets.
The moving stickThe moving stick
256 128 64 32 16 8 4 2 possible number of host addresses
0 0 0 0 0 0 0 0
2 4 8 16 32 64 128 256 possible number of subnets
•Draw the “moving stick.”
•You could have a combination of 4 subnets with 64 addresses each.
The moving stickThe moving stick
256 128 64 32 16 8 4 2 possible number of host addresses
0 0 0 0 0 0 0 0
2 4 8 16 32 64 128 256 possible number of subnets
Move the “stick” to the right.
You could have a combination of 8 subnets with 32 addresses each.
The moving stickThe moving stick
256 128 64 32 16 8 4 2 possible number of host addresses
0 0 0 0 0 0 0 0
2 4 8 16 32 64 128 256 possible number of subnets
Move it again.
You could have a combination of 16 subnets with 16 addresses each.
Calculate the subnetsCalculate the subnets
Use this IP addressUse this IP address
192.168.12.0192.168.12.0
Our company requires at least 3 subnets withOur company requires at least 3 subnets with
more than 50 hosts per subnet.more than 50 hosts per subnet.
The moving stickThe moving stick
256 128 64 32 16 8 4 2 possible number of host addresses
0 0 0 0 0 0 0 0
2 4 8 16 32 64 128 256 possible number of subnets
•Look back to our first example.
•We borrowed two bits.
•This fits the requirement of our company – 4 subnets each with up to 64 addresses.
The moving stickThe moving stick
256 128 64 32 16 8 4 2 possible number of host addresses
0 0 0 0 0 0 0 0
2 4 8 16 32 64 128 256 possible number of subnets
•We could move the “stick” to the right.
•But a combination of 8 subnets with 32 addresses each
does not meet our company’s requirement.
The moving stickThe moving stick
add the “add the “magic numbermagic number””
256 128 64 32 16 8 4 2 possible number of host addresses
0 0 0 0 0 0 0 0
2 4 8 16 32 64 128 256 possible number of subnets
•We move the stick back to the left.
•64 is our “magic” number”.
Calculate the subnetsCalculate the subnets
SubnetSubnet RangeRange BroadcastBroadcast
addressaddress
192.168.12.0192.168.12.0
192.168.12.192.168.12.64
192.168.12.192.168.12.128
192.168.12.192.168.12.1192
•Add to the “0” subnet by increments of 64, our magic number.
•We find our 4 subnet addresses.
Calculate the subnetsCalculate the subnets
SubnetSubnet RangeRange BroadcastBroadcast
addressaddress
192.168.12.0192.168.12.0 192.168.12.1 - 192.168.12.62 192.168.12.63
192.168.12.64192.168.12.64
192.168.12.128192.168.12.128
192.168.12.192192.168.12.192
•The first usable address is 192.168.12.1 in our first subnet
•The last usable address is 192.168.12.62
•The broadcast address is 192.168.12.63
•.0 through .63 totals 64 addresses, our “magic number”
Calculate the subnetsCalculate the subnets
SubnetSubnet RangeRange BroadcastBroadcast
addressaddress
192.168.12.0192.168.12.0 192.168.12.1 - 192.168.12.62192.168.12.1 - 192.168.12.62 192.168.12.63192.168.12.63
192.168.12.64192.168.12.64 192.168.12.65 - 192.168.12.126192.168.12.65 - 192.168.12.126 192.168.12.127192.168.12.127
192.168.12.128192.168.12.128 192.168.12.129 - 192.168.12.191192.168.12.129 - 192.168.12.191 192.168.12.192192.168.12.192
192.168.12.192192.168.12.192 192.168.12.193 - 192.168.12.254192.168.12.193 - 192.168.12.254 192.168.12.255192.168.12.255
•Fill in the remaining columns
Ok, I lied. You still haveOk, I lied. You still have
to figure out that peskyto figure out that pesky
subnet mask.subnet mask.
•Just because you graphJust because you graph
subnets on a piece of papersubnets on a piece of paper
doesn’t mean your router ordoesn’t mean your router or
PC has any idea what you did.PC has any idea what you did.
•We need a subnet mask toWe need a subnet mask to
enter into the router CLI or yourenter into the router CLI or your
PC’s local area connectionPC’s local area connection
propertiesproperties
Subnet MaskSubnet Mask
128 64 32 16 8 4 2 1 binary numbers
0 0 0 0 0 0 0 0
•Renumber your last 8 bits to show the binary equivalent.
•Draw your stick to show the two borrowed bits.
•Your subnet mask is 128 + 64 = 192.
Subnet MaskSubnet Mask
128 64 32 16 8 4 2 1 binary numbers
0 0 0 0 0 0 0 0
•If you had borrowed 3 bits.
•Your subnet mask would be 128 + 64 + 32 = 224.
Subnet MaskSubnet Mask
128 64 32 16 8 4 2 1 binary numbers
0 0 0 0 0 0 0 0
•Move the stick to borrow 4 bits.
•Your subnet mask would be 128 + 64 + 16 + = 240.
Problem completedProblem completed
 Our company required us to borrow 2 bitsOur company required us to borrow 2 bits
so our IP address and subnet mask is:so our IP address and subnet mask is:
192.168. 12. 0192.168. 12. 0
255.255.255.192255.255.255.192
Subnetting a class_c_address

Weitere ähnliche Inhalte

Was ist angesagt?

Computer Networking: Subnetting and IP Addressing
Computer Networking: Subnetting and IP AddressingComputer Networking: Subnetting and IP Addressing
Computer Networking: Subnetting and IP AddressingBisrat Girma
 
Day 1 INTRODUCTION TO IOS AND CISCO ROUTERS
Day 1 INTRODUCTION TO IOS AND CISCO ROUTERSDay 1 INTRODUCTION TO IOS AND CISCO ROUTERS
Day 1 INTRODUCTION TO IOS AND CISCO ROUTERSanilinvns
 
Subnetting Basics Tutorial
Subnetting Basics TutorialSubnetting Basics Tutorial
Subnetting Basics Tutorialmikem801
 
Subnet Masks
Subnet MasksSubnet Masks
Subnet Masksswascher
 
Subnetting A Network
Subnetting A NetworkSubnetting A Network
Subnetting A Networkswascher
 
Subnetting (FLSM & VLSM) with examples
Subnetting (FLSM & VLSM) with examplesSubnetting (FLSM & VLSM) with examples
Subnetting (FLSM & VLSM) with examplesKrishna Mohan
 
Classless inter domain routing
Classless inter domain routingClassless inter domain routing
Classless inter domain routingVikash Gangwar
 
Implementing Cisco AAA
Implementing Cisco AAAImplementing Cisco AAA
Implementing Cisco AAAdkaya
 
Chapter 8 - IP Subnetting, Troubleshooting and Introduction to NAT 9e
Chapter 8 - IP Subnetting, Troubleshooting and Introduction to NAT 9eChapter 8 - IP Subnetting, Troubleshooting and Introduction to NAT 9e
Chapter 8 - IP Subnetting, Troubleshooting and Introduction to NAT 9eadpeer
 
Hot standby router protocol (hsrp) using
Hot standby router protocol (hsrp) usingHot standby router protocol (hsrp) using
Hot standby router protocol (hsrp) usingShubhiGupta94
 

Was ist angesagt? (20)

Subnet Mask
Subnet MaskSubnet Mask
Subnet Mask
 
C I D R
C I D RC I D R
C I D R
 
IP classes and subnetting.
IP classes and subnetting.IP classes and subnetting.
IP classes and subnetting.
 
Computer Networking: Subnetting and IP Addressing
Computer Networking: Subnetting and IP AddressingComputer Networking: Subnetting and IP Addressing
Computer Networking: Subnetting and IP Addressing
 
Vlsm
VlsmVlsm
Vlsm
 
Day 1 INTRODUCTION TO IOS AND CISCO ROUTERS
Day 1 INTRODUCTION TO IOS AND CISCO ROUTERSDay 1 INTRODUCTION TO IOS AND CISCO ROUTERS
Day 1 INTRODUCTION TO IOS AND CISCO ROUTERS
 
Subnetting Basics Tutorial
Subnetting Basics TutorialSubnetting Basics Tutorial
Subnetting Basics Tutorial
 
Subnet Masks
Subnet MasksSubnet Masks
Subnet Masks
 
Subnetting A Network
Subnetting A NetworkSubnetting A Network
Subnetting A Network
 
Subnetting
SubnettingSubnetting
Subnetting
 
Cn ipv4 addressing
Cn ipv4 addressingCn ipv4 addressing
Cn ipv4 addressing
 
Subnetting
SubnettingSubnetting
Subnetting
 
Subnetting (FLSM & VLSM) with examples
Subnetting (FLSM & VLSM) with examplesSubnetting (FLSM & VLSM) with examples
Subnetting (FLSM & VLSM) with examples
 
Subnetting
SubnettingSubnetting
Subnetting
 
Classless inter domain routing
Classless inter domain routingClassless inter domain routing
Classless inter domain routing
 
Ip addressing
Ip addressingIp addressing
Ip addressing
 
Implementing Cisco AAA
Implementing Cisco AAAImplementing Cisco AAA
Implementing Cisco AAA
 
Chapter 8 - IP Subnetting, Troubleshooting and Introduction to NAT 9e
Chapter 8 - IP Subnetting, Troubleshooting and Introduction to NAT 9eChapter 8 - IP Subnetting, Troubleshooting and Introduction to NAT 9e
Chapter 8 - IP Subnetting, Troubleshooting and Introduction to NAT 9e
 
Ip addressing classful
Ip addressing classfulIp addressing classful
Ip addressing classful
 
Hot standby router protocol (hsrp) using
Hot standby router protocol (hsrp) usingHot standby router protocol (hsrp) using
Hot standby router protocol (hsrp) using
 

Andere mochten auch

Ch10 Subnetting Class
Ch10 Subnetting ClassCh10 Subnetting Class
Ch10 Subnetting Classaqeelhaider74
 
How to calculate a broadcast address ?
How to calculate a broadcast address ?How to calculate a broadcast address ?
How to calculate a broadcast address ?Miguel Delamontagne
 
Subnetting Made Easy
Subnetting Made EasySubnetting Made Easy
Subnetting Made Easyheidionthego
 
Spanning Tree Protocol
Spanning Tree ProtocolSpanning Tree Protocol
Spanning Tree ProtocolManoj Gharate
 
Subnetting
SubnettingSubnetting
Subnettingswascher
 

Andere mochten auch (6)

Ch10 Subnetting Class
Ch10 Subnetting ClassCh10 Subnetting Class
Ch10 Subnetting Class
 
How to calculate a broadcast address ?
How to calculate a broadcast address ?How to calculate a broadcast address ?
How to calculate a broadcast address ?
 
Subnetting Made Easy
Subnetting Made EasySubnetting Made Easy
Subnetting Made Easy
 
Spanning Tree Protocol
Spanning Tree ProtocolSpanning Tree Protocol
Spanning Tree Protocol
 
CCNA IP Addressing
CCNA IP AddressingCCNA IP Addressing
CCNA IP Addressing
 
Subnetting
SubnettingSubnetting
Subnetting
 

Ähnlich wie Subnetting a class_c_address

Routing and switching
Routing and switchingRouting and switching
Routing and switchingneclinux
 
Ipaddress presentationdemoclass
Ipaddress presentationdemoclassIpaddress presentationdemoclass
Ipaddress presentationdemoclassaskme
 
Networking notes 2
Networking notes 2Networking notes 2
Networking notes 2Beth Bauzon
 
Ip -subnetting
Ip  -subnettingIp  -subnetting
Ip -subnettingnithinj54
 
Cisco ip-addressing
Cisco ip-addressingCisco ip-addressing
Cisco ip-addressingaskme
 
08 - IP Subnetting.ppt
08 - IP Subnetting.ppt08 - IP Subnetting.ppt
08 - IP Subnetting.pptssuserf7cd2b
 
NAT and Subnetting
NAT and Subnetting NAT and Subnetting
NAT and Subnetting Saad Tanvir
 
Expl net fund_chapter_06_i_pv4_part_2
Expl net fund_chapter_06_i_pv4_part_2Expl net fund_chapter_06_i_pv4_part_2
Expl net fund_chapter_06_i_pv4_part_2kurtmctaggart
 
Subnetting and routing
Subnetting and routingSubnetting and routing
Subnetting and routingGaurav Juneja
 
IP_Addressing_and Subnetting.pdf
IP_Addressing_and Subnetting.pdfIP_Addressing_and Subnetting.pdf
IP_Addressing_and Subnetting.pdfSayusAli
 
Cisco-IP-Addressing.ppt
Cisco-IP-Addressing.pptCisco-IP-Addressing.ppt
Cisco-IP-Addressing.pptMuhamadAriefY
 

Ähnlich wie Subnetting a class_c_address (20)

Subnetting
SubnettingSubnetting
Subnetting
 
Routing and switching
Routing and switchingRouting and switching
Routing and switching
 
I Paddress
I PaddressI Paddress
I Paddress
 
Ipaddress presentationdemoclass
Ipaddress presentationdemoclassIpaddress presentationdemoclass
Ipaddress presentationdemoclass
 
Networking notes 2
Networking notes 2Networking notes 2
Networking notes 2
 
Ip -subnetting
Ip  -subnettingIp  -subnetting
Ip -subnetting
 
Subnetting
SubnettingSubnetting
Subnetting
 
Cisco ip-addressing
Cisco ip-addressingCisco ip-addressing
Cisco ip-addressing
 
How IP address works
How IP address worksHow IP address works
How IP address works
 
Week11 lec1
Week11 lec1Week11 lec1
Week11 lec1
 
08 - IP Subnetting.ppt
08 - IP Subnetting.ppt08 - IP Subnetting.ppt
08 - IP Subnetting.ppt
 
NAT and Subnetting
NAT and Subnetting NAT and Subnetting
NAT and Subnetting
 
Day03
Day03 Day03
Day03
 
Expl net fund_chapter_06_i_pv4_part_2
Expl net fund_chapter_06_i_pv4_part_2Expl net fund_chapter_06_i_pv4_part_2
Expl net fund_chapter_06_i_pv4_part_2
 
Ceyccna3
Ceyccna3Ceyccna3
Ceyccna3
 
Subnetting and routing
Subnetting and routingSubnetting and routing
Subnetting and routing
 
How to subnet
How to subnetHow to subnet
How to subnet
 
subnet.ppt
subnet.pptsubnet.ppt
subnet.ppt
 
IP_Addressing_and Subnetting.pdf
IP_Addressing_and Subnetting.pdfIP_Addressing_and Subnetting.pdf
IP_Addressing_and Subnetting.pdf
 
Cisco-IP-Addressing.ppt
Cisco-IP-Addressing.pptCisco-IP-Addressing.ppt
Cisco-IP-Addressing.ppt
 

Mehr von rizwanaabassi

Mehr von rizwanaabassi (10)

Deadlocks2
Deadlocks2Deadlocks2
Deadlocks2
 
Memory management1
Memory management1Memory management1
Memory management1
 
Io (2)
Io (2)Io (2)
Io (2)
 
Deadlocks1
Deadlocks1Deadlocks1
Deadlocks1
 
Concurrency
ConcurrencyConcurrency
Concurrency
 
Hci lecture set_03_00
Hci lecture set_03_00Hci lecture set_03_00
Hci lecture set_03_00
 
Hci lecture 01_00
Hci lecture 01_00Hci lecture 01_00
Hci lecture 01_00
 
Oslecture1
Oslecture1Oslecture1
Oslecture1
 
Data com lec1
Data com lec1Data com lec1
Data com lec1
 
Pesentation of formal
Pesentation of formalPesentation of formal
Pesentation of formal
 

Kürzlich hochgeladen

Six Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal OntologySix Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal Ontologyjohnbeverley2021
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...DianaGray10
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodJuan lago vázquez
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Jeffrey Haguewood
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businesspanagenda
 
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​Bhuvaneswari Subramani
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2
 
Vector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxVector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxRemote DBA Services
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWERMadyBayot
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Victor Rentea
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobeapidays
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...Zilliz
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Victor Rentea
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...apidays
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MIND CTI
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfOrbitshub
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native ApplicationsWSO2
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 

Kürzlich hochgeladen (20)

Six Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal OntologySix Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal Ontology
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering Developers
 
Vector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxVector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptx
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 

Subnetting a class_c_address

  • 1. Subnetting Made Easy?Subnetting Made Easy? The “moving stick” and the “magic number”The “moving stick” and the “magic number” Jim BlancoJim Blanco Aparicio-Levy Technical CenterAparicio-Levy Technical Center
  • 2. Subnetting Made EasySubnetting Made Easy •First let’s look at the overall requirement. •A class C network consists of 4 octets totaling 32 bits. •If we use a Class C network such as 192.168.12.0, we can only make use of the last octet or 8 bits. •There are 256 possible combinations of bits “on” or “off” in one octet.
  • 3. Subnetting Made EasySubnetting Made Easy •256 addresses would result in a very large collision domain. •256 hosts using the “wire” one at a time would render the LAN unusable. •In business environments, host addresses are usually divided into groups or subnets for management and security reasons. •In addition the first address is reserved for the subnet address and the last for a broadcast address. •So we really have 254 available host addresses.
  • 4. Subnetting Made EasySubnetting Made Easy  We could just divide the addresses in the last octet into more manageable blocks or “subnets”: 256/4 = 64 or 4 subnets each with 64 addresses 256/8 = 32 or 8 subnets each with 32 addresses 256/16 = 16 or 16 subnets each with 16 addresses  But this is too simple. We must also keep track of subnet and broadcast addresses.
  • 5. Subnetting: Class CSubnetting: Class C hosthost addressaddress 192192 168168 1212 00 192192 168168 1212 0000000000000000 192192 168168 1212 192192 168168 1212 192192 168168 1212 192192 168168 1212 192192 168168 1212 192192 168168 1212 192192 168168 1212 •First convert the last octet, represented by the decimal number “0”, into 8 binary “0”s to represent 8 bits.
  • 6. Subnetting: Class CSubnetting: Class C hosthost addressaddress 192192 168168 1212 00 192192 168168 1212 000000000000000 192192 168168 1212 192192 168168 1212 192192 168168 1212 192192 168168 1212 192192 168168 1212 192192 168168 1212 192192 168168 1212 • By just utilizing the last bit, we have two possible IP addresses.
  • 7. Subnetting: Class CSubnetting: Class C hosthost addressaddress 192192 168168 1212 00 192192 168168 1212 000000000000000 bit offbit off 192192 168168 1212 00 IP addressIP address 192192 168168 1212 192192 168168 1212 192192 168168 1212 192192 168168 1212 192192 168168 1212 192192 168168 1212 •First, with the bit remaining at “0” or off, the IP address is 192.168.12.0
  • 8. Subnetting: Class CSubnetting: Class C hosthost addressaddress 192192 168168 1212 00 192192 168168 1212 0000000000000000 bit offbit off 192192 168168 1212 00 IP addressIP address 192192 168168 1212 000000000000001 bit onbit on 192192 168168 1212 11 IP addressIP address 192192 168168 1212 192192 168168 1212 192192 168168 1212 192192 168168 1212 •Second, when the bit is “1” or turned on, the IP address is 192.168.12.1 •Thus we have 2 possible IP addresses just utilizing the last bit
  • 9. Subnetting: Class CSubnetting: Class C hosthost addressaddress 192192 168168 1212 00 192192 168168 1212 0000000000000000 bit offbit off 192192 168168 1212 00 .0.0 192192 168168 1212 0000000100000001 bit onbit on 192192 168168 1212 11 .1.1 192192 168168 1212 00000000000000 .0.0 192192 168168 1212 00000000000001 .1.1 192192 168168 1212 00000000000010 .2.2 192192 168168 1212 00000000000011 .3.3 •If we use the two last bits, in the on an off positions, we have four possible IP addresses. •We could continue with combinations of 3, 4 and more bits up to 8 which would result in 256 combinations of 1 and 0 or potential IP addresses. •Remember “0” is a number.
  • 10. Subnetting: Class CSubnetting: Class C hosthost addressaddress 192192 168168 1212 00 192192 168168 1212 0000000000000000 bit offbit off 192192 168168 1212 00 .0.0 192192 168168 1212 0000000100000001 bit onbit on 192192 168168 1212 11 .1.1 192192 168168 1212 00000000000000 .0.0 192192 168168 1212 00000000000001 .1.1 192192 168168 1212 00000000000010 .2.2 192192 168168 1212 00000000000011 .3.3 •Since we cannot use the first address (subnet), 0 or the last address 255 (broadcast) we have 256-2=254 usable addresses. •That’s one big collision domain. •We need to divide it up into smaller blocks or “subnets”.
  • 11. Subnetting: Class CSubnetting: Class C hosthost addressaddress  Hold on. Thought we had 256 addresses?Hold on. Thought we had 256 addresses? Or is it 254?Or is it 254?  There are 256 combinations of 1 and 0.There are 256 combinations of 1 and 0.  Possible addresses run from .0 to .255.Possible addresses run from .0 to .255.  ““0” is a number.0” is a number.  0-255 yields 256 addresses.0-255 yields 256 addresses.  The first “0” is reserved for the subnet andThe first “0” is reserved for the subnet and the last “255” is the broadcast address.the last “255” is the broadcast address.
  • 12. Subnetting: Class CSubnetting: Class C hosthost addressaddress  So that’s 256 – 2 or 254 usable addressesSo that’s 256 – 2 or 254 usable addresses in our one big subnet.in our one big subnet.  Next we need to decide how manyNext we need to decide how many subnets will meet our networkingsubnets will meet our networking requirement.requirement.
  • 13. Subnetting: Class CSubnetting: Class C subnetsubnet addressaddress 192192 168168 1212 00 192192 168168 1212 0000000000000 bit offbit off 192192 168168 1212 00 11stst subnetsubnet 192192 168168 1212 100000000000000 bit onbit on 192192 168168 1212 11 22eded subnetsubnet 192192 168168 1212 192192 168168 1212 192192 168168 1212 192192 168168 1212 •The same rule applies to borrowing bits for subnet addresses. •Start at the left side. •The first bit can be borrowed and turned on or off resulting in 2 subnets.
  • 14. Subnetting: Class CSubnetting: Class C subnetsubnet addressaddress 192192 168168 1212 00 192192 168168 1212 00000000000000 192192 168168 1212 00 192192 168168 1212 1000000010000000 192192 168168 1212 11 192192 168168 1212 00000000000000 00 192192 168168 1212 10000000000000 11 192192 168168 1212 01000000000000 22 192192 168168 1212 11000000000000 33 •Borrowing two bits yields four combinations of bits on and off, or four different combinations and 4 possible subnets
  • 15. The moving stickThe moving stick 0 0 0 0 0 0 0 0 192.168.12.0 •Now let’s put it all together with our “moving stick” method •Write the last octet in binary
  • 16. The moving stickThe moving stick 256 128 64 32 16 8 4 2 possible host addresses 0 0 0 0 0 0 0 0 •Start on the right. •Number to the left to show possible numbers of host addresses.
  • 17. The moving stickThe moving stick 256 128 64 32 16 8 4 2 possible number of host addresses 0 0 0 0 0 0 0 0 2 4 8 16 32 64 128 256 possible number of subnets Start on the left. Number to the right to show possible numbers of subnets.
  • 18. The moving stickThe moving stick 256 128 64 32 16 8 4 2 possible number of host addresses 0 0 0 0 0 0 0 0 2 4 8 16 32 64 128 256 possible number of subnets •Draw the “moving stick.” •You could have a combination of 4 subnets with 64 addresses each.
  • 19. The moving stickThe moving stick 256 128 64 32 16 8 4 2 possible number of host addresses 0 0 0 0 0 0 0 0 2 4 8 16 32 64 128 256 possible number of subnets Move the “stick” to the right. You could have a combination of 8 subnets with 32 addresses each.
  • 20. The moving stickThe moving stick 256 128 64 32 16 8 4 2 possible number of host addresses 0 0 0 0 0 0 0 0 2 4 8 16 32 64 128 256 possible number of subnets Move it again. You could have a combination of 16 subnets with 16 addresses each.
  • 21. Calculate the subnetsCalculate the subnets Use this IP addressUse this IP address 192.168.12.0192.168.12.0 Our company requires at least 3 subnets withOur company requires at least 3 subnets with more than 50 hosts per subnet.more than 50 hosts per subnet.
  • 22. The moving stickThe moving stick 256 128 64 32 16 8 4 2 possible number of host addresses 0 0 0 0 0 0 0 0 2 4 8 16 32 64 128 256 possible number of subnets •Look back to our first example. •We borrowed two bits. •This fits the requirement of our company – 4 subnets each with up to 64 addresses.
  • 23. The moving stickThe moving stick 256 128 64 32 16 8 4 2 possible number of host addresses 0 0 0 0 0 0 0 0 2 4 8 16 32 64 128 256 possible number of subnets •We could move the “stick” to the right. •But a combination of 8 subnets with 32 addresses each does not meet our company’s requirement.
  • 24. The moving stickThe moving stick add the “add the “magic numbermagic number”” 256 128 64 32 16 8 4 2 possible number of host addresses 0 0 0 0 0 0 0 0 2 4 8 16 32 64 128 256 possible number of subnets •We move the stick back to the left. •64 is our “magic” number”.
  • 25. Calculate the subnetsCalculate the subnets SubnetSubnet RangeRange BroadcastBroadcast addressaddress 192.168.12.0192.168.12.0 192.168.12.192.168.12.64 192.168.12.192.168.12.128 192.168.12.192.168.12.1192 •Add to the “0” subnet by increments of 64, our magic number. •We find our 4 subnet addresses.
  • 26. Calculate the subnetsCalculate the subnets SubnetSubnet RangeRange BroadcastBroadcast addressaddress 192.168.12.0192.168.12.0 192.168.12.1 - 192.168.12.62 192.168.12.63 192.168.12.64192.168.12.64 192.168.12.128192.168.12.128 192.168.12.192192.168.12.192 •The first usable address is 192.168.12.1 in our first subnet •The last usable address is 192.168.12.62 •The broadcast address is 192.168.12.63 •.0 through .63 totals 64 addresses, our “magic number”
  • 27. Calculate the subnetsCalculate the subnets SubnetSubnet RangeRange BroadcastBroadcast addressaddress 192.168.12.0192.168.12.0 192.168.12.1 - 192.168.12.62192.168.12.1 - 192.168.12.62 192.168.12.63192.168.12.63 192.168.12.64192.168.12.64 192.168.12.65 - 192.168.12.126192.168.12.65 - 192.168.12.126 192.168.12.127192.168.12.127 192.168.12.128192.168.12.128 192.168.12.129 - 192.168.12.191192.168.12.129 - 192.168.12.191 192.168.12.192192.168.12.192 192.168.12.192192.168.12.192 192.168.12.193 - 192.168.12.254192.168.12.193 - 192.168.12.254 192.168.12.255192.168.12.255 •Fill in the remaining columns
  • 28.
  • 29. Ok, I lied. You still haveOk, I lied. You still have to figure out that peskyto figure out that pesky subnet mask.subnet mask.
  • 30. •Just because you graphJust because you graph subnets on a piece of papersubnets on a piece of paper doesn’t mean your router ordoesn’t mean your router or PC has any idea what you did.PC has any idea what you did. •We need a subnet mask toWe need a subnet mask to enter into the router CLI or yourenter into the router CLI or your PC’s local area connectionPC’s local area connection propertiesproperties
  • 31. Subnet MaskSubnet Mask 128 64 32 16 8 4 2 1 binary numbers 0 0 0 0 0 0 0 0 •Renumber your last 8 bits to show the binary equivalent. •Draw your stick to show the two borrowed bits. •Your subnet mask is 128 + 64 = 192.
  • 32. Subnet MaskSubnet Mask 128 64 32 16 8 4 2 1 binary numbers 0 0 0 0 0 0 0 0 •If you had borrowed 3 bits. •Your subnet mask would be 128 + 64 + 32 = 224.
  • 33. Subnet MaskSubnet Mask 128 64 32 16 8 4 2 1 binary numbers 0 0 0 0 0 0 0 0 •Move the stick to borrow 4 bits. •Your subnet mask would be 128 + 64 + 16 + = 240.
  • 34. Problem completedProblem completed  Our company required us to borrow 2 bitsOur company required us to borrow 2 bits so our IP address and subnet mask is:so our IP address and subnet mask is: 192.168. 12. 0192.168. 12. 0 255.255.255.192255.255.255.192