SlideShare a Scribd company logo
Mahmmoud Mahdi
 IPv4
  4.3 billion unique addresses
 IPv6
  3.4 undecillion (3.4 ×10³⁸)
  340,282,366,920,938,463,463,374,607,431,768,
   211,456
  340 undecillion, 282 decillion, 366 nonillion,
   920 octillion, 938 septillion, 463 sextillion, 463
   quintillion, 374 quadrillion, 607 trillion, 431
   billion, 768 million, 211 thousand, 456
 The limitations of IPv4 are:
  Limited number of addresses
  Routing difficult to manage
  Host configuration is complex
  No built in security
  Limited Quality of Service
 Improvements in IPv6 include:
   Built in QoS (Quality Of Service)
   More efficient routing
   Simpler host configuration
   Better prioritized delivery support
   Redesigned headers for efficient processing and
    extensibility
   Built-in security
    ▪ IP security through the use of IPSec is an integral part of
      IPv6, whereas it was an optional feature under IPv4.
   Increased address space
    ▪ providing 2128 (about 340 billion) unique addresses.
 The IPv6 address space is:
  128 bits address, or 16 bytes for addressing of
   four hexadecimal digits, separated by colons
  8 groups of 4 Hex characters
   ▪ using eight groups Displayed in hexadecimal
   ▪ Characters: 0-9, A-F
  Allows routing flexibility
 An example of an IPv4 IP address
  192 .168.1.101
 An example of an IPv6 IP address
  2001:0DB8:85A3:08D3:1319:8A2E:0370:7334
  3FFE:0501:0008: 0000:0260: 97FF:FE40:EFAB
   ▪ 3FFE:501:8:0:260:97FF:FE40:EFAB
   ▪ 3FFE:501:8::260:97FF:FE40:EFAB
Lesson 3: IPv6 Fundamentals
Decimal 0       1   2     3    4    5    6    7
Hex      0      1   2     3    4    5    6    7
Binary   0000 0001 0010 0011 0100 0101 0110 0111



Decimal 8       9    10   11   12   13   14   15
Hex      8      9    A    B    C    D    E    F
Binary   1000   1001 1010 1011 1100 1101 1110 1111
 IPv6   addresses are:
  Can use zero compression
   ▪ Eliminate consecutive zeros “: :”
   ▪ “Leading”
  Use a prefix to define the network portion of
   address rather than a subnet mask.
  Two Parts
   ▪ 64 bit network component
   ▪ 64 bit host component
 :0: stands for :0000:
 You can omit preceding 0s in any 16-bit word.
   :DB8: and :0DB8: are equivalent.
   A series of sequential zeroes the address can be
    shortened to use a single zero in each group, or
    else the entire grouping can be represented using
    a double colon (: :).
     2001:0000:0000:0000:0000:0000:0000:7334
    = 2001:0:0:0:0:0:0:7334 = 2001::7334
 :: can be used only once in an address
 IPv6 Loopback Is ::1
 The address
   2001:0DB8:0000:0000:1234:0000:A9FE:133E
 Compress :0000: into :0:
   2001:0DB8:0000:0000:1234:0:A9FE:133E
 Eliminate preceding zeros:
   2001:DB8:0000:0000:1234:0:A9FE:133E
 Use the special variable shortcut for
 multiple 0s:
   2001:DB8::1234:0:A9FE:133E
 Do you subnet IPv6?
  If you are given 32 bits of network from your ISP,
   you have 96 bits to work with.
  If you use some of the 96 bits to route within your
   network infrastructure, then you are subnetting.
 Client Configuration
  Manual
   ▪ Required for routers
  Automatically
   ▪ From routers
   ▪ DHCPv6 servers
 There are three types of addresses in IPv6:

  Type       Description
  Anycast    Equivalent to IPv4 unicast
  Unicast    Additional unicast address types
  Multicast Equivalent to IPv4 multicast
 Anycast
  Visually similar to global
  Many destination hosts with the same address
   ▪ Address assigned to multiple devices.
  Finds nearest based on router cost
   ▪ When an anycast packet is sent, it is delivered to one
     of the devices, usually the closest one.
 Unicast
  A unicast packet uniquely identifies an interface
   of an IPv6 device.
  Unicast addresses come in several types:
   ▪ Global unicast address
   ▪ Link-Local Address
   ▪ Unique Local Address
 Global Addresses (GAs)
  Equivalent of public addresses in IPv4.
  Address space is defined as 2000::/3
   ▪ High level bits 001
   ▪ First block value between 2000-3FFF
 The structure of GAs
 Link-Local Address (LLAs)
  Similar to APIPA addresses
  Self-configured, non-routable
  Provides automatic communication on local
   subnet
  Defined as FE80:: /10.
 FE80+54 bits “0” +64 bits
  ▪ The last 8 bytes (64 bits) are random
 Extended User Interface 64-bit (EUI-64) format
  ▪ MAC-FFFE-MAC
  ▪ MAC 00044 B 18 EE6C =0004:4BFF:FE18:EE6C
 Always get link-local, even with DHCP
 The structure of LLAs:
 Unique-Local Addresses (ULAs)
  Similar to Private addresses
   ▪ They are not expected to be routable on the global
     Internet.
  Defined as FC00 or FD00::/7
 The structure of ULAs:
   Multicast address
       One-to-Many communication packets.
       Multicast packets are identifiable by their first byte.
       Defined as FF00::/8
       In the second byte shown (the “00” of FF00),
       the second 0 is what’s called the scope.
        ▪ Interface-local is 01, and link-local is 02
        ▪ FF01:: is an interface-local multicast.
   There are several well-known multicast addresses
     Ex: if you want to send a packet to all nodes in the link-
        local scope,
        ▪ You send the packet to FF02::1 (FF02:0:0:0:0:0:0:1).
        ▪ The all-routers multicast address is FF02::2
Address Prefix   Scope of Use
2000:: /3        Global unicast space prefix
FE80:: /10       Link-local address prefix
FC00:: /7        Unique local unicast prefix
FF00:: /8        Multicast prefix
2001:DB8:: /32   Global unicast prefix use for documentation
::1 - ::/1       Reserved local loopback address
2001:0000: /32   Teredo prefix (discussed later in this chapter)
2002:: /16       6to4 prefix (discussed later in this chapter)
 New Header Format
  Not supported by current IPv4 routers
 Router Upgrade Required Before Moving To
 IPv6
   Dual stack
     Running both IPv4 and IPv6 on the same network
     Utilizing the IPv4 address space for devices using only
      IPv4 addresses and utilizing the IPv6 address space for
      devices using IPv6 addresses
   Tunneling
     Using an encapsulation scheme for transporting one
      address space inside another
   Address translation
     Using a higher-level application to transparently change
      one address type (IPv4 or IPv6) to the other so end
      devices are unaware one address space is talking to
      another
 IPv6 Dual Stack
 IPv6 Tunneling
  Several tunneling mechanisms for tunneling
   IPv6 through the IPv4 address space.
  Used for unicast IPv6 communication across an
   IPv4 infrastructure.
  They include the following:
   ▪ Intra-Site Automatic Tunnel Addressing Protocol
     (ISATAP)
   ▪ 6to4
   ▪ Teredo
   Intra-Site Automatic Tunnel Addressing Protocol
    (ISATAP)
     Allows IPv6 and IPv4 hosts to communicate through a
      ISATAP router
      ▪ By performing a type of address translation between IPv4 and IPv6.
     Intended for use inside a private network.
     Enabled by default in Windows Server 2008.
      ▪ “Tunnel Adapter Local Area Connection* 8”
     IPv4 embedded in IPv6
      ▪ e.g., FE80::5EFE:192.168.1.5
     All ISATAP clients receive an address for an ISATAP interface.
     The format of an ISATAP address is as follows:
      ▪ [64bits of prefix] [32bits indicating ISATAP] [32bits IPv4 Address]
 ISATAP routers allows IPv4-only and IPv6-
 only hosts to communicate with each other
 6to4
  Tunnels IPv6 traffic over IPv4 through 6to4 routers.
  Similar to ISATAP, but designed for public network
   (Internet)
   ▪ Intended to be used on the Internets.
  IPv4 is encapsulated in IPv6
  Requires 6to4 routers
   ▪ Router has public IP
  2002:/16 prefix
   ▪ Router advertises 2002: subnet ::/64
     ▪ hosts auto configure 6to4 address
 6to4 allows IPv6-only hosts to
 communicate over the Internet
 Toredo
   Similar to 6 to4 but unnecessary to upgrade edge
    routers.
   Toredo is used (Preferred) only when no other IPv6
    translation is available.
   Allows clients behind an IPv4 NAT to use IPv6 on
    the Internet
   Enabled by default in Windows Server 2008.
    ▪ “Tunnel Adapter Local Area Connection* 9”
   2001::/32 prefix
                           64        64
         32 prefix   Teredo IPv4   Internet ID
                         Hex
Lesson 3: IPv6 Fundamentals
 Neighbor Discovery is a set of messages and
  processes that determine relationships
  between neighboring nodes.
 Some of the ND functions are:
     Router discovery
     Prefix discovery
     Parameter discovery
     Address auto-configuration
     Address resolution
     Duplicate address detection
Contact Me: qursaan@gmail.com

More Related Content

PDF
2) VRP Basic Configuration.pdf
PDF
IOS Cisco - Cheat sheets
PDF
PDF
CCNA CheatSheet
PDF
Ccna 200-120 Exam Dumps
PPTX
CCNA 2 Routing and Switching v5.0 Chapter 4
PPTX
Cisco Application Centric Infrastructure
2) VRP Basic Configuration.pdf
IOS Cisco - Cheat sheets
CCNA CheatSheet
Ccna 200-120 Exam Dumps
CCNA 2 Routing and Switching v5.0 Chapter 4
Cisco Application Centric Infrastructure

What's hot (20)

PDF
EIGRP NXOS vs IOS Differences
PDF
Understanding Cisco’ Next Generation SD-WAN Technology
PDF
Segment Routing Lab
PPT
Mpls Services
PDF
Packet Tracer Simulation Lab Layer 2 Switching
PDF
volte ims network architecture
PPTX
CCNA v6.0 ITN - Chapter 01
PDF
Benefits of vlan
PDF
Architecture d'un réseau GSM 2G (Téléphonie Mobile)
PPT
VLAN Network for Extreme Networks
PPTX
Zxmw nr8250 v1.00 commissioning guide ¸±±¾
PDF
CCNA-LAB-GUIDE-V3_LAST-ADDITION (4).pdf
PPT
OPTIMISATION BGP
PPTX
CCNA 2 Routing and Switching v5.0 Chapter 3
PDF
Ccna rse chp6 VLAN
PPTX
CCNA v6.0 ITN - Chapter 10
PPTX
Nokia engineer basic_training_session_v1
PDF
Spanning tree protocol (stp)
PDF
Microwave Huawei RTN Hardware Structure
DOC
Lab 6.4.1 InterVLAN routing
EIGRP NXOS vs IOS Differences
Understanding Cisco’ Next Generation SD-WAN Technology
Segment Routing Lab
Mpls Services
Packet Tracer Simulation Lab Layer 2 Switching
volte ims network architecture
CCNA v6.0 ITN - Chapter 01
Benefits of vlan
Architecture d'un réseau GSM 2G (Téléphonie Mobile)
VLAN Network for Extreme Networks
Zxmw nr8250 v1.00 commissioning guide ¸±±¾
CCNA-LAB-GUIDE-V3_LAST-ADDITION (4).pdf
OPTIMISATION BGP
CCNA 2 Routing and Switching v5.0 Chapter 3
Ccna rse chp6 VLAN
CCNA v6.0 ITN - Chapter 10
Nokia engineer basic_training_session_v1
Spanning tree protocol (stp)
Microwave Huawei RTN Hardware Structure
Lab 6.4.1 InterVLAN routing
Ad

Viewers also liked (20)

PPSX
Lesson 4: Network Infrastucture
PDF
Mobile IPv6 course at CACIC 2006
PDF
Fred explainsi pv6-v2-alpha
PDF
IPv6 Fundamentals & Securities
PPSX
Lesson.7: Configuring IP Routing B
PPT
IP Subnetting
PDF
IPv4 and IPv6 - addressing Internet infrastructure
PDF
IPV6 addressing plan exercise-1
PPSX
Lesson 9: Managing Files
PDF
Addressing plans
PDF
IPv6 Addressing Fundamentals
PDF
Preparing an IPv6 Addressing Planl
PPS
Lesson1: Introduction To Networking Concepts
PPT
I pv6 for cmu
PDF
IPv6 Addressing Plan Fundamentals
PDF
IPv6 Addressing Plans and Subnetting
PPSX
Lesson 5: Configuring Name Resolution
PPTX
instructor ppt_chapter8.2.2 - i_pv6 addressing with exercises of IPv6
PPSX
Lesson.7: Configuring IP Routing A
PPSX
Lesson 10: Managing Printers
Lesson 4: Network Infrastucture
Mobile IPv6 course at CACIC 2006
Fred explainsi pv6-v2-alpha
IPv6 Fundamentals & Securities
Lesson.7: Configuring IP Routing B
IP Subnetting
IPv4 and IPv6 - addressing Internet infrastructure
IPV6 addressing plan exercise-1
Lesson 9: Managing Files
Addressing plans
IPv6 Addressing Fundamentals
Preparing an IPv6 Addressing Planl
Lesson1: Introduction To Networking Concepts
I pv6 for cmu
IPv6 Addressing Plan Fundamentals
IPv6 Addressing Plans and Subnetting
Lesson 5: Configuring Name Resolution
instructor ppt_chapter8.2.2 - i_pv6 addressing with exercises of IPv6
Lesson.7: Configuring IP Routing A
Lesson 10: Managing Printers
Ad

Similar to Lesson 3: IPv6 Fundamentals (20)

PPTX
UNIT-2.pptx
DOCX
Report IPv6
PPTX
Introduction to IPv6-UoN
PPTX
ip v6 subnetting-Ip v6 subnetting and intro
PDF
Why We Need IPv6
PPT
IPv6
PDF
IPv6 - Jozi Linux User Group Presentation
PPTX
IPv6 The Big Move
PPT
IPv6 networking training sduffy v3
PPTX
I pv6(internet protocol version 6)
PPTX
ipv6 addressing.pptx
PPT
Modern networking - encompassing advanced technologies
PDF
Americas Headquarters IPv6 Addressing White Paper IPv6 Introduction
PDF
Ipv Technical White Paper Wp111504
PDF
Ipv6 Technical White Paper Wp111504
PPTX
PPTX
4. Understanding Internet Protocol.pptx
PPTX
PPT
IPv6_Quick_Start_Guide
PDF
IPV6 TYPESghjgkhggggggdhfhgfjfjgjhggkgkg .pdf
UNIT-2.pptx
Report IPv6
Introduction to IPv6-UoN
ip v6 subnetting-Ip v6 subnetting and intro
Why We Need IPv6
IPv6
IPv6 - Jozi Linux User Group Presentation
IPv6 The Big Move
IPv6 networking training sduffy v3
I pv6(internet protocol version 6)
ipv6 addressing.pptx
Modern networking - encompassing advanced technologies
Americas Headquarters IPv6 Addressing White Paper IPv6 Introduction
Ipv Technical White Paper Wp111504
Ipv6 Technical White Paper Wp111504
4. Understanding Internet Protocol.pptx
IPv6_Quick_Start_Guide
IPV6 TYPESghjgkhggggggdhfhgfjfjgjhggkgkg .pdf

Recently uploaded (20)

PPTX
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
PDF
A systematic review of self-coping strategies used by university students to ...
PDF
VCE English Exam - Section C Student Revision Booklet
PDF
STATICS OF THE RIGID BODIES Hibbelers.pdf
PPTX
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
PDF
Complications of Minimal Access Surgery at WLH
PPTX
master seminar digital applications in india
PPTX
GDM (1) (1).pptx small presentation for students
PDF
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
PDF
Classroom Observation Tools for Teachers
PPTX
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
PDF
GENETICS IN BIOLOGY IN SECONDARY LEVEL FORM 3
PDF
OBE - B.A.(HON'S) IN INTERIOR ARCHITECTURE -Ar.MOHIUDDIN.pdf
PDF
O5-L3 Freight Transport Ops (International) V1.pdf
PDF
A GUIDE TO GENETICS FOR UNDERGRADUATE MEDICAL STUDENTS
PDF
RMMM.pdf make it easy to upload and study
PDF
Module 4: Burden of Disease Tutorial Slides S2 2025
PDF
Trump Administration's workforce development strategy
PDF
RTP_AR_KS1_Tutor's Guide_English [FOR REPRODUCTION].pdf
PPTX
Pharma ospi slides which help in ospi learning
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
A systematic review of self-coping strategies used by university students to ...
VCE English Exam - Section C Student Revision Booklet
STATICS OF THE RIGID BODIES Hibbelers.pdf
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
Complications of Minimal Access Surgery at WLH
master seminar digital applications in india
GDM (1) (1).pptx small presentation for students
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
Classroom Observation Tools for Teachers
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
GENETICS IN BIOLOGY IN SECONDARY LEVEL FORM 3
OBE - B.A.(HON'S) IN INTERIOR ARCHITECTURE -Ar.MOHIUDDIN.pdf
O5-L3 Freight Transport Ops (International) V1.pdf
A GUIDE TO GENETICS FOR UNDERGRADUATE MEDICAL STUDENTS
RMMM.pdf make it easy to upload and study
Module 4: Burden of Disease Tutorial Slides S2 2025
Trump Administration's workforce development strategy
RTP_AR_KS1_Tutor's Guide_English [FOR REPRODUCTION].pdf
Pharma ospi slides which help in ospi learning

Lesson 3: IPv6 Fundamentals

  • 2.  IPv4  4.3 billion unique addresses  IPv6  3.4 undecillion (3.4 ×10³⁸)  340,282,366,920,938,463,463,374,607,431,768, 211,456  340 undecillion, 282 decillion, 366 nonillion, 920 octillion, 938 septillion, 463 sextillion, 463 quintillion, 374 quadrillion, 607 trillion, 431 billion, 768 million, 211 thousand, 456
  • 3.  The limitations of IPv4 are:  Limited number of addresses  Routing difficult to manage  Host configuration is complex  No built in security  Limited Quality of Service
  • 4.  Improvements in IPv6 include:  Built in QoS (Quality Of Service)  More efficient routing  Simpler host configuration  Better prioritized delivery support  Redesigned headers for efficient processing and extensibility  Built-in security ▪ IP security through the use of IPSec is an integral part of IPv6, whereas it was an optional feature under IPv4.  Increased address space ▪ providing 2128 (about 340 billion) unique addresses.
  • 5.  The IPv6 address space is:  128 bits address, or 16 bytes for addressing of four hexadecimal digits, separated by colons  8 groups of 4 Hex characters ▪ using eight groups Displayed in hexadecimal ▪ Characters: 0-9, A-F  Allows routing flexibility
  • 6.  An example of an IPv4 IP address  192 .168.1.101  An example of an IPv6 IP address  2001:0DB8:85A3:08D3:1319:8A2E:0370:7334  3FFE:0501:0008: 0000:0260: 97FF:FE40:EFAB ▪ 3FFE:501:8:0:260:97FF:FE40:EFAB ▪ 3FFE:501:8::260:97FF:FE40:EFAB
  • 8. Decimal 0 1 2 3 4 5 6 7 Hex 0 1 2 3 4 5 6 7 Binary 0000 0001 0010 0011 0100 0101 0110 0111 Decimal 8 9 10 11 12 13 14 15 Hex 8 9 A B C D E F Binary 1000 1001 1010 1011 1100 1101 1110 1111
  • 9.  IPv6 addresses are:  Can use zero compression ▪ Eliminate consecutive zeros “: :” ▪ “Leading”  Use a prefix to define the network portion of address rather than a subnet mask.  Two Parts ▪ 64 bit network component ▪ 64 bit host component
  • 10.  :0: stands for :0000:  You can omit preceding 0s in any 16-bit word.  :DB8: and :0DB8: are equivalent.  A series of sequential zeroes the address can be shortened to use a single zero in each group, or else the entire grouping can be represented using a double colon (: :).  2001:0000:0000:0000:0000:0000:0000:7334 = 2001:0:0:0:0:0:0:7334 = 2001::7334  :: can be used only once in an address  IPv6 Loopback Is ::1
  • 11.  The address  2001:0DB8:0000:0000:1234:0000:A9FE:133E  Compress :0000: into :0:  2001:0DB8:0000:0000:1234:0:A9FE:133E  Eliminate preceding zeros:  2001:DB8:0000:0000:1234:0:A9FE:133E  Use the special variable shortcut for multiple 0s:  2001:DB8::1234:0:A9FE:133E
  • 12.  Do you subnet IPv6?  If you are given 32 bits of network from your ISP, you have 96 bits to work with.  If you use some of the 96 bits to route within your network infrastructure, then you are subnetting.  Client Configuration  Manual ▪ Required for routers  Automatically ▪ From routers ▪ DHCPv6 servers
  • 13.  There are three types of addresses in IPv6: Type Description Anycast Equivalent to IPv4 unicast Unicast Additional unicast address types Multicast Equivalent to IPv4 multicast
  • 14.  Anycast  Visually similar to global  Many destination hosts with the same address ▪ Address assigned to multiple devices.  Finds nearest based on router cost ▪ When an anycast packet is sent, it is delivered to one of the devices, usually the closest one.
  • 15.  Unicast  A unicast packet uniquely identifies an interface of an IPv6 device.  Unicast addresses come in several types: ▪ Global unicast address ▪ Link-Local Address ▪ Unique Local Address
  • 16.  Global Addresses (GAs)  Equivalent of public addresses in IPv4.  Address space is defined as 2000::/3 ▪ High level bits 001 ▪ First block value between 2000-3FFF
  • 18.  Link-Local Address (LLAs)  Similar to APIPA addresses  Self-configured, non-routable  Provides automatic communication on local subnet  Defined as FE80:: /10.
  • 19.  FE80+54 bits “0” +64 bits ▪ The last 8 bytes (64 bits) are random  Extended User Interface 64-bit (EUI-64) format ▪ MAC-FFFE-MAC ▪ MAC 00044 B 18 EE6C =0004:4BFF:FE18:EE6C  Always get link-local, even with DHCP
  • 20.  The structure of LLAs:
  • 21.  Unique-Local Addresses (ULAs)  Similar to Private addresses ▪ They are not expected to be routable on the global Internet.  Defined as FC00 or FD00::/7
  • 22.  The structure of ULAs:
  • 23. Multicast address  One-to-Many communication packets.  Multicast packets are identifiable by their first byte.  Defined as FF00::/8  In the second byte shown (the “00” of FF00),  the second 0 is what’s called the scope. ▪ Interface-local is 01, and link-local is 02 ▪ FF01:: is an interface-local multicast.  There are several well-known multicast addresses  Ex: if you want to send a packet to all nodes in the link- local scope, ▪ You send the packet to FF02::1 (FF02:0:0:0:0:0:0:1). ▪ The all-routers multicast address is FF02::2
  • 24. Address Prefix Scope of Use 2000:: /3 Global unicast space prefix FE80:: /10 Link-local address prefix FC00:: /7 Unique local unicast prefix FF00:: /8 Multicast prefix 2001:DB8:: /32 Global unicast prefix use for documentation ::1 - ::/1 Reserved local loopback address 2001:0000: /32 Teredo prefix (discussed later in this chapter) 2002:: /16 6to4 prefix (discussed later in this chapter)
  • 25.  New Header Format  Not supported by current IPv4 routers  Router Upgrade Required Before Moving To IPv6
  • 26. Dual stack  Running both IPv4 and IPv6 on the same network  Utilizing the IPv4 address space for devices using only IPv4 addresses and utilizing the IPv6 address space for devices using IPv6 addresses  Tunneling  Using an encapsulation scheme for transporting one address space inside another  Address translation  Using a higher-level application to transparently change one address type (IPv4 or IPv6) to the other so end devices are unaware one address space is talking to another
  • 27.  IPv6 Dual Stack
  • 28.  IPv6 Tunneling  Several tunneling mechanisms for tunneling IPv6 through the IPv4 address space.  Used for unicast IPv6 communication across an IPv4 infrastructure.  They include the following: ▪ Intra-Site Automatic Tunnel Addressing Protocol (ISATAP) ▪ 6to4 ▪ Teredo
  • 29. Intra-Site Automatic Tunnel Addressing Protocol (ISATAP)  Allows IPv6 and IPv4 hosts to communicate through a ISATAP router ▪ By performing a type of address translation between IPv4 and IPv6.  Intended for use inside a private network.  Enabled by default in Windows Server 2008. ▪ “Tunnel Adapter Local Area Connection* 8”  IPv4 embedded in IPv6 ▪ e.g., FE80::5EFE:192.168.1.5  All ISATAP clients receive an address for an ISATAP interface.  The format of an ISATAP address is as follows: ▪ [64bits of prefix] [32bits indicating ISATAP] [32bits IPv4 Address]
  • 30.  ISATAP routers allows IPv4-only and IPv6- only hosts to communicate with each other
  • 31.  6to4  Tunnels IPv6 traffic over IPv4 through 6to4 routers.  Similar to ISATAP, but designed for public network (Internet) ▪ Intended to be used on the Internets.  IPv4 is encapsulated in IPv6  Requires 6to4 routers ▪ Router has public IP  2002:/16 prefix ▪ Router advertises 2002: subnet ::/64 ▪ hosts auto configure 6to4 address
  • 32.  6to4 allows IPv6-only hosts to communicate over the Internet
  • 33.  Toredo  Similar to 6 to4 but unnecessary to upgrade edge routers.  Toredo is used (Preferred) only when no other IPv6 translation is available.  Allows clients behind an IPv4 NAT to use IPv6 on the Internet  Enabled by default in Windows Server 2008. ▪ “Tunnel Adapter Local Area Connection* 9”  2001::/32 prefix 64 64 32 prefix Teredo IPv4 Internet ID Hex
  • 35.  Neighbor Discovery is a set of messages and processes that determine relationships between neighboring nodes.  Some of the ND functions are:  Router discovery  Prefix discovery  Parameter discovery  Address auto-configuration  Address resolution  Duplicate address detection

Editor's Notes

  • #6: Key Points The IPv6 address space is 128 bit as compared to the 32 bits used in the IPv4 address space. This allows for significantly more addresses in than IPv4. However, this address space is also designed for routing flexibility. As a result, the addresses are not allocated very efficiently. Question: How does allocating 64 bits for host ID result in less efficient addressing?
  • #16: Unicast addresses come in several types: Global unicast address Link-Local Address Anonymous Address Unique Local Address
  • #18: The structure of global IP Address The First 48-bits of address are the global routing prefix The Next 16-bit are the subnet ID Up to 65,536 unique subnets The Final 64-bit are the interface ID
  • #20: The link-local address is to be used on a single link (network segment) and should never be routed. There is another form of the local-link IPv6 address called the Extended User Interface 64-bit (EUI-64) format. This is derived by using the MAC address of the physical interface and inserting an FFFE between the third and fourth bytes of the MAC. The first byte is also made 02 (this sets the universal/local or U/L bit to 1 as defined in IEEE 802 frame specification). Again looking at Figure 2.15, the EUI-64 address would take the physical (MAC) address 00-03-FF-11-02-CD and make the link-local IPv6 address FE80::0203:FFFF:FE11:02CD. (We’ve left the preceding zeros in the link-local IPv6 address to make it easier for you to pick out the MAC address with the “FFFE” inserted.)
  • #22: The First half of the address is written as “FE80::” FE00:0000:0000:0000 The Second half of the address represent the interface ID.
  • #24: The structure of ULAs: The First 7-bits are always [1111 110] and the 8th –bit is set to 1  Local Address = FD00::/8 The next 40-bits represent the global ID is randomly generated value that identifies a site within your organization The next 16-bits represent the subnet ID The last 64-bits are the interface ID
  • #32: Encapsulates IPv4 inside IPv6 and performs NAT-type function Automatic tunnel addressing protocol providing IPv6 addresses based upon the IPv4 address of the end interface (node). Intended for use inside a private network.
  • #38: Key Points The Neighbor Discovery (ND) protocol for IPv6 is a series of Internet Control Message Protocol for IPv6 (ICMPv6) messages that manage the interaction of neighboring nodes (nodes on the same link). ND replaces the broadcast-based Address Resolution Protocol (ARP), ICMPv4 Router Discovery, and ICMPv4 Redirect messages with more efficient multicast and unicast ND messages. Question: Is there any benefit to using ND for address resolution rather than ARP?