SlideShare uma empresa Scribd logo
1 de 37
© 2008 Cisco Systems, Inc. All rights reserved. Cisco ConfidentialPresentation_ID 1
Chapter 8.2.2:
IPv6 Addressing
Introduction to Networks
Jose B. Tan, Jr.
Enverga University
Presentation_ID 2© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Chapter 8
8.0 Introduction
8.1 IPv4 Network Addresses
8.2 IPv6 Network Addresses
8.3 Connectivity Verification
8.4 Summary
Presentation_ID 3© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
IP Addressing
Chapter 8.2.2: Objectives
In this chapter, you will be able to:
 Describe the structure of an IPv4 address.
 Describe the purpose of the subnet mask.
 Compare the characteristics and uses of the unicast,
broadcast and multicast IPv4 addresses.
 Explain the need for IPv6 addressing.
 Describe the representation of an IPv6 address.
 Describe types of IPv6 network addresses.
 Configure global unicast addresses.
Presentation_ID 4© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
IPv4 Issues
The Need for IPv6
 IPv6 is designed to be the successor to IPv4
 Depletion of IPv4 address space has been the motivating
factor for moving to IPv6
 Projections show that all five RIRs will run out of IPv4
addresses between 2015 and 2020
 With an increasing Internet population, a limited IPv4 address
space, issues with NAT and an Internet of things, the time
has come to begin the transition to IPv6!
Presentation_ID 5© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
IPv4 Issues
The Need for IPv6
 IPv4 has theoretical maximum of 4.3 billion addresses plus
private addresses in combination with NAT
 IPv6 larger 128-bit address space providing for 340
undecillion addresses
 IPv6 fixes the limitations of IPv4 and include additional
enhancements such as ICMPv6
Presentation_ID 6© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
How Large is the Address Space?
 2128 = 3.4×1038 = =
340,282,366,920,938,000,000,000,000,000,000,000,000.00
 Interesting Facts:
approximately 4.8×1028 addresses for each of the seven billion people
alive in 2011
IPv6 could provide each and every square micrometer of the earth’s
surface with 5,000 unique addresses. What’s a micrometer? About one
tenth the diameter of a droplet of fog!
Presentation_ID 7© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
IPv4 Issues
IPv4 and IPv6 Coexistence
The migration techniques can be divided into three
categories:
#1
Dual-stack: Allows IPv4 and IPv6 to
coexist on the same network. Devices run
both IPv4 and IPv6 protocol stacks
simultaneously.
Presentation_ID 8© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
IPv4 Issues
IPv4 and IPv6 Coexistence
The migration techniques can be divided into three
categories:
#2
Tunnelling: A method of transporting an IPv6
packet over an IPv4 network. The IPv6 packet
is encapsulated inside an IPv4 packet.
Presentation_ID 9© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
IPv4 Issues
IPv4 and IPv6 Coexistence
The migration techniques can be divided into three
categories:
#3
Translation: Network Address Translation 64 (NAT64)
allows IPv6-enabled devices to communicate with IPv4-
enabled devices using a translation technique similar to
NAT for IPv4. An IPv6 packet is translated to an IPv4
packet, and vice versa.
Presentation_ID 10© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
IPv6 Addressing
Hexadecimal Number System
 Hexadecimal is a
base sixteen system
 Base 16 numbering
system uses the
numbers 0 to 9 and
the letters A to F
 Four bits (half of a
byte) can be
represented with a
single hexadecimal
value
Presentation_ID 11© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
IPv6 Addressing
IPv6 Address Representation
 Look at the binary bit
patterns that match
the decimal and
hexadecimal values
Presentation_ID 12© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
IPv6 Addressing
IPv6 Address Representation
 128 bits in length and written as a string of hexadecimal
values
 In IPv6, 4 bits represents a single hexadecimal digit, 32
hexadecimal values = IPv6 address
2001:0DB8:0000:1111:0000:0000:0000:0200
FE80:0000:0000:0000:0123:4567:89AB:CDEF
 Can be written in either lowercase or uppercase
Presentation_ID 13© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
IPv6 Addressing
IPv6 Address Representation
 Hextet used to refer to a segment of 16 bits or four
hexadecimals
Presentation_ID 14© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
IPv6 Addressing
Rule 1- Omitting Leading 0s
 The first rule to help reduce the notation of IPv6 addresses is
any leading 0s (zeros) in any 16-bit section or hextet can be
omitted
 01AB can be represented as 1AB
 09F0 can be represented as 9F0
 0A00 can be represented as A00
 00AB can be represented as AB
Presentation_ID 15© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
IPv6 Addressing
Rule 1- Omitting Leading 0s
Presentation_ID 16© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
IPv6 Addressing
Rule 1- Omitting Leading 0s
Presentation_ID 17© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
IPv6 Addressing
Rule 1- Omitting Leading 0s
Presentation_ID 18© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
IPv6 Addressing
Rule 1- Omitting Leading 0s
Presentation_ID 19© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
IPv6 Addressing
Rule 2- Omitting All 0 Segments
 A double colon (::) can replace any single, contiguous string
of one or more 16-bit segments (hextets) consisting of all 0’s
 Double colon (::) can only be used once within an address
otherwise the address will be ambiguous
 Known as the compressed format
 Incorrect address - 2001:0DB8::ABCD::1234
Presentation_ID 20© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
IPv6 Addressing
Rule 2- Omitting All 0 Segments
 Examples
#1
#2
Presentation_ID 21© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
IPv6 Addressing
Rule 2- Omitting All 0 Segments
Presentation_ID 22© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
IPv6 Addressing
Rule 2- Omitting All 0 Segments
Presentation_ID 23© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
IPv6 Addressing
Rule 2- Omitting All 0 Segments
Presentation_ID 24© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
IPv6 Addressing
Rule 2- Omitting All 0 Segments
Presentation_ID 25© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
IPv6 Addressing
Rule 2- Omitting All 0 Segments
Presentation_ID 26© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
IPv6 Addressing
Rule 2- Omitting All 0 Segments
Presentation_ID 27© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Types of IPv6 Addresses
IPv6 Address Types
There are three types of IPv6 addresses:
• Unicast
• Multicast
• Anycast.
Note: IPv6 does not have broadcast addresses.
Presentation_ID 28© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
IPv6 Exercises
 1) How do you correctly compress the following IPv6
address:
2001:0db8:0000:0000:0000:0000:0000:0c50
 A.2001:0db8:0:0:0:0:0:0c50
 B.2001:0db8::0c50
 C.2001:db8::c50
 D.2001:db8::c5
Presentation_ID 29© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
IPv6 Exercises
 1) How do you correctly compress the following IPv6
address:
2001:0db8:0000:0000:0000:0000:0000:0c50
 A.2001:0db8:0:0:0:0:0:0c50
 B.2001:0db8::0c50
 C.2001:db8::c50 ** <- Most compressed
 D.2001:db8::c5
**According to RFC5952, this answer is most correct. However,
your IPv6 capable device will accept all possibilities
Presentation_ID 30© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
IPv6 Exercises
 2) How do you correctly compress the following IPv6
address:
2001:0db8:0000:0000:b450:0000:0000:00b4
 A.2001:db8::b450::b4
 B.2001:db8::b450:0:0:b4
 C.2001:db8::b45:0000:0000:b4
 D.2001:db8:0:0:b450::b4
Presentation_ID 31© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
IPv6 Exercises
 2) How do you correctly compress the following IPv6
address:
2001:0db8:0000:0000:b450:0000:0000:00b4
 A.2001:db8::b450::b4
 B.2001:db8::b450:0:0:b4**
 C.2001:db8::b45:0000:0000:b4
 D.2001:db8:0:0:b450::b4
**According to RFC5952, this answer is most correct. However,
your IPv6 capable device will accept all possibilities
Presentation_ID 32© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
IPv6 Exercises
 3) How do you correctly compress the following IPv6
address:
2001:0db8:00f0:0000:0000:03d0:0000:00ff
 A.2001:0db8:00f0::3d0:0:00ff
 B.2001:db8:f0:0:0:3d0:0:ff
 C.2001:db8:f0::3d0:0:ff
 D.2001:0db8:0f0:0:0:3d0:0:0ff
Presentation_ID 33© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
IPv6 Exercises
 3) How do you correctly compress the following IPv6
address:
2001:0db8:00f0:0000:0000:03d0:0000:00ff
 A.2001:0db8:00f0::3d0:0:00ff
 B.2001:db8:f0:0:0:3d0:0:ff
 C.2001:db8:f0::3d0:0:ff**
 D.2001:0db8:0f0:0:0:3d0:0:0ff
**According to RFC5952, this answer is most correct. However,
your IPv6 capable device will accept all possibilities
Presentation_ID 34© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
IPv6 Exercises
 4) How do you correctly compress the following IPv6
address:
2001:0db8:0f3c:00d7:7dab:03d0:0000:00ff
 A.2001:db8:f3c:d7:7dab:3d:0:ff
 B.2001:db8:f3c:d7:7dab:3d0:0:ff
 C.2001:db8:f3c:d7:7dab:3d0::ff
 D.2001:0db8:0f3c:00d7:7dab:03d::00ff
Presentation_ID 35© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
IPv6 Exercises
 4) How do you correctly compress the following IPv6
address:
2001:0db8:0f3c:00d7:7dab:03d0:0000:00ff
 A.2001:db8:f3c:d7:7dab:3d:0:ff
 B.2001:db8:f3c:d7:7dab:3d0:0:ff**
 C.2001:db8:f3c:d7:7dab:3d0::ff
 D.2001:0db8:0f3c:00d7:7dab:03d::00ff
**According to RFC5952, this answer is most correct. However,
your IPv6 capable device will accept all possibilities
Presentation_ID 36© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
IP Addressing
Summary
 The depletion of IPv4 address space is the motivating factor
for moving to IPv6. Each IPv6 address has 128 bits verses
the 32 bits in an IPv4 address. The prefix length is used to
indicate the network portion of an IPv6 address using the
following format: IPv6 address/prefix length.
Presentation_ID 37© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential

Mais conteúdo relacionado

Mais procurados

Addressing plans
Addressing plansAddressing plans
Addressing plans
enes373
 
ipv6 mpls by Patrick Grossetete
ipv6 mpls by Patrick Grosseteteipv6 mpls by Patrick Grossetete
ipv6 mpls by Patrick Grossetete
Febrian ‎
 
Introduction to ipv6 v1.3
Introduction to ipv6 v1.3Introduction to ipv6 v1.3
Introduction to ipv6 v1.3
Karunakant Rai
 

Mais procurados (20)

IPV6 Hands on Lab
IPV6 Hands on Lab IPV6 Hands on Lab
IPV6 Hands on Lab
 
Ipv6 course
Ipv6  courseIpv6  course
Ipv6 course
 
Addressing plans
Addressing plansAddressing plans
Addressing plans
 
IPv6
IPv6IPv6
IPv6
 
IPv6 Autoconfig
IPv6 AutoconfigIPv6 Autoconfig
IPv6 Autoconfig
 
Simplified IPv6 Subnetting. Understanding What’s What.
Simplified IPv6 Subnetting. Understanding What’s What.Simplified IPv6 Subnetting. Understanding What’s What.
Simplified IPv6 Subnetting. Understanding What’s What.
 
Introduction to IPv6
Introduction to IPv6Introduction to IPv6
Introduction to IPv6
 
IPv6 Best Practice
IPv6 Best PracticeIPv6 Best Practice
IPv6 Best Practice
 
ipv6 mpls by Patrick Grossetete
ipv6 mpls by Patrick Grosseteteipv6 mpls by Patrick Grossetete
ipv6 mpls by Patrick Grossetete
 
About IPv6
About IPv6About IPv6
About IPv6
 
Introduction to ipv6 v1.3
Introduction to ipv6 v1.3Introduction to ipv6 v1.3
Introduction to ipv6 v1.3
 
IPv6-addressing-subnetting
IPv6-addressing-subnettingIPv6-addressing-subnetting
IPv6-addressing-subnetting
 
IPv6 Address Planning
IPv6 Address PlanningIPv6 Address Planning
IPv6 Address Planning
 
IPv6 By Vipin
IPv6 By VipinIPv6 By Vipin
IPv6 By Vipin
 
IPv6 Transition,Transcición IPv6
IPv6 Transition,Transcición IPv6IPv6 Transition,Transcición IPv6
IPv6 Transition,Transcición IPv6
 
Ipv6
Ipv6Ipv6
Ipv6
 
IPv6
IPv6IPv6
IPv6
 
Cisco Certified Network Associate
Cisco Certified Network AssociateCisco Certified Network Associate
Cisco Certified Network Associate
 
IPv6 How To Set Up a Linux IPv6 Lan
IPv6 How To Set Up  a Linux IPv6 LanIPv6 How To Set Up  a Linux IPv6 Lan
IPv6 How To Set Up a Linux IPv6 Lan
 
IPV6 Introduction
IPV6 Introduction IPV6 Introduction
IPV6 Introduction
 

Destaque

IPV6 addressing plan exercise-2
IPV6 addressing plan exercise-2IPV6 addressing plan exercise-2
IPV6 addressing plan exercise-2
stupidbopols
 
IPv6 Fundamentals & Securities
IPv6 Fundamentals & SecuritiesIPv6 Fundamentals & Securities
IPv6 Fundamentals & Securities
Don Anto
 
Fred explainsi pv6-v2-alpha
Fred explainsi pv6-v2-alphaFred explainsi pv6-v2-alpha
Fred explainsi pv6-v2-alpha
Fred Bovy
 
IPV6 addressing plan exercise-1
IPV6 addressing plan exercise-1IPV6 addressing plan exercise-1
IPV6 addressing plan exercise-1
stupidbopols
 

Destaque (19)

IPV6 addressing plan exercise-2
IPV6 addressing plan exercise-2IPV6 addressing plan exercise-2
IPV6 addressing plan exercise-2
 
IPv6 Addressing Plans and Subnetting
IPv6 Addressing Plans and SubnettingIPv6 Addressing Plans and Subnetting
IPv6 Addressing Plans and Subnetting
 
Getting IPv6 & Securing your Routing
Getting IPv6 & Securing your RoutingGetting IPv6 & Securing your Routing
Getting IPv6 & Securing your Routing
 
IPv6 Fundamentals & Securities
IPv6 Fundamentals & SecuritiesIPv6 Fundamentals & Securities
IPv6 Fundamentals & Securities
 
Fred explainsi pv6-v2-alpha
Fred explainsi pv6-v2-alphaFred explainsi pv6-v2-alpha
Fred explainsi pv6-v2-alpha
 
Mobile IPv6 course at CACIC 2006
Mobile IPv6 course at CACIC 2006Mobile IPv6 course at CACIC 2006
Mobile IPv6 course at CACIC 2006
 
IPv4 and IPv6 - addressing Internet infrastructure
IPv4 and IPv6 - addressing Internet infrastructureIPv4 and IPv6 - addressing Internet infrastructure
IPv4 and IPv6 - addressing Internet infrastructure
 
IPV6 addressing plan exercise-1
IPV6 addressing plan exercise-1IPV6 addressing plan exercise-1
IPV6 addressing plan exercise-1
 
IPv6 Addressing Fundamentals
IPv6 Addressing FundamentalsIPv6 Addressing Fundamentals
IPv6 Addressing Fundamentals
 
I pv6 for cmu
I pv6 for cmuI pv6 for cmu
I pv6 for cmu
 
IPV6 Addressing
IPV6 Addressing IPV6 Addressing
IPV6 Addressing
 
Internet Protocol Version 6
Internet Protocol Version 6Internet Protocol Version 6
Internet Protocol Version 6
 
IPv6 networking training sduffy v3
IPv6 networking training   sduffy v3IPv6 networking training   sduffy v3
IPv6 networking training sduffy v3
 
Lesson 3: IPv6 Fundamentals
Lesson 3: IPv6 FundamentalsLesson 3: IPv6 Fundamentals
Lesson 3: IPv6 Fundamentals
 
Networking - TCP/IP stack introduction and IPv6
Networking - TCP/IP stack introduction and IPv6Networking - TCP/IP stack introduction and IPv6
Networking - TCP/IP stack introduction and IPv6
 
Addressing IPv6
Addressing IPv6Addressing IPv6
Addressing IPv6
 
IPv6 theoryfinalx
IPv6 theoryfinalxIPv6 theoryfinalx
IPv6 theoryfinalx
 
IPv6 Fundamentals
IPv6 FundamentalsIPv6 Fundamentals
IPv6 Fundamentals
 
ipv6 ppt
ipv6 pptipv6 ppt
ipv6 ppt
 

Semelhante a instructor ppt_chapter8.2.2 - i_pv6 addressing with exercises of IPv6

I pv6 addressing-rg-animated
I pv6 addressing-rg-animatedI pv6 addressing-rg-animated
I pv6 addressing-rg-animated
masbangkit
 
CCNA Exploration 2 - Chapter 6
CCNA Exploration 2 - Chapter 6CCNA Exploration 2 - Chapter 6
CCNA Exploration 2 - Chapter 6
Irsandi Hasan
 
IP_Addressing_and Subnetting.pdf
IP_Addressing_and Subnetting.pdfIP_Addressing_and Subnetting.pdf
IP_Addressing_and Subnetting.pdf
SayusAli
 
Exploration routing chapter_6
Exploration routing chapter_6Exploration routing chapter_6
Exploration routing chapter_6
Joshua Torres
 
Ex 1 chapter06-i-pv4-tony_chen
Ex 1 chapter06-i-pv4-tony_chenEx 1 chapter06-i-pv4-tony_chen
Ex 1 chapter06-i-pv4-tony_chen
Đô GiẢn
 
Ccna prep ip subnetting from networkers
Ccna prep  ip subnetting from networkersCcna prep  ip subnetting from networkers
Ccna prep ip subnetting from networkers
Jerome Luison
 

Semelhante a instructor ppt_chapter8.2.2 - i_pv6 addressing with exercises of IPv6 (20)

CCNA RS_ITN - Chapter 8
CCNA RS_ITN - Chapter 8CCNA RS_ITN - Chapter 8
CCNA RS_ITN - Chapter 8
 
Ccna v5-S1-Chapter 8
Ccna v5-S1-Chapter 8Ccna v5-S1-Chapter 8
Ccna v5-S1-Chapter 8
 
CCNA RS_NB - Chapter 7
CCNA RS_NB - Chapter 7CCNA RS_NB - Chapter 7
CCNA RS_NB - Chapter 7
 
Chapter 08 - IP Addressing
Chapter 08 - IP AddressingChapter 08 - IP Addressing
Chapter 08 - IP Addressing
 
CCNAv5 - S1: Chapter 8 - Ip Addressing
CCNAv5 - S1: Chapter 8 - Ip AddressingCCNAv5 - S1: Chapter 8 - Ip Addressing
CCNAv5 - S1: Chapter 8 - Ip Addressing
 
Chapter 8 : IP addressing
Chapter 8 : IP addressingChapter 8 : IP addressing
Chapter 8 : IP addressing
 
CCNA 1 Routing and Switching v5.0 Chapter 8
CCNA 1 Routing and Switching v5.0 Chapter 8CCNA 1 Routing and Switching v5.0 Chapter 8
CCNA 1 Routing and Switching v5.0 Chapter 8
 
ip v6
ip v6ip v6
ip v6
 
CCNA RS_ITN - Chapter 6
CCNA RS_ITN - Chapter 6CCNA RS_ITN - Chapter 6
CCNA RS_ITN - Chapter 6
 
I pv6 addressing-rg-animated
I pv6 addressing-rg-animatedI pv6 addressing-rg-animated
I pv6 addressing-rg-animated
 
Addressing the Network – IPv4
Addressing the Network – IPv4Addressing the Network – IPv4
Addressing the Network – IPv4
 
CCNA Exploration 2 - Chapter 6
CCNA Exploration 2 - Chapter 6CCNA Exploration 2 - Chapter 6
CCNA Exploration 2 - Chapter 6
 
IP_Addressing_and Subnetting.pdf
IP_Addressing_and Subnetting.pdfIP_Addressing_and Subnetting.pdf
IP_Addressing_and Subnetting.pdf
 
Exploration routing chapter_6
Exploration routing chapter_6Exploration routing chapter_6
Exploration routing chapter_6
 
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
 
Ex 1 chapter06-i-pv4-tony_chen
Ex 1 chapter06-i-pv4-tony_chenEx 1 chapter06-i-pv4-tony_chen
Ex 1 chapter06-i-pv4-tony_chen
 
Subnetting
SubnettingSubnetting
Subnetting
 
Ccna prep ip subnetting from networkers
Ccna prep  ip subnetting from networkersCcna prep  ip subnetting from networkers
Ccna prep ip subnetting from networkers
 

Último

Making and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfMaking and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdf
Chris Hunter
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
PECB
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptx
negromaestrong
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
ciinovamais
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
QucHHunhnh
 

Último (20)

Making and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfMaking and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdf
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docx
 
Food Chain and Food Web (Ecosystem) EVS, B. Pharmacy 1st Year, Sem-II
Food Chain and Food Web (Ecosystem) EVS, B. Pharmacy 1st Year, Sem-IIFood Chain and Food Web (Ecosystem) EVS, B. Pharmacy 1st Year, Sem-II
Food Chain and Food Web (Ecosystem) EVS, B. Pharmacy 1st Year, Sem-II
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptx
 
psychiatric nursing HISTORY COLLECTION .docx
psychiatric  nursing HISTORY  COLLECTION  .docxpsychiatric  nursing HISTORY  COLLECTION  .docx
psychiatric nursing HISTORY COLLECTION .docx
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 

instructor ppt_chapter8.2.2 - i_pv6 addressing with exercises of IPv6

  • 1. © 2008 Cisco Systems, Inc. All rights reserved. Cisco ConfidentialPresentation_ID 1 Chapter 8.2.2: IPv6 Addressing Introduction to Networks Jose B. Tan, Jr. Enverga University
  • 2. Presentation_ID 2© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Chapter 8 8.0 Introduction 8.1 IPv4 Network Addresses 8.2 IPv6 Network Addresses 8.3 Connectivity Verification 8.4 Summary
  • 3. Presentation_ID 3© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential IP Addressing Chapter 8.2.2: Objectives In this chapter, you will be able to:  Describe the structure of an IPv4 address.  Describe the purpose of the subnet mask.  Compare the characteristics and uses of the unicast, broadcast and multicast IPv4 addresses.  Explain the need for IPv6 addressing.  Describe the representation of an IPv6 address.  Describe types of IPv6 network addresses.  Configure global unicast addresses.
  • 4. Presentation_ID 4© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential IPv4 Issues The Need for IPv6  IPv6 is designed to be the successor to IPv4  Depletion of IPv4 address space has been the motivating factor for moving to IPv6  Projections show that all five RIRs will run out of IPv4 addresses between 2015 and 2020  With an increasing Internet population, a limited IPv4 address space, issues with NAT and an Internet of things, the time has come to begin the transition to IPv6!
  • 5. Presentation_ID 5© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential IPv4 Issues The Need for IPv6  IPv4 has theoretical maximum of 4.3 billion addresses plus private addresses in combination with NAT  IPv6 larger 128-bit address space providing for 340 undecillion addresses  IPv6 fixes the limitations of IPv4 and include additional enhancements such as ICMPv6
  • 6. Presentation_ID 6© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential How Large is the Address Space?  2128 = 3.4×1038 = = 340,282,366,920,938,000,000,000,000,000,000,000,000.00  Interesting Facts: approximately 4.8×1028 addresses for each of the seven billion people alive in 2011 IPv6 could provide each and every square micrometer of the earth’s surface with 5,000 unique addresses. What’s a micrometer? About one tenth the diameter of a droplet of fog!
  • 7. Presentation_ID 7© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential IPv4 Issues IPv4 and IPv6 Coexistence The migration techniques can be divided into three categories: #1 Dual-stack: Allows IPv4 and IPv6 to coexist on the same network. Devices run both IPv4 and IPv6 protocol stacks simultaneously.
  • 8. Presentation_ID 8© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential IPv4 Issues IPv4 and IPv6 Coexistence The migration techniques can be divided into three categories: #2 Tunnelling: A method of transporting an IPv6 packet over an IPv4 network. The IPv6 packet is encapsulated inside an IPv4 packet.
  • 9. Presentation_ID 9© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential IPv4 Issues IPv4 and IPv6 Coexistence The migration techniques can be divided into three categories: #3 Translation: Network Address Translation 64 (NAT64) allows IPv6-enabled devices to communicate with IPv4- enabled devices using a translation technique similar to NAT for IPv4. An IPv6 packet is translated to an IPv4 packet, and vice versa.
  • 10. Presentation_ID 10© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential IPv6 Addressing Hexadecimal Number System  Hexadecimal is a base sixteen system  Base 16 numbering system uses the numbers 0 to 9 and the letters A to F  Four bits (half of a byte) can be represented with a single hexadecimal value
  • 11. Presentation_ID 11© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential IPv6 Addressing IPv6 Address Representation  Look at the binary bit patterns that match the decimal and hexadecimal values
  • 12. Presentation_ID 12© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential IPv6 Addressing IPv6 Address Representation  128 bits in length and written as a string of hexadecimal values  In IPv6, 4 bits represents a single hexadecimal digit, 32 hexadecimal values = IPv6 address 2001:0DB8:0000:1111:0000:0000:0000:0200 FE80:0000:0000:0000:0123:4567:89AB:CDEF  Can be written in either lowercase or uppercase
  • 13. Presentation_ID 13© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential IPv6 Addressing IPv6 Address Representation  Hextet used to refer to a segment of 16 bits or four hexadecimals
  • 14. Presentation_ID 14© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential IPv6 Addressing Rule 1- Omitting Leading 0s  The first rule to help reduce the notation of IPv6 addresses is any leading 0s (zeros) in any 16-bit section or hextet can be omitted  01AB can be represented as 1AB  09F0 can be represented as 9F0  0A00 can be represented as A00  00AB can be represented as AB
  • 15. Presentation_ID 15© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential IPv6 Addressing Rule 1- Omitting Leading 0s
  • 16. Presentation_ID 16© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential IPv6 Addressing Rule 1- Omitting Leading 0s
  • 17. Presentation_ID 17© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential IPv6 Addressing Rule 1- Omitting Leading 0s
  • 18. Presentation_ID 18© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential IPv6 Addressing Rule 1- Omitting Leading 0s
  • 19. Presentation_ID 19© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential IPv6 Addressing Rule 2- Omitting All 0 Segments  A double colon (::) can replace any single, contiguous string of one or more 16-bit segments (hextets) consisting of all 0’s  Double colon (::) can only be used once within an address otherwise the address will be ambiguous  Known as the compressed format  Incorrect address - 2001:0DB8::ABCD::1234
  • 20. Presentation_ID 20© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential IPv6 Addressing Rule 2- Omitting All 0 Segments  Examples #1 #2
  • 21. Presentation_ID 21© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential IPv6 Addressing Rule 2- Omitting All 0 Segments
  • 22. Presentation_ID 22© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential IPv6 Addressing Rule 2- Omitting All 0 Segments
  • 23. Presentation_ID 23© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential IPv6 Addressing Rule 2- Omitting All 0 Segments
  • 24. Presentation_ID 24© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential IPv6 Addressing Rule 2- Omitting All 0 Segments
  • 25. Presentation_ID 25© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential IPv6 Addressing Rule 2- Omitting All 0 Segments
  • 26. Presentation_ID 26© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential IPv6 Addressing Rule 2- Omitting All 0 Segments
  • 27. Presentation_ID 27© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Types of IPv6 Addresses IPv6 Address Types There are three types of IPv6 addresses: • Unicast • Multicast • Anycast. Note: IPv6 does not have broadcast addresses.
  • 28. Presentation_ID 28© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential IPv6 Exercises  1) How do you correctly compress the following IPv6 address: 2001:0db8:0000:0000:0000:0000:0000:0c50  A.2001:0db8:0:0:0:0:0:0c50  B.2001:0db8::0c50  C.2001:db8::c50  D.2001:db8::c5
  • 29. Presentation_ID 29© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential IPv6 Exercises  1) How do you correctly compress the following IPv6 address: 2001:0db8:0000:0000:0000:0000:0000:0c50  A.2001:0db8:0:0:0:0:0:0c50  B.2001:0db8::0c50  C.2001:db8::c50 ** <- Most compressed  D.2001:db8::c5 **According to RFC5952, this answer is most correct. However, your IPv6 capable device will accept all possibilities
  • 30. Presentation_ID 30© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential IPv6 Exercises  2) How do you correctly compress the following IPv6 address: 2001:0db8:0000:0000:b450:0000:0000:00b4  A.2001:db8::b450::b4  B.2001:db8::b450:0:0:b4  C.2001:db8::b45:0000:0000:b4  D.2001:db8:0:0:b450::b4
  • 31. Presentation_ID 31© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential IPv6 Exercises  2) How do you correctly compress the following IPv6 address: 2001:0db8:0000:0000:b450:0000:0000:00b4  A.2001:db8::b450::b4  B.2001:db8::b450:0:0:b4**  C.2001:db8::b45:0000:0000:b4  D.2001:db8:0:0:b450::b4 **According to RFC5952, this answer is most correct. However, your IPv6 capable device will accept all possibilities
  • 32. Presentation_ID 32© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential IPv6 Exercises  3) How do you correctly compress the following IPv6 address: 2001:0db8:00f0:0000:0000:03d0:0000:00ff  A.2001:0db8:00f0::3d0:0:00ff  B.2001:db8:f0:0:0:3d0:0:ff  C.2001:db8:f0::3d0:0:ff  D.2001:0db8:0f0:0:0:3d0:0:0ff
  • 33. Presentation_ID 33© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential IPv6 Exercises  3) How do you correctly compress the following IPv6 address: 2001:0db8:00f0:0000:0000:03d0:0000:00ff  A.2001:0db8:00f0::3d0:0:00ff  B.2001:db8:f0:0:0:3d0:0:ff  C.2001:db8:f0::3d0:0:ff**  D.2001:0db8:0f0:0:0:3d0:0:0ff **According to RFC5952, this answer is most correct. However, your IPv6 capable device will accept all possibilities
  • 34. Presentation_ID 34© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential IPv6 Exercises  4) How do you correctly compress the following IPv6 address: 2001:0db8:0f3c:00d7:7dab:03d0:0000:00ff  A.2001:db8:f3c:d7:7dab:3d:0:ff  B.2001:db8:f3c:d7:7dab:3d0:0:ff  C.2001:db8:f3c:d7:7dab:3d0::ff  D.2001:0db8:0f3c:00d7:7dab:03d::00ff
  • 35. Presentation_ID 35© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential IPv6 Exercises  4) How do you correctly compress the following IPv6 address: 2001:0db8:0f3c:00d7:7dab:03d0:0000:00ff  A.2001:db8:f3c:d7:7dab:3d:0:ff  B.2001:db8:f3c:d7:7dab:3d0:0:ff**  C.2001:db8:f3c:d7:7dab:3d0::ff  D.2001:0db8:0f3c:00d7:7dab:03d::00ff **According to RFC5952, this answer is most correct. However, your IPv6 capable device will accept all possibilities
  • 36. Presentation_ID 36© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential IP Addressing Summary  The depletion of IPv4 address space is the motivating factor for moving to IPv6. Each IPv6 address has 128 bits verses the 32 bits in an IPv4 address. The prefix length is used to indicate the network portion of an IPv6 address using the following format: IPv6 address/prefix length.
  • 37. Presentation_ID 37© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential