SlideShare uma empresa Scribd logo
1 de 31
Chapter 9: Subnetting 
IP Networks 
Introduction to Networks 
© 2008 Cisco Systems, Inc. All Presentation_ID rights reserved. Cisco Confidential 1
Chapter 9 
9.0 Introduction 
9.1 Subnetting an IPv4 Network 
9.2 Addressing Schemes 
9.3 Design Considerations for IPv6 
9.4 Summary 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 2
Chapter 9: Objectives 
Upon completion of this chapter, you will be able to: 
 Explain why routing is necessary for hosts on different networks to 
communicate. 
 Describe IP as a communication protocol used to identify a single 
device on a network. 
 Given a network and a subnet mask, calculate the number of host 
addresses available. 
 Calculate the necessary subnet mask in order to accommodate the 
requirements of a network. 
 Describe the benefits of variable length subnet masking (VLSM). 
 Explain how IPv6 address assignments are implemented in a 
business network. 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 3
9.1 Subnetting an IPv4 
Network 
© 2008 Cisco Systems, Inc. All Presentation_ID rights reserved. Cisco Confidential 4
Network Segmentation 
Reasons for Subnetting 
Subnetting is the process of segmenting a network into multiple 
smaller network spaces called subnetworks or subnets. 
 Large networks must be segmented into smaller subnetworks, 
creating smaller groups of devices and services to: 
• Control traffic by containing broadcast traffic within each 
subnetwork. 
• Reduce overall network traffic and improve network performance. 
Communication Between Subnets 
 A router is necessary for devices on different networks and subnets 
to communicate. 
 Each router interface must have an IPv4 host address that belongs to 
the network or subnet that the router interface is connected. 
 Devices on a network and subnet use the router interface attached to 
their LAN as their default gateway. 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 5
IP Subnetting is FUNdamental 
The Plan 
Planning the Network 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 6
Subnetting an IPv4 Network 
Basic Subnetting 
 Borrowing Bits to Create Subnets 
 Borrowing 1 bit 21 = 2 subnets 
Borrowing 1 Bit from the host portion creates 2 subnets with the same subnet mask 
Subnet 1 
Network 192.168.1.128-255/25 
Mask: 255.255.255.128 
Subnet 0 
Network 192.168.1.0-127/25 
Mask: 255.255.255.128 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 7
Subnetting an IPv4 Network 
Subnets in Use 
Subnets in Use 
Subnet 0 
Network 192.168.1.0-127/25 
Subnet 1 
Network 192.168.1.128-255/25 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 8
Subnetting an IPv4 Network 
Subnetting Formulas 
Calculate number 
of subnets 
Calculate number 
of hosts 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 9
Subnetting an IPv4 Network 
Creating 4 Subnets 
Borrowing 2 bits to create 4 subnets. 22 = 4 subnets 
Creating 4 Subnets 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 10
Subnetting an IPv4 Network 
Creating Eight Subnets 
Borrowing 3 bits to Create 8 Subnets. 23 = 8 subnets 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 11
Subnetting an IPv4 Network 
Creating Eight Subnets (Cont.) 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 12
Subnetting an IPv4 Network 
Creating Eight Subnets (Cont.) 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 13
Determining the Subnet Mask 
Subnetting Based on Host Requirements 
Two considerations when planning subnets: 
 Number of subnets required 
 Number of host addresses required 
Formula to determine number of usable hosts: 2^n-2 
 2^n (where n is the number of remaining host bits) is used to 
calculate the number of hosts. 
 -2 (The subnetwork ID and broadcast address cannot be used on 
each subnet.) 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 14
Determining the Subnet Mask 
Subnetting Network-Based Requirements 
Calculate the 
number of subnets: 
 2^n (where n is the 
number of bits 
borrowed) 
 Subnet needed for 
each department. 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 15
Determining the Subnet Mask 
Subnetting To Meet Network Requirements 
 Balance the 
required number of 
subnets and hosts 
for the largest 
subnet. 
 Design the 
addressing scheme 
to accommodate 
the maximum 
number of hosts for 
each subnet. 
 Allow for growth in 
each subnet. 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 16
Determining the Subnet Mask 
Subnetting To Meet Network Requirements 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 17
Benefits of Variable Length Subnet Masking 
Traditional Subnetting Wastes Addresses 
 Traditional subnetting – 
Uses the same number 
of addresses is allocated 
for each subnet. 
 Subnets that require 
fewer addresses have 
unused (wasted) 
addresses; for example, 
WAN links only need two 
addresses. 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 18
Benefits of Variable Length Subnet Masking 
Variable Length Subnet Masks (VLSM) 
 The variable-length subnet 
mask (VLSM) or 
subnetting a subnet 
provides more efficient 
use of addresses. 
 VLSM allows a network 
space to be divided in 
unequal parts. 
 Subnet mask varies, 
depending on how many 
bits have been borrowed 
for a particular subnet. 
 Network is first subnetted, 
and then the subnets are 
resubnetted. 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 19
Benefits of Variable Length Subnet Masking 
Basic VLSM 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 20
Benefits of Variable Length Subnet Masking 
VLSM in Practice 
 Using VLSM subnets, the LAN and WAN segments in example 
below can be addressed with minimum waste. 
 Each LANs will be assigned a subnet with /27 mask. 
 Each WAN link will be assigned a subnet with /30 mask. 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 21
Benefits of Variable Length Subnet Masking 
VLSM Chart 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 22
9.2 Addressing Schemes 
© 2008 Cisco Systems, Inc. All Presentation_ID rights reserved. Cisco Confidential 23
Structured Design 
Planning to Address the Network 
Allocation of network addresses should be planned and documented 
for the purposes of: 
 Preventing duplication of addresses 
 Providing and controlling access 
 Monitoring security and performance 
Client addresses – Usually dynamically assigned using the Dynamic 
Host Configuration Protocol (DHCP). 
Sample 
Network 
Addressing 
Plan 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 24
9.3 Design Considerations 
for IPv6 
© 2008 Cisco Systems, Inc. All Presentation_ID rights reserved. Cisco Confidential 25
Subnetting an IPv6 Network 
Subnetting Using the Subnet ID 
An IPv6 Network Space is subnetted to support hierarchical, logical 
design of the network 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 26
Subnetting an IPv6 Network 
IPV6 Subnet Allocation 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 27
Subnetting an IPv6 Network 
Subnetting into the Interface ID 
IPv6 bits can be borrowed from the interface ID to create additional 
IPv6 subnets. 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 28
9.3 Summary 
© 2008 Cisco Systems, Inc. All Presentation_ID rights reserved. Cisco Confidential 29
Chapter 9: Summary 
In this chapter, you learned that: 
 Subnetting is the process of segmenting a network, by dividing it into 
multiple smaller network spaces. 
 Subnetting a subnet, or using VLSM, was designed to avoid wasting 
addresses. 
 IPv6 address space is subnetted to support the hierarchical, logical 
design of the network. 
 Size, location, use, and access requirements are all considerations 
in the address planning process. 
 IP networks must be tested to verify connectivity and operational 
performance. 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 30
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 31

Mais conteúdo relacionado

Mais procurados

CCNA 2 Routing and Switching v5.0 Chapter 4
CCNA 2 Routing and Switching v5.0 Chapter 4CCNA 2 Routing and Switching v5.0 Chapter 4
CCNA 2 Routing and Switching v5.0 Chapter 4Nil Menon
 
CCNA 2 Routing and Switching v5.0 Chapter 5
CCNA 2 Routing and Switching v5.0 Chapter 5CCNA 2 Routing and Switching v5.0 Chapter 5
CCNA 2 Routing and Switching v5.0 Chapter 5Nil Menon
 
CCNA 1 Routing and Switching v5.0 Chapter 5
CCNA 1 Routing and Switching v5.0 Chapter 5CCNA 1 Routing and Switching v5.0 Chapter 5
CCNA 1 Routing and Switching v5.0 Chapter 5Nil Menon
 
CCNA 2 Routing and Switching v5.0 Chapter 8
CCNA 2 Routing and Switching v5.0 Chapter 8CCNA 2 Routing and Switching v5.0 Chapter 8
CCNA 2 Routing and Switching v5.0 Chapter 8Nil Menon
 
CCNAv5 - S4: Chapter2 Connecting To The Wan
CCNAv5 - S4: Chapter2 Connecting To The WanCCNAv5 - S4: Chapter2 Connecting To The Wan
CCNAv5 - S4: Chapter2 Connecting To The WanVuz Dở Hơi
 
CCNA 2 Routing and Switching v5.0 Chapter 11
CCNA 2 Routing and Switching v5.0 Chapter 11CCNA 2 Routing and Switching v5.0 Chapter 11
CCNA 2 Routing and Switching v5.0 Chapter 11Nil Menon
 
CCNAv5 - S4: Chapter 5: Network Address Translation for ipv4
CCNAv5 - S4: Chapter 5: Network Address Translation for ipv4CCNAv5 - S4: Chapter 5: Network Address Translation for ipv4
CCNAv5 - S4: Chapter 5: Network Address Translation for ipv4Vuz Dở Hơi
 
CCNA 2 Routing and Switching v5.0 Chapter 7
CCNA 2 Routing and Switching v5.0 Chapter 7CCNA 2 Routing and Switching v5.0 Chapter 7
CCNA 2 Routing and Switching v5.0 Chapter 7Nil Menon
 
CCNA 1 Routing and Switching v5.0 Chapter 4
CCNA 1 Routing and Switching v5.0 Chapter 4CCNA 1 Routing and Switching v5.0 Chapter 4
CCNA 1 Routing and Switching v5.0 Chapter 4Nil Menon
 
Ccna PPT
Ccna PPTCcna PPT
Ccna PPTAIRTEL
 
CCNAv5 - S4: Chapter8 monitoring the network
CCNAv5 - S4: Chapter8 monitoring the networkCCNAv5 - S4: Chapter8 monitoring the network
CCNAv5 - S4: Chapter8 monitoring the networkVuz Dở Hơi
 
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
 
Chapter 15 : routing concepts
Chapter 15 : routing conceptsChapter 15 : routing concepts
Chapter 15 : routing conceptsteknetir
 
CCNAv5 - S2: Chapter 6 Static Routing
CCNAv5 - S2: Chapter 6 Static RoutingCCNAv5 - S2: Chapter 6 Static Routing
CCNAv5 - S2: Chapter 6 Static RoutingVuz Dở Hơi
 
CCNA v6.0 ITN - Chapter 07
CCNA v6.0 ITN - Chapter 07CCNA v6.0 ITN - Chapter 07
CCNA v6.0 ITN - Chapter 07Irsandi Hasan
 
Cisco router basic
Cisco router basicCisco router basic
Cisco router basicTapan Khilar
 
CCNA 1 Routing and Switching v5.0 Chapter 1
CCNA 1 Routing and Switching v5.0 Chapter 1CCNA 1 Routing and Switching v5.0 Chapter 1
CCNA 1 Routing and Switching v5.0 Chapter 1Nil Menon
 
CCNAv5 - S4: Chapter 7: Securing Site-to-site Connectivity
CCNAv5 - S4: Chapter 7: Securing Site-to-site ConnectivityCCNAv5 - S4: Chapter 7: Securing Site-to-site Connectivity
CCNAv5 - S4: Chapter 7: Securing Site-to-site ConnectivityVuz Dở Hơi
 
CCNA Product Overview.pptx
CCNA Product Overview.pptxCCNA Product Overview.pptx
CCNA Product Overview.pptxKISHOYIANKISH
 

Mais procurados (20)

CCNA 2 Routing and Switching v5.0 Chapter 4
CCNA 2 Routing and Switching v5.0 Chapter 4CCNA 2 Routing and Switching v5.0 Chapter 4
CCNA 2 Routing and Switching v5.0 Chapter 4
 
CCNA 2 Routing and Switching v5.0 Chapter 5
CCNA 2 Routing and Switching v5.0 Chapter 5CCNA 2 Routing and Switching v5.0 Chapter 5
CCNA 2 Routing and Switching v5.0 Chapter 5
 
CCNA 1 Routing and Switching v5.0 Chapter 5
CCNA 1 Routing and Switching v5.0 Chapter 5CCNA 1 Routing and Switching v5.0 Chapter 5
CCNA 1 Routing and Switching v5.0 Chapter 5
 
CCNA 2 Routing and Switching v5.0 Chapter 8
CCNA 2 Routing and Switching v5.0 Chapter 8CCNA 2 Routing and Switching v5.0 Chapter 8
CCNA 2 Routing and Switching v5.0 Chapter 8
 
CCNAv5 - S4: Chapter2 Connecting To The Wan
CCNAv5 - S4: Chapter2 Connecting To The WanCCNAv5 - S4: Chapter2 Connecting To The Wan
CCNAv5 - S4: Chapter2 Connecting To The Wan
 
CCNA 2 Routing and Switching v5.0 Chapter 11
CCNA 2 Routing and Switching v5.0 Chapter 11CCNA 2 Routing and Switching v5.0 Chapter 11
CCNA 2 Routing and Switching v5.0 Chapter 11
 
CCNAv5 - S4: Chapter 5: Network Address Translation for ipv4
CCNAv5 - S4: Chapter 5: Network Address Translation for ipv4CCNAv5 - S4: Chapter 5: Network Address Translation for ipv4
CCNAv5 - S4: Chapter 5: Network Address Translation for ipv4
 
CCNA 2 Routing and Switching v5.0 Chapter 7
CCNA 2 Routing and Switching v5.0 Chapter 7CCNA 2 Routing and Switching v5.0 Chapter 7
CCNA 2 Routing and Switching v5.0 Chapter 7
 
CCNA 1 Routing and Switching v5.0 Chapter 4
CCNA 1 Routing and Switching v5.0 Chapter 4CCNA 1 Routing and Switching v5.0 Chapter 4
CCNA 1 Routing and Switching v5.0 Chapter 4
 
Ccna PPT
Ccna PPTCcna PPT
Ccna PPT
 
CCNAv5 - S4: Chapter8 monitoring the network
CCNAv5 - S4: Chapter8 monitoring the networkCCNAv5 - S4: Chapter8 monitoring the network
CCNAv5 - S4: Chapter8 monitoring the network
 
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
 
Chapter 15 : routing concepts
Chapter 15 : routing conceptsChapter 15 : routing concepts
Chapter 15 : routing concepts
 
CCNA presentation.
CCNA presentation.CCNA presentation.
CCNA presentation.
 
CCNAv5 - S2: Chapter 6 Static Routing
CCNAv5 - S2: Chapter 6 Static RoutingCCNAv5 - S2: Chapter 6 Static Routing
CCNAv5 - S2: Chapter 6 Static Routing
 
CCNA v6.0 ITN - Chapter 07
CCNA v6.0 ITN - Chapter 07CCNA v6.0 ITN - Chapter 07
CCNA v6.0 ITN - Chapter 07
 
Cisco router basic
Cisco router basicCisco router basic
Cisco router basic
 
CCNA 1 Routing and Switching v5.0 Chapter 1
CCNA 1 Routing and Switching v5.0 Chapter 1CCNA 1 Routing and Switching v5.0 Chapter 1
CCNA 1 Routing and Switching v5.0 Chapter 1
 
CCNAv5 - S4: Chapter 7: Securing Site-to-site Connectivity
CCNAv5 - S4: Chapter 7: Securing Site-to-site ConnectivityCCNAv5 - S4: Chapter 7: Securing Site-to-site Connectivity
CCNAv5 - S4: Chapter 7: Securing Site-to-site Connectivity
 
CCNA Product Overview.pptx
CCNA Product Overview.pptxCCNA Product Overview.pptx
CCNA Product Overview.pptx
 

Semelhante a CCNA 1 Routing and Switching v5.0 Chapter 9

CCNA RS_ITN - Chapter 9
CCNA RS_ITN - Chapter 9CCNA RS_ITN - Chapter 9
CCNA RS_ITN - Chapter 9Irsandi Hasan
 
CCNA RS_NB - Chapter 8
CCNA RS_NB - Chapter 8CCNA RS_NB - Chapter 8
CCNA RS_NB - Chapter 8Irsandi Hasan
 
Chapter 9 : Subnetting IP networks
Chapter 9 : Subnetting IP networksChapter 9 : Subnetting IP networks
Chapter 9 : Subnetting IP networksteknetir
 
CCNAv5 - S1: Chapter 9 - Subnetting Ip Networks
CCNAv5 - S1: Chapter 9 - Subnetting Ip NetworksCCNAv5 - S1: Chapter 9 - Subnetting Ip Networks
CCNAv5 - S1: Chapter 9 - Subnetting Ip NetworksVuz Dở Hơi
 
Chapter 09 - Subnetting IP Networks
Chapter 09 - Subnetting IP NetworksChapter 09 - Subnetting IP Networks
Chapter 09 - Subnetting IP NetworksYaser Rahmati
 
Ccna v5-S1-Chapter 9
Ccna v5-S1-Chapter 9Ccna v5-S1-Chapter 9
Ccna v5-S1-Chapter 9Hamza Malik
 
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 8
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 8CCNA (R & S) Module 01 - Introduction to Networks - Chapter 8
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 8Waqas Ahmed Nawaz
 
08_Subnetting_IP_Networks.pdf
08_Subnetting_IP_Networks.pdf08_Subnetting_IP_Networks.pdf
08_Subnetting_IP_Networks.pdfRobinRohit2
 
08_Subnetting_IP_Networks.pdf
08_Subnetting_IP_Networks.pdf08_Subnetting_IP_Networks.pdf
08_Subnetting_IP_Networks.pdfPilarAlulema2
 
CCNA Discovery 3 - Chapter 4
CCNA Discovery 3 - Chapter 4CCNA Discovery 3 - Chapter 4
CCNA Discovery 3 - Chapter 4Irsandi Hasan
 
Week5 f2017(1)
Week5 f2017(1)Week5 f2017(1)
Week5 f2017(1)trayyoo
 
CCNA Discovery 2 - Chapter 4
CCNA Discovery 2 - Chapter 4CCNA Discovery 2 - Chapter 4
CCNA Discovery 2 - Chapter 4Irsandi Hasan
 
CCNA RS_NB - Chapter 7
CCNA RS_NB - Chapter 7CCNA RS_NB - Chapter 7
CCNA RS_NB - Chapter 7Irsandi Hasan
 
CCNA v6.0 ITN - Chapter 08
CCNA v6.0 ITN - Chapter 08CCNA v6.0 ITN - Chapter 08
CCNA v6.0 ITN - Chapter 08Irsandi Hasan
 
CCNA RS_ITN - Chapter 8
CCNA RS_ITN - Chapter 8CCNA RS_ITN - Chapter 8
CCNA RS_ITN - Chapter 8Irsandi Hasan
 
Exploration routing chapter_6
Exploration routing chapter_6Exploration routing chapter_6
Exploration routing chapter_6Joshua Torres
 
Rashmi T S-Intrenship PPT.pptx
Rashmi T S-Intrenship PPT.pptxRashmi T S-Intrenship PPT.pptx
Rashmi T S-Intrenship PPT.pptxManojGowdaKb
 

Semelhante a CCNA 1 Routing and Switching v5.0 Chapter 9 (20)

Subnetting
SubnettingSubnetting
Subnetting
 
CCNA RS_ITN - Chapter 9
CCNA RS_ITN - Chapter 9CCNA RS_ITN - Chapter 9
CCNA RS_ITN - Chapter 9
 
CCNA RS_NB - Chapter 8
CCNA RS_NB - Chapter 8CCNA RS_NB - Chapter 8
CCNA RS_NB - Chapter 8
 
Chapter 9 : Subnetting IP networks
Chapter 9 : Subnetting IP networksChapter 9 : Subnetting IP networks
Chapter 9 : Subnetting IP networks
 
CCNAv5 - S1: Chapter 9 - Subnetting Ip Networks
CCNAv5 - S1: Chapter 9 - Subnetting Ip NetworksCCNAv5 - S1: Chapter 9 - Subnetting Ip Networks
CCNAv5 - S1: Chapter 9 - Subnetting Ip Networks
 
Chapter 09 - Subnetting IP Networks
Chapter 09 - Subnetting IP NetworksChapter 09 - Subnetting IP Networks
Chapter 09 - Subnetting IP Networks
 
Ccna v5-S1-Chapter 9
Ccna v5-S1-Chapter 9Ccna v5-S1-Chapter 9
Ccna v5-S1-Chapter 9
 
Itn instructor ppt_chapter9_subnetting_ip_networks
Itn instructor ppt_chapter9_subnetting_ip_networksItn instructor ppt_chapter9_subnetting_ip_networks
Itn instructor ppt_chapter9_subnetting_ip_networks
 
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 8
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 8CCNA (R & S) Module 01 - Introduction to Networks - Chapter 8
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 8
 
08_Subnetting_IP_Networks.pdf
08_Subnetting_IP_Networks.pdf08_Subnetting_IP_Networks.pdf
08_Subnetting_IP_Networks.pdf
 
08_Subnetting_IP_Networks.pdf
08_Subnetting_IP_Networks.pdf08_Subnetting_IP_Networks.pdf
08_Subnetting_IP_Networks.pdf
 
CCNA Discovery 3 - Chapter 4
CCNA Discovery 3 - Chapter 4CCNA Discovery 3 - Chapter 4
CCNA Discovery 3 - Chapter 4
 
Week5 f2017(1)
Week5 f2017(1)Week5 f2017(1)
Week5 f2017(1)
 
CCNA Discovery 2 - Chapter 4
CCNA Discovery 2 - Chapter 4CCNA Discovery 2 - Chapter 4
CCNA Discovery 2 - Chapter 4
 
CCNA Icnd110 s04l03
CCNA Icnd110 s04l03CCNA Icnd110 s04l03
CCNA Icnd110 s04l03
 
CCNA RS_NB - Chapter 7
CCNA RS_NB - Chapter 7CCNA RS_NB - Chapter 7
CCNA RS_NB - Chapter 7
 
CCNA v6.0 ITN - Chapter 08
CCNA v6.0 ITN - Chapter 08CCNA v6.0 ITN - Chapter 08
CCNA v6.0 ITN - Chapter 08
 
CCNA RS_ITN - Chapter 8
CCNA RS_ITN - Chapter 8CCNA RS_ITN - Chapter 8
CCNA RS_ITN - Chapter 8
 
Exploration routing chapter_6
Exploration routing chapter_6Exploration routing chapter_6
Exploration routing chapter_6
 
Rashmi T S-Intrenship PPT.pptx
Rashmi T S-Intrenship PPT.pptxRashmi T S-Intrenship PPT.pptx
Rashmi T S-Intrenship PPT.pptx
 

Último

Mental Health Awareness - a toolkit for supporting young minds
Mental Health Awareness - a toolkit for supporting young mindsMental Health Awareness - a toolkit for supporting young minds
Mental Health Awareness - a toolkit for supporting young mindsPooky Knightsmith
 
ClimART Action | eTwinning Project
ClimART Action    |    eTwinning ProjectClimART Action    |    eTwinning Project
ClimART Action | eTwinning Projectjordimapav
 
BIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptx
BIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptxBIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptx
BIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptxSayali Powar
 
DIFFERENT BASKETRY IN THE PHILIPPINES PPT.pptx
DIFFERENT BASKETRY IN THE PHILIPPINES PPT.pptxDIFFERENT BASKETRY IN THE PHILIPPINES PPT.pptx
DIFFERENT BASKETRY IN THE PHILIPPINES PPT.pptxMichelleTuguinay1
 
Mythology Quiz-4th April 2024, Quiz Club NITW
Mythology Quiz-4th April 2024, Quiz Club NITWMythology Quiz-4th April 2024, Quiz Club NITW
Mythology Quiz-4th April 2024, Quiz Club NITWQuiz Club NITW
 
Active Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdfActive Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdfPatidar M
 
Oppenheimer Film Discussion for Philosophy and Film
Oppenheimer Film Discussion for Philosophy and FilmOppenheimer Film Discussion for Philosophy and Film
Oppenheimer Film Discussion for Philosophy and FilmStan Meyer
 
ROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptxROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptxVanesaIglesias10
 
Decoding the Tweet _ Practical Criticism in the Age of Hashtag.pptx
Decoding the Tweet _ Practical Criticism in the Age of Hashtag.pptxDecoding the Tweet _ Practical Criticism in the Age of Hashtag.pptx
Decoding the Tweet _ Practical Criticism in the Age of Hashtag.pptxDhatriParmar
 
Narcotic and Non Narcotic Analgesic..pdf
Narcotic and Non Narcotic Analgesic..pdfNarcotic and Non Narcotic Analgesic..pdf
Narcotic and Non Narcotic Analgesic..pdfPrerana Jadhav
 
4.11.24 Mass Incarceration and the New Jim Crow.pptx
4.11.24 Mass Incarceration and the New Jim Crow.pptx4.11.24 Mass Incarceration and the New Jim Crow.pptx
4.11.24 Mass Incarceration and the New Jim Crow.pptxmary850239
 
Q-Factor HISPOL Quiz-6th April 2024, Quiz Club NITW
Q-Factor HISPOL Quiz-6th April 2024, Quiz Club NITWQ-Factor HISPOL Quiz-6th April 2024, Quiz Club NITW
Q-Factor HISPOL Quiz-6th April 2024, Quiz Club NITWQuiz Club NITW
 
Congestive Cardiac Failure..presentation
Congestive Cardiac Failure..presentationCongestive Cardiac Failure..presentation
Congestive Cardiac Failure..presentationdeepaannamalai16
 
Expanded definition: technical and operational
Expanded definition: technical and operationalExpanded definition: technical and operational
Expanded definition: technical and operationalssuser3e220a
 
Grade Three -ELLNA-REVIEWER-ENGLISH.pptx
Grade Three -ELLNA-REVIEWER-ENGLISH.pptxGrade Three -ELLNA-REVIEWER-ENGLISH.pptx
Grade Three -ELLNA-REVIEWER-ENGLISH.pptxkarenfajardo43
 
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfGrade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfJemuel Francisco
 
Q-Factor General Quiz-7th April 2024, Quiz Club NITW
Q-Factor General Quiz-7th April 2024, Quiz Club NITWQ-Factor General Quiz-7th April 2024, Quiz Club NITW
Q-Factor General Quiz-7th April 2024, Quiz Club NITWQuiz Club NITW
 
Reading and Writing Skills 11 quarter 4 melc 1
Reading and Writing Skills 11 quarter 4 melc 1Reading and Writing Skills 11 quarter 4 melc 1
Reading and Writing Skills 11 quarter 4 melc 1GloryAnnCastre1
 

Último (20)

Mental Health Awareness - a toolkit for supporting young minds
Mental Health Awareness - a toolkit for supporting young mindsMental Health Awareness - a toolkit for supporting young minds
Mental Health Awareness - a toolkit for supporting young minds
 
ClimART Action | eTwinning Project
ClimART Action    |    eTwinning ProjectClimART Action    |    eTwinning Project
ClimART Action | eTwinning Project
 
BIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptx
BIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptxBIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptx
BIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptx
 
DIFFERENT BASKETRY IN THE PHILIPPINES PPT.pptx
DIFFERENT BASKETRY IN THE PHILIPPINES PPT.pptxDIFFERENT BASKETRY IN THE PHILIPPINES PPT.pptx
DIFFERENT BASKETRY IN THE PHILIPPINES PPT.pptx
 
Mythology Quiz-4th April 2024, Quiz Club NITW
Mythology Quiz-4th April 2024, Quiz Club NITWMythology Quiz-4th April 2024, Quiz Club NITW
Mythology Quiz-4th April 2024, Quiz Club NITW
 
Active Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdfActive Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdf
 
prashanth updated resume 2024 for Teaching Profession
prashanth updated resume 2024 for Teaching Professionprashanth updated resume 2024 for Teaching Profession
prashanth updated resume 2024 for Teaching Profession
 
Mattingly "AI & Prompt Design: Large Language Models"
Mattingly "AI & Prompt Design: Large Language Models"Mattingly "AI & Prompt Design: Large Language Models"
Mattingly "AI & Prompt Design: Large Language Models"
 
Oppenheimer Film Discussion for Philosophy and Film
Oppenheimer Film Discussion for Philosophy and FilmOppenheimer Film Discussion for Philosophy and Film
Oppenheimer Film Discussion for Philosophy and Film
 
ROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptxROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptx
 
Decoding the Tweet _ Practical Criticism in the Age of Hashtag.pptx
Decoding the Tweet _ Practical Criticism in the Age of Hashtag.pptxDecoding the Tweet _ Practical Criticism in the Age of Hashtag.pptx
Decoding the Tweet _ Practical Criticism in the Age of Hashtag.pptx
 
Narcotic and Non Narcotic Analgesic..pdf
Narcotic and Non Narcotic Analgesic..pdfNarcotic and Non Narcotic Analgesic..pdf
Narcotic and Non Narcotic Analgesic..pdf
 
4.11.24 Mass Incarceration and the New Jim Crow.pptx
4.11.24 Mass Incarceration and the New Jim Crow.pptx4.11.24 Mass Incarceration and the New Jim Crow.pptx
4.11.24 Mass Incarceration and the New Jim Crow.pptx
 
Q-Factor HISPOL Quiz-6th April 2024, Quiz Club NITW
Q-Factor HISPOL Quiz-6th April 2024, Quiz Club NITWQ-Factor HISPOL Quiz-6th April 2024, Quiz Club NITW
Q-Factor HISPOL Quiz-6th April 2024, Quiz Club NITW
 
Congestive Cardiac Failure..presentation
Congestive Cardiac Failure..presentationCongestive Cardiac Failure..presentation
Congestive Cardiac Failure..presentation
 
Expanded definition: technical and operational
Expanded definition: technical and operationalExpanded definition: technical and operational
Expanded definition: technical and operational
 
Grade Three -ELLNA-REVIEWER-ENGLISH.pptx
Grade Three -ELLNA-REVIEWER-ENGLISH.pptxGrade Three -ELLNA-REVIEWER-ENGLISH.pptx
Grade Three -ELLNA-REVIEWER-ENGLISH.pptx
 
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfGrade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
 
Q-Factor General Quiz-7th April 2024, Quiz Club NITW
Q-Factor General Quiz-7th April 2024, Quiz Club NITWQ-Factor General Quiz-7th April 2024, Quiz Club NITW
Q-Factor General Quiz-7th April 2024, Quiz Club NITW
 
Reading and Writing Skills 11 quarter 4 melc 1
Reading and Writing Skills 11 quarter 4 melc 1Reading and Writing Skills 11 quarter 4 melc 1
Reading and Writing Skills 11 quarter 4 melc 1
 

CCNA 1 Routing and Switching v5.0 Chapter 9

  • 1. Chapter 9: Subnetting IP Networks Introduction to Networks © 2008 Cisco Systems, Inc. All Presentation_ID rights reserved. Cisco Confidential 1
  • 2. Chapter 9 9.0 Introduction 9.1 Subnetting an IPv4 Network 9.2 Addressing Schemes 9.3 Design Considerations for IPv6 9.4 Summary Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 2
  • 3. Chapter 9: Objectives Upon completion of this chapter, you will be able to:  Explain why routing is necessary for hosts on different networks to communicate.  Describe IP as a communication protocol used to identify a single device on a network.  Given a network and a subnet mask, calculate the number of host addresses available.  Calculate the necessary subnet mask in order to accommodate the requirements of a network.  Describe the benefits of variable length subnet masking (VLSM).  Explain how IPv6 address assignments are implemented in a business network. Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 3
  • 4. 9.1 Subnetting an IPv4 Network © 2008 Cisco Systems, Inc. All Presentation_ID rights reserved. Cisco Confidential 4
  • 5. Network Segmentation Reasons for Subnetting Subnetting is the process of segmenting a network into multiple smaller network spaces called subnetworks or subnets.  Large networks must be segmented into smaller subnetworks, creating smaller groups of devices and services to: • Control traffic by containing broadcast traffic within each subnetwork. • Reduce overall network traffic and improve network performance. Communication Between Subnets  A router is necessary for devices on different networks and subnets to communicate.  Each router interface must have an IPv4 host address that belongs to the network or subnet that the router interface is connected.  Devices on a network and subnet use the router interface attached to their LAN as their default gateway. Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 5
  • 6. IP Subnetting is FUNdamental The Plan Planning the Network Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 6
  • 7. Subnetting an IPv4 Network Basic Subnetting  Borrowing Bits to Create Subnets  Borrowing 1 bit 21 = 2 subnets Borrowing 1 Bit from the host portion creates 2 subnets with the same subnet mask Subnet 1 Network 192.168.1.128-255/25 Mask: 255.255.255.128 Subnet 0 Network 192.168.1.0-127/25 Mask: 255.255.255.128 Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 7
  • 8. Subnetting an IPv4 Network Subnets in Use Subnets in Use Subnet 0 Network 192.168.1.0-127/25 Subnet 1 Network 192.168.1.128-255/25 Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 8
  • 9. Subnetting an IPv4 Network Subnetting Formulas Calculate number of subnets Calculate number of hosts Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 9
  • 10. Subnetting an IPv4 Network Creating 4 Subnets Borrowing 2 bits to create 4 subnets. 22 = 4 subnets Creating 4 Subnets Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 10
  • 11. Subnetting an IPv4 Network Creating Eight Subnets Borrowing 3 bits to Create 8 Subnets. 23 = 8 subnets Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 11
  • 12. Subnetting an IPv4 Network Creating Eight Subnets (Cont.) Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 12
  • 13. Subnetting an IPv4 Network Creating Eight Subnets (Cont.) Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 13
  • 14. Determining the Subnet Mask Subnetting Based on Host Requirements Two considerations when planning subnets:  Number of subnets required  Number of host addresses required Formula to determine number of usable hosts: 2^n-2  2^n (where n is the number of remaining host bits) is used to calculate the number of hosts.  -2 (The subnetwork ID and broadcast address cannot be used on each subnet.) Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 14
  • 15. Determining the Subnet Mask Subnetting Network-Based Requirements Calculate the number of subnets:  2^n (where n is the number of bits borrowed)  Subnet needed for each department. Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 15
  • 16. Determining the Subnet Mask Subnetting To Meet Network Requirements  Balance the required number of subnets and hosts for the largest subnet.  Design the addressing scheme to accommodate the maximum number of hosts for each subnet.  Allow for growth in each subnet. Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 16
  • 17. Determining the Subnet Mask Subnetting To Meet Network Requirements Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 17
  • 18. Benefits of Variable Length Subnet Masking Traditional Subnetting Wastes Addresses  Traditional subnetting – Uses the same number of addresses is allocated for each subnet.  Subnets that require fewer addresses have unused (wasted) addresses; for example, WAN links only need two addresses. Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 18
  • 19. Benefits of Variable Length Subnet Masking Variable Length Subnet Masks (VLSM)  The variable-length subnet mask (VLSM) or subnetting a subnet provides more efficient use of addresses.  VLSM allows a network space to be divided in unequal parts.  Subnet mask varies, depending on how many bits have been borrowed for a particular subnet.  Network is first subnetted, and then the subnets are resubnetted. Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 19
  • 20. Benefits of Variable Length Subnet Masking Basic VLSM Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 20
  • 21. Benefits of Variable Length Subnet Masking VLSM in Practice  Using VLSM subnets, the LAN and WAN segments in example below can be addressed with minimum waste.  Each LANs will be assigned a subnet with /27 mask.  Each WAN link will be assigned a subnet with /30 mask. Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 21
  • 22. Benefits of Variable Length Subnet Masking VLSM Chart Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 22
  • 23. 9.2 Addressing Schemes © 2008 Cisco Systems, Inc. All Presentation_ID rights reserved. Cisco Confidential 23
  • 24. Structured Design Planning to Address the Network Allocation of network addresses should be planned and documented for the purposes of:  Preventing duplication of addresses  Providing and controlling access  Monitoring security and performance Client addresses – Usually dynamically assigned using the Dynamic Host Configuration Protocol (DHCP). Sample Network Addressing Plan Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 24
  • 25. 9.3 Design Considerations for IPv6 © 2008 Cisco Systems, Inc. All Presentation_ID rights reserved. Cisco Confidential 25
  • 26. Subnetting an IPv6 Network Subnetting Using the Subnet ID An IPv6 Network Space is subnetted to support hierarchical, logical design of the network Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 26
  • 27. Subnetting an IPv6 Network IPV6 Subnet Allocation Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 27
  • 28. Subnetting an IPv6 Network Subnetting into the Interface ID IPv6 bits can be borrowed from the interface ID to create additional IPv6 subnets. Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 28
  • 29. 9.3 Summary © 2008 Cisco Systems, Inc. All Presentation_ID rights reserved. Cisco Confidential 29
  • 30. Chapter 9: Summary In this chapter, you learned that:  Subnetting is the process of segmenting a network, by dividing it into multiple smaller network spaces.  Subnetting a subnet, or using VLSM, was designed to avoid wasting addresses.  IPv6 address space is subnetted to support the hierarchical, logical design of the network.  Size, location, use, and access requirements are all considerations in the address planning process.  IP networks must be tested to verify connectivity and operational performance. Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 30
  • 31. Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 31