Introduction to IPv6 - II

Size: px
Start display at page:

Download "Introduction to IPv6 - II"

Transcription

1 Introduction to IPv6 - II Building your IPv6 network Alvaro Vives 27 June 2017 Workshop on Open Source Solutions for the IoT

2 Contents IPv6 Protocols and Autoconfiguration - ICMPv6 - Path MTU Discovery (PMTU-D) - NDP - Autoconfiguration: DHCPv6 vs. SLAAC Use of IP on WSN/IoT Connecting our IPv6 Network to the Internet Alvaro Vives Workshop on Open Source Solutions for the IoT 27 June

3 IPv6 Protocols: ICMPv6 (1) ICMPv6 fundamental part of IPv6 ICMPv6 MIPv6 MLD NDP IGMP ICMP Multicast IPv6 Link Layer ARP IPv4 Link Layer Broadcast Multicast Alvaro Vives Workshop on Open Source Solutions for the IoT 27 June

4 IPv6 Protocols: ICMPv6 (2) It s used for several things, both: - Locally on the LAN: NDP, MLD - On the Internet: Fragmentation, detect other errors You should be careful when filtering Two type of messages: - Error: Destination unreachable, packet too big, time exceeded, parameter problem (type = 0 127) - Informative: echo request, echo reply (type = ) 8 bits Type 8 bits Code Message Body 16 bits Checksum Alvaro Vives Workshop on Open Source Solutions for the IoT 27 June

5 IPv6 Protocols: ICMPv6 (3) ICMPv6 Error Messages Destination Unreachable (type = 1, parameter = 0) No route to destination (code = 0) Communication with destination administratively prohibited (code = 1) Beyond scope of source address (code = 2) Address Unreachable (code = 3) Port Unreachable (code = 4) Source address failed ingress/egress policy (code = 5) Reject route to destination (code = 6) Packet Too Big (type = 2, code = 0, parameter = next hop MTU) Time Exceeded (type = 3, parameter = 0) Hop Limit Exceeded in Transit (code = 0) Fragment Reassembly Time Exceeded (code = 1) Parameter Problem (type = 4, parameter = offset to error) Erroneous Header Field (code = 0) Unrecognised Next Header Type (code = 1) Unrecognised IPv6 Option (code = 2) Alvaro Vives Workshop on Open Source Solutions for the IoT 27 June

6 Path MTU Discovery (1) MTU: Maximum Transmission Units - Link MTU: maximum number of bytes of IP packet - Path MTU: minimum link MTU from source to destination In IPv6 the minimum link MTU is 1280 bytes (v4 68 bytes) In IPv6 this is important because: - Fragmentation process changes: extension header - Encapsulation frequently used: overhead reduces available MTU Alvaro Vives Workshop on Open Source Solutions for the IoT 27 June

7 Path MTU Discovery (2) Path MTU Discovery sends packets bigger than 1280 bytes - For each destination, starts assuming MTU of first hop - If packet reaches a link MTU smaller than its size, ICMPv6 packet too big packet is sent to source, with info of link MTU (that MTU value is saved for that destination) - Eventually, saved MTU values are discarded to detect possible changes on the MTU values Constrained implementations: PMTU-D could be omitted, if detected that 1280 bytes packets could reach a destination Alvaro Vives Workshop on Open Source Solutions for the IoT 27 June

8 Path MTU Discovery (3) IPv6 fragmentation done in the source node Source S MTU = 1500 R1 R2 R3 R4 D MTU = 1500 MTU = 1280 MTU = 1500 MTU = 1500 Destination IPv6 DATA 1500 bytes IPv6 DATA 1500 bytes X ICMPv6 Packet Too Big (MTU 1280) IPv6 Frag. H DATA 1400 bytes IPv6 Frag. H DATA 1400 bytes Alvaro Vives Workshop on Open Source Solutions for the IoT 27 June

9 Autoconfiguration (1) ICMPv6 Informative Messages Echo Request (type =128, code = 0) Echo Reply (type =129, code = 0) MLD (Multicast Listener Discovery) Messages: Query, Report, Done (Like IGMP for IPv4) NDP Messages: NS (Neighbor Solicitation) NA (Neighbor Advertisement) RS (Router Solicitation) RA (Router Advertisement) Redirect Alvaro Vives Workshop on Open Source Solutions for the IoT 27 June

10 Autoconfiguration (2) NDP: Neighbor Discovery Protocol Used for hosts-hosts and routers-hosts communication It offers several services on a LAN: Discovery of routers, network prefixes, network parameters Autoconfiguration Address Resolution DAD (Duplicate Address Detection) NUD (Neighbor Unreachability Detection) It only uses 5 type of ICMPv6 packets: NS, NA, RS, RA, Redirect Alvaro Vives Workshop on Open Source Solutions for the IoT 27 June

11 NS / NA A Host will send NS: 1. To determine the MAC address associated with an IPv6 address: Dest. Addr. Multicast Solicited Node (Address Resolution = ARP IPv4) 2. To check reachability: Dest. Addr. Unicast A Host will send NA: 1. Answer to NS 2. To quickly send new information (Unsolicited) Alvaro Vives Workshop on Open Source Solutions for the IoT 27 June

12 Neighbor Solicitation Format NS to determine MAC. Own MAC address is sent 8 bits Type = bits Code = 0 Reserved = 0 Target Address Options 16 bits Checksum Target Address: IPv6 address that generated the request. Could not be a multicast address. Possible Options: Source Link-Layer Address Alvaro Vives Workshop on Open Source Solutions for the IoT 27 June

13 Neighbor Advertisement Format 8 bits Type = 136 R S O 8 bits Code = 0 Reserved = 0 Target Address Options 16 bits Checksum Flags: - R: Router Flag=1 sending node is a router - S: Solicited Flag=1 sent as an answer to a NS - O: Override Flag=1 indicating caches should be updated Target Address (can t be a multicast address): - Solicited NAs = Target Address of NS - Unsolicited NA: IP address which MAC address has changed Possible Options: Target Link-Layer Address (MAC of Tx) Alvaro Vives Workshop on Open Source Solutions for the IoT 27 June

14 RS / RA A Host will send RS 1. When bring up an interface: Dest. Addr = Well known multicast address of all routers A Router will send RA: 1. As an answer to RS 2. Periodically to inform about network parameters Alvaro Vives Workshop on Open Source Solutions for the IoT 27 June

15 Router Solicitation Format 8 bits Type = bits Code = 0 Reserved = 0 Options 16 bits Checksum Possible Options: Source Link-Layer Address Alvaro Vives Workshop on Open Source Solutions for the IoT 27 June

16 Router Advertisement Format (1) 8 bits Type = 134 Cur Hop Lim 8 bits Code = 0 M O Reserved Reachable Timer Retrains Timer 16 bits Checksum Router Lifetime Options Cur Hop Limit: default value to be used as Hop Limit in IPv6 header for packets sent M: 1-bit "Managed address configuration" flag O: 1-bit "Other configuration" flag Router Lifetime: time the router could be used as default router Reachable Time: time node assumes a neighbour is reachable after having received a reachability confirmation (used in NUD) Retrans Timer: time (ms) between retransmitted NS (u in NUD, AR) Possible Options: Source LinkLayer Address, MTU, Prefix Information, RDNSS, Flags Expansion Alvaro Vives Workshop on Open Source Solutions for the IoT 27 June

17 Router Advertisement Format (2) Options: TLV (Type-Lenght-Value) Example: Prefix Information - L(1bit): on-link flag=1 indicates if prefix could be used for on-link determination - A(1bit): autonomous address-configuration flag=1 indicates if prefix could be used for stateless address autoconfiguration. - Valid Lifetime: Time in secs. Prefix is valid for on-link determination. Used for stateless address autoconfiguration as well. - Preferred Lifetime: Time in secs. that addresses generated with this prefix using SLAAC are in preferred state - Prefix (128 bits): IPv6 Address or prefix 8 bits 8 bits Type = 3 Length = 4 Valid Lifetime Reserved = 0 Prefix Prefix Length Preferred Lifetime 8 bits 8 bits L A Reserved Alvaro Vives Workshop on Open Source Solutions for the IoT 27 June

18 Autoconfiguration (3) Autoconfiguration: automatically configure network parameters, not manually In IPv4 we only have DHCP In IPv6 there are more options Two scenarios: router or non-router Router: - Sends RAs -> M and O Flags -> four combinations - Hosts should look at M and O flags and then start to autoconfigure - M is about IPv6 address, O is about other parameters (DNS, etc.) - We have two tools SLAAC (0) and DHCPv6 (1) Alvaro Vives Workshop on Open Source Solutions for the IoT 27 June

19 Autoconfiguration (4) SLAAC vs. DHCPv6 NOTE: Default gateway is learnt from the RA(s) (or manually) IP / Other M O Comments SLAAC / SLAAC 0 0 If dual-stack, could use IPv4 for DNS SLAAC / DHCPv6 0 1 DHCPv6 Stateless DHCPv6 / SLAAC 1 0 If dual-stack, could use IPv4 for DNS DHCPv6 / DHCPv6 1 1 Gateway is learnt from RA Alvaro Vives Workshop on Open Source Solutions for the IoT 27 June

20 Autoconfiguration (5) Host A attaches to a network with a Router MAC address 00:0E:0C:31:C8:1F EUI-64 IID is 20E:0CFF:FE31:C81F FF02::2 (all routers) FE80::20F:23FF:FEF0:551A Internet R RA Prefix 2001:db8:1:1::/64 M = 0 O = 0 DNS = 2001:db8::53 1. Create Link-local Address 2. Duplicate Address Detection 3. Send Router Solicitation 4. Create global address 5. Do a DAD 6. Set Default Router 7. Set DNS Server A DNS 2001:db8::53 ::/0 FE80::20F:23FF:FEF0:551A 2001:db8:1:1:20E:0CFF:FE31:C81F FE80::20E:0CFF:FE31:C81F RS Dest FF02::2 Alvaro Vives Workshop on Open Source Solutions for the IoT 27 June

21 Autoconfiguration (6) In practice SLAAC for DNS is not yet available. Use IPv4 for DNS resolution (dual-stack) or DHCPv6 (O = 1) MAC address 00:0E:0C:31:C8:1F EUI-64 IID is 20E:0CFF:FE31:C81F FF02::2 (all routers) FE80::20F:23FF:FEF0:551A Internet R 1. Create Link-local Address 2. Duplicate Address Detection 3. Send Router Solicitation 4. Create global address 5. Do a DAD 6. Set Default Router 7. Send DHCPv6 Request for DNS A ::/0 FE80::20F:23FF:FEF0:551A 2001:db8:1:1:20E:0CFF:FE31:C81F FE80::20E:0CFF:FE31:C81F RS Dest FF02::2 RA Prefix 2001:db8:1:1::/64 M = 0 O = 1 Alvaro Vives Workshop on Open Source Solutions for the IoT 27 June

22 DHCPv6 (1) DHCPv6 works as DHCPv4 - Client-server SOLICIT ADVERTISE - UDP - Use of relay Client REQUEST REPLY Server DIFFERENCE: Does not provide default gateway Messages names change: SOLICIT, ADVERTISE, REQUEST,REPLY Servers/Relays listen on well-known multicast addresses (FF02::1:2) DHCPv6 stateless: only provides other info, not IP Alvaro Vives Workshop on Open Source Solutions for the IoT 27 June

23 DHCPv6 (2) DHCPv6-PD (Prefix Delegation) In IPv6 no private IP + NAT. A GUA prefix is needed DHCPv6-PD allows scalable configuration of IPv6 prefixes in routers Same as for IP addresses: client-server, etc. Only changes the requested object: a prefix (IA-PD) Example: CPE connected to an ISP End-User ISP H CPE CPE Internet CPE D DHCPv6 Server Alvaro Vives Workshop on Open Source Solutions for the IoT 27 June

24 DHCPv6 (3) Host A connected to network with Router and DHCPv6 relay M = O = 1 DHCPv6 Server S FF02::2 (all routers) FF02::1:2 (DHCPv6 Relay) FE80::20F:23FF:FEF0:551A R 1. Create Link-local Address 2. Duplicate Address Detection 3. Send Router Solicitation 4. Set Default Router 5. SOLICIT/ADVERTISE/REQUEST/REPLY 6. Configure global address 7. Do a DAD 8. Configure DNS MAC address 00:0E:0C:31:C8:1F EUI-64 IID is 20E:0CFF:FE31:C81F A DNS 2001:db8:FF::5:3 ::/0 FE80::20F:23FF:FEF0:551A 2001:db8:1:1:20E:0CFF:FE31:C81F FE80::20E:0CFF:FE31:C81F RS Dest FF02::2 RA M = 1 O = 1 REQUEST REPLY SOLICIT ADVERTISE Alvaro Vives Workshop on Open Source Solutions for the IoT 27 June

25 Use of IP on WSN/IoT (1) IP has benefits for WSN/IoT: - Pervasive nature of IP allows use of existing infrastructure - IP-based technologies exist, are well-known, mature and widely available. Allowing easier and cheaper adoption, good interoperability and easier application layer development - Open/free specifications: easier understood by wider audience than proprietary solutions - Tools for IP networks already exist - IP devices can easily connect to IP networks. No need for protocol translation gateways or proxies Alvaro Vives Workshop on Open Source Solutions for the IoT 27 June

26 Use of IP on WSN/IoT (2) IPv6 in particular has benefits for WSN/IoT: - Gives huge amount of addresses - No (real) limit of hosts in a local link - Provides for easy network parameters autoconfiguration (SLAAC) - (Possible) end-to-end bi-directional communication - Could save battery: 1. No NAT and keepalives 2. No need to periodically pull information (PUSH model) Alvaro Vives Workshop on Open Source Solutions for the IoT 27 June

27 Connecting to IPv6 Internet (1) Objective: Connect our network to the IPv6 Internet Collecting Servers People IoT devices Networks Bidirectional, allows: - Management - Control - Communication IPv6 Internet Our IoT devices Network Alvaro Vives Workshop on Open Source Solutions for the IoT 27 June

28 Connecting to IPv6 Internet (2) Scenario 1: Native IPv6 and IPv6 Router IPv6 Internet R1 RA LAN1 R2 Cloud of IoT devices LAN2 Alvaro Vives Workshop on Open Source Solutions for the IoT 27 June

29 Connecting to IPv6 Internet (3) Scenario 2: Without native IPv6 and IPv6 Router IPv4 Internet Tunnel End R IPv6 Internet IPv4 IPv6 DATA R1 RA LAN1 R2 Cloud of IoT devices LAN2 Alvaro Vives Workshop on Open Source Solutions for the IoT 27 June

30 Connecting to IPv6 Internet (4) Scenario 3: Without native IPv6 or IPv6 Router IPv4 Internet Tunnel End R IPv6 Internet IPv4 IPv6 DATA R1 RA R3 R2 LAN1 Cloud of IoT devices LAN2 Alvaro Vives Workshop on Open Source Solutions for the IoT 27 June

31 Connecting to IPv6 Internet (5) Simplified Scenarios IPv6 Internet IPv4 Internet Tunnel End R IPv6 Internet IPv6 DATA R1 IPv4 IPv6 DATA R1 Cloud of IoT devices LAN1 Cloud of IoT devices LAN1 a) Native IPv6 b) Encapsulated IPv6 Alvaro Vives Workshop on Open Source Solutions for the IoT 27 June

32

Workshop on Scientific Applications for the Internet of Things (IoT) March

Workshop on Scientific Applications for the Internet of Things (IoT) March Workshop on Scientific Applications for the Internet of Things (IoT) March 16-27 2015 IP Networks: From IPv4 to IPv6 Alvaro Vives - alvaro@nsrc.org Contents 1 Digital Data Transmission 2 Switched Packet

More information

IPv6 Associated Protocols. Athanassios Liakopoulos 6DEPLOY IPv6 Training, Skopje, June 2011

IPv6 Associated Protocols. Athanassios Liakopoulos 6DEPLOY IPv6 Training, Skopje, June 2011 IPv6 Associated Protocols Athanassios Liakopoulos (aliako@grnet.gr) 6DEPLOY IPv6 Training, Skopje, June 2011 Copy... Rights This slide set is the ownership of the 6DEPLOY project via its partners The Powerpoint

More information

IPv6 associated protocols

IPv6 associated protocols IPv6 associated protocols Address auto-configuration in IPv6 Copy Rights This slide set is the ownership of the 6DISS project via its partners The Powerpoint version of this material may be reused and

More information

Athanassios Liakopoulos

Athanassios Liakopoulos Introduction to IPv6 (Part B) Athanassios Liakopoulos (aliako@grnet.gr) Greek IPv6 Training, Athens, May 2010 Copy... Rights This slide set is the ownership of the 6DEPLOY project via its partners The

More information

IPv6 Neighbor Discovery

IPv6 Neighbor Discovery The IPv6 neighbor discovery process uses Internet Control Message Protocol (ICMP) messages and solicited-node multicast addresses to determine the link-layer address of a neighbor on the same network (local

More information

Configuring IPv6 basics

Configuring IPv6 basics Contents Configuring IPv6 basics 1 IPv6 overview 1 IPv6 features 1 IPv6 addresses 2 IPv6 neighbor discovery protocol 5 IPv6 PMTU discovery 8 IPv6 transition technologies 8 Protocols and standards 9 IPv6

More information

Operation Manual IPv6 H3C S3610&S5510 Series Ethernet Switches Table of Contents. Table of Contents

Operation Manual IPv6 H3C S3610&S5510 Series Ethernet Switches Table of Contents. Table of Contents Operation Manual IPv6 Table of Contents Table of Contents Chapter 1 IPv6 Basics Configuration... 1-1 1.1 IPv6 Overview... 1-1 1.1.1 IPv6 Features... 1-2 1.1.2 Introduction to IPv6 Address... 1-3 1.1.3

More information

IPv6 Autoconfiguration. Stateless and Stateful. Rabat, Maroc Mars 2007

IPv6 Autoconfiguration. Stateless and Stateful. Rabat, Maroc Mars 2007 IPv6 Autoconfiguration Stateless and Stateful Rabat, Maroc 28-30 Mars 2007 Philippe.Bereski@alcatel.fr Simon.Muyal@renater.fr Bernard.Tuy@renater.fr Copy... Rights This slide set is the ownership of the

More information

Rocky Mountain IPv6 Summit April 9, 2008

Rocky Mountain IPv6 Summit April 9, 2008 Rocky Mountain IPv6 Summit April 9, 2008 Introduction to the IPv6 Protocol Scott Hogg GTRI - Director of Advanced Technology Services CCIE #5133, CISSP 1 IPv6 Header IPv4 Header 20 bytes IPv6 Header, 40

More information

IPv6 Protocols and Networks Hadassah College Spring 2018 Wireless Dr. Martin Land

IPv6 Protocols and Networks Hadassah College Spring 2018 Wireless Dr. Martin Land IPv6 1 IPv4 & IPv6 Header Comparison IPv4 Header IPv6 Header Ver IHL Type of Service Total Length Ver Traffic Class Flow Label Identification Flags Fragment Offset Payload Length Next Header Hop Limit

More information

Guide to TCP/IP Fourth Edition. Chapter 6: Neighbor Discovery in IPv6

Guide to TCP/IP Fourth Edition. Chapter 6: Neighbor Discovery in IPv6 Guide to TCP/IP Fourth Edition Chapter 6: Neighbor Discovery in IPv6 Objectives Describe Neighbor Discovery in IPv6 and how it compares to ARP in IPv4 Explain Neighbor Discovery message interaction between

More information

IPv6. IPv4 & IPv6 Header Comparison. Types of IPv6 Addresses. IPv6 Address Scope. IPv6 Header. IPv4 Header. Link-Local

IPv6. IPv4 & IPv6 Header Comparison. Types of IPv6 Addresses. IPv6 Address Scope. IPv6 Header. IPv4 Header. Link-Local 1 v4 & v6 Header Comparison v6 Ver Time to Live v4 Header IHL Type of Service Identification Protocol Flags Source Address Destination Address Total Length Fragment Offset Header Checksum Ver Traffic Class

More information

Configuring IPv6 for Gigabit Ethernet Interfaces

Configuring IPv6 for Gigabit Ethernet Interfaces CHAPTER 46 IP version 6 (IPv6) provides extended addressing capability beyond those provided in IP version 4 (IPv4) in Cisco MDS SAN-OS. The architecture of IPv6 has been designed to allow existing IPv4

More information

IPv6 Protocol Architecture

IPv6 Protocol Architecture IPv6 Protocol Architecture v4/v6 Header Comparison Not kept in IPv6 Renamed in IPv6 Same name and function New in IPv6 2 New Functional Improvement Address Space Increase from 32-bit to 128-bit address

More information

IPv6 Protocol & Structure. npnog Dec, 2017 Chitwan, NEPAL

IPv6 Protocol & Structure. npnog Dec, 2017 Chitwan, NEPAL IPv6 Protocol & Structure npnog3 9-11 Dec, 2017 Chitwan, NEPAL Protocol Header Comparison IPv4 contains 10 basic header fields, while IPv6 has 6 basic header fields IPv6 header size is 40 octets compared

More information

TCP/IP Protocol Suite

TCP/IP Protocol Suite TCP/IP Protocol Suite Computer Networks Lecture 5 http://goo.gl/pze5o8 TCP/IP Network protocols used in the Internet also used in today's intranets TCP layer 4 protocol Together with UDP IP - layer 3 protocol

More information

IPv6 Neighbor Discovery

IPv6 Neighbor Discovery The IPv6 neighbor discovery process uses Internet Control Message Protocol (ICMP) messages and solicited-node multicast addresses to determine the link-layer address of a neighbor on the same network (local

More information

Table of Contents 1 IPv6 Basics Configuration 1-1

Table of Contents 1 IPv6 Basics Configuration 1-1 Table of Contents 1 IPv6 Basics Configuration 1-1 IPv6 Overview 1-1 IPv6 Features 1-1 Introduction to IPv6 Address 1-3 Introduction to IPv6 Neighbor Discovery Protocol 1-5 IPv6 PMTU Discovery 1-8 Introduction

More information

IPv6 Security Course Preview RIPE 76

IPv6 Security Course Preview RIPE 76 IPv6 Security Course Preview RIPE 76 Alvaro Vives - Marseille - 14 May 2018 Overview IPv6 Security Myths Basic IPv6 Protocol Security (Extension Headers, Addressing) IPv6 Associated Protocols Security

More information

Internet Protocol, Version 6

Internet Protocol, Version 6 Outline Protocol, Version 6 () Introduction to Header Format Addressing Model ICMPv6 Neighbor Discovery Transition from to vs. Taken from:chun-chuan Yang Basics: TCP/ Protocol Suite Protocol (IP) Features:

More information

IPv6 Neighbor Discovery

IPv6 Neighbor Discovery IPv6 Neighbor Discovery Last Updated: September 19, 2012 The IPv6 neighbor discovery process uses Internet Control Message Protocol (ICMP) messages and solicited-node multicast addresses to determine the

More information

ETSF05/ETSF10 Internet Protocols Network Layer Protocols

ETSF05/ETSF10 Internet Protocols Network Layer Protocols ETSF05/ETSF10 Internet Protocols Network Layer Protocols 2016 Jens Andersson Agenda Internetworking IPv4/IPv6 Framentation/Reassembly ICMPv4/ICMPv6 IPv4 to IPv6 transition VPN/Ipsec NAT (Network Address

More information

TSIN02 - Internetworking

TSIN02 - Internetworking Lecture 2: The Internet Protocol Literature: Forouzan: ch 4-9 and ch 27 2004 Image Coding Group, Linköpings Universitet Outline About the network layer Tasks Addressing Routing Protocols 2 Tasks of the

More information

tcp ipv6 timer fin-timeout 40 tcp ipv6 timer syn-timeout 40 tcp ipv6 window 41

tcp ipv6 timer fin-timeout 40 tcp ipv6 timer syn-timeout 40 tcp ipv6 window 41 Table of Contents IPv6 Basics Configuration Commands 1 IPv6 Basics Configuration Commands 1 display ipv6 fib 1 display ipv6 fibcache 2 display ipv6 interface 2 display ipv6 neighbors 5 display ipv6 neighbors

More information

Step 2. Manual configuration of global unicast and link-local addresses

Step 2. Manual configuration of global unicast and link-local addresses Lab: ICMPv6 and ICMPv6 Neighbor Discovery CIS 116 IPv6 Fundamentals Enter your answers to the questions in this lab using Canvas Quiz DHCPv6 Lab. Part 1: Setup Step 1. Basics a. Log into NetLab: ccnp.bayict.cabrillo.edu

More information

IPv6 Next generation IP

IPv6 Next generation IP Seminar Presentation IPv6 Next generation IP N Ranjith Kumar 11/5/2004 IPv6 : Next generation IP 1 Network Problems Communication Problem Identification Problem Identification of Networks Logical Addressing

More information

IPv6 address configuration and local operation

IPv6 address configuration and local operation IPv6 address configuration and local operation Amsterdam, 16 february 2012 Iljitsch van Beijnum Today's topics IPv6 address configuration stateless autoconfig DHCPv6 DAD, NUD, timers Router solicitations/advertisements

More information

Introduction to IPv6

Introduction to IPv6 Introduction to IPv6 1 What is IPv6? IP (Internet Protocol) The most common protocol over the Internet defines how packets are sent over the internet Addressing and routing Current versions IPv4 & IPv6

More information

Internet Control Message Protocol

Internet Control Message Protocol Internet Control Message Protocol The Internet Control Message Protocol is used by routers and hosts to exchange control information, and to inquire about the state and configuration of routers and hosts.

More information

ODL Summit Bangalore - Nov 2016 IPv6 Design in OpenDaylight

ODL Summit Bangalore - Nov 2016 IPv6 Design in OpenDaylight ODL Summit Bangalore - Nov 2016 IPv6 Design in OpenDaylight Sridhar Gaddam (sgaddam@redhat.com) Dayavanti Gopal Kamath (dayavanti.gopal.kamat@ericsson.com) Agenda IPv6 Intro. IPv6 Neighbor Discovery. IPv6

More information

IPv6 Concepts. Improve router performance Simplify IP header Align to 64 bits Address hierarchy with more levels Simplify routing tables

IPv6 Concepts. Improve router performance Simplify IP header Align to 64 bits Address hierarchy with more levels Simplify routing tables IPv6 Concepts Tópicos Avançados de Redes 2016/2017 Why IPv6? 2 Lack of IPv4 addresses Imply NAT, or other solutions; Realm Specific IP (RFC3102) Improve router performance Simplify IP header Align to 64

More information

IPv6 Neighbor Discovery

IPv6 Neighbor Discovery About, page 1 Prerequisites for, page 2 Guidelines for, page 2 Defaults for, page 4 Configure, page 5 View and Clear Dynamically Discovered Neighbors, page 10 History for, page 11 About The IPv6 neighbor

More information

The Netwok Layer IPv4 and IPv6 Part 2

The Netwok Layer IPv4 and IPv6 Part 2 ÉCOLE POLYTECHNIQUE FÉDÉRALE DE LAUSANNE The Netwok Layer IPv4 and IPv6 Part 2 Jean Yves Le Boudec 2014 1 Contents 6. ARP 7. Host configuration 8. IP packet format Textbook Chapter 5: The Network Layer

More information

IPv6 Configuration Commands

IPv6 Configuration Commands IPv6 Configuration Commands Table of Contents Table of Contents Chapter 1 IPv6 Configuration Commands...1 1.1 IPv6 Configuration Commands...1 1.1.1 ipv6 address...1 1.1.2 ipv6 address anycast...2 1.1.3

More information

IPv6 Neighbor Discovery

IPv6 Neighbor Discovery About, page 1 Prerequisites for, page 2 Guidelines for, page 2 Defaults for, page 4 Configure, page 5 Monitoring, page 10 History for, page 11 About The IPv6 neighbor discovery process uses ICMPv6 messages

More information

Table of Contents 1 IPv6 Configuration IPv6 Application Configuration 2-1

Table of Contents 1 IPv6 Configuration IPv6 Application Configuration 2-1 Table of Contents 1 IPv6 Configuration 1-1 IPv6 Overview 1-1 IPv6 Features 1-1 Introduction to IPv6 Address 1-3 Introduction to IPv6 Neighbor Discovery Protocol 1-5 Introduction to IPv6 DNS 1-8 Protocols

More information

Internet Protocol v6.

Internet Protocol v6. Internet Protocol v6 October 25, 2016 v6@nkn.in Table of Content Why IPv6? IPv6 Address Space Customer LAN Migration Why IPv6? IPv6 Address Space Customer LAN migration IPv4 DASH BOARD THE REASON For IPv6

More information

Table of Contents 1 IPv6 Configuration IPv6 Application Configuration 2-1

Table of Contents 1 IPv6 Configuration IPv6 Application Configuration 2-1 Table of Contents 1 IPv6 Configuration 1-1 IPv6 Overview 1-1 IPv6 Features 1-1 Introduction to IPv6 Address 1-2 Introduction to IPv6 Neighbor Discovery Protocol 1-5 Introduction to ND Snooping 1-7 Introduction

More information

IPv6: An Introduction

IPv6: An Introduction Outline IPv6: An Introduction Dheeraj Sanghi Department of Computer Science and Engineering Indian Institute of Technology Kanpur dheeraj@iitk.ac.in http://www.cse.iitk.ac.in/users/dheeraj Problems with

More information

IPv6. (Internet Protocol version 6)

IPv6. (Internet Protocol version 6) IPv6 Réseaux 1 IPv6 (Internet Protocol version 6) 2 IPv6 IP version 6 is the new version of the Internet Protocol (IP) The standardization process started in the 90s The main elements of IPv4 are still

More information

FiberstoreOS IPv6 Service Configuration Guide

FiberstoreOS IPv6 Service Configuration Guide FiberstoreOS IPv6 Service Configuration Guide Contents 1 Configuring IPv6 over IPv4 Tunnel...5 1.1 Overview...5 1.1.2 Manual Tunnel...6 1.1.3 6to4 Tunnel...6 1.1.4 ISATAP Tunnel...7 1.2 Configure Manual

More information

Veryx ATTEST TM Conformance Test Suite

Veryx ATTEST TM Conformance Test Suite Veryx ATTEST TM Conformance Test Suite IPv6 ReadyTest Host (IPv6-Host) Sample Test case List Overview Part Number: T / TCL IPv6-Host 1.0-0612/1.1 This page is intentionally left blank. Introduction 1 Introduction

More information

Table of Contents 1 IPv6 Configuration IPv6 Application Configuration 2-1

Table of Contents 1 IPv6 Configuration IPv6 Application Configuration 2-1 Table of Contents 1 IPv6 Configuration 1-1 IPv6 Overview 1-1 IPv6 Features 1-1 Introduction to IPv6 Address 1-3 Introduction to IPv6 Neighbor Discovery Protocol 1-6 Introduction to IPv6 DNS 1-8 Protocols

More information

On Distributed Communications, Rand Report RM-3420-PR, Paul Baran, August

On Distributed Communications, Rand Report RM-3420-PR, Paul Baran, August The requirements for a future all-digital-data distributed network which provides common user service for a wide range of users having different requirements is considered. The use of a standard format

More information

Introduction to IPv6. IPv6 addresses

Introduction to IPv6. IPv6 addresses Introduction to IPv6 (Chapter 4 in Huitema) IPv6,Mobility-1 IPv6 addresses 128 bits long Written as eight 16-bit integers separated with colons E.g. 1080:0000:0000:0000:0000:0008:200C:417A = 1080::8:800:200C:417A

More information

Configuring IPv6. Information About IPv6. Send document comments to CHAPTER

Configuring IPv6. Information About IPv6. Send document comments to CHAPTER CHAPTER 3 This chapter describes how to configure Internet Protocol version 6 (IPv6), which includes addressing, Neighbor Discovery Protocol (ND), and Internet Control Message Protocol version 6 (ICMPv6),

More information

Tutorial: IPv6 Technology Overview Part II

Tutorial: IPv6 Technology Overview Part II Tutorial: IPv6 Technology Overview Part II Speaker: Byju Pularikkal, Cisco Systems, Inc Date: 01/30/2011 1 DOCSIS = Data-Over-Cable Service Interface Specification CMTS = Cable Modem Termination System

More information

FiberstoreOS IPv6 Security Configuration Guide

FiberstoreOS IPv6 Security Configuration Guide FiberstoreOS IPv6 Security Configuration Guide Contents 1 Configuring IPv6 over IPv4 Tunnel...4 1.1 Overview... 4 1.1.2 Manual Tunnel... 5 1.1.3 6to4 Tunnel... 6 1.1.4 ISATAP Tunnel...7 1.2 Configure Manual

More information

Introduction to IPv6

Introduction to IPv6 Introduction to IPv6 LACNIC Campaign Latinamerica and the Caribbean in IPv6 1/1/11 Ariel Sabiguero asabigue@fing.edu.uy Haiti, August 2008 Agenda IPv6 History & backgroud ( header IPv6 header format (vs

More information

Radware ADC. IPV6 RFCs and Compliance

Radware ADC. IPV6 RFCs and Compliance Radware ADC IPV6 s and Compliance Knowledgebase Team February 2016 Scope: This document lists most of the s that relevant to IPv6. Legend: Yes supported N/A not applicable No Currently not supported Relevance:

More information

Configuring IPv6 First-Hop Security

Configuring IPv6 First-Hop Security This chapter describes the IPv6 First-Hop Security features. This chapter includes the following sections: Finding Feature Information, on page 1 Introduction to First-Hop Security, on page 1 RA Guard,

More information

Introduction to IPv6. IPv6 addresses

Introduction to IPv6. IPv6 addresses Introduction to IPv6 (Chapter4inHuitema) IPv6,Mobility-1 IPv6 addresses 128 bits long Written as eight 16-bit hexadecimal integers separated with colons E.g. 1080:0000:0000:0000:0000:0008:200C:417A = 1080::8:800:200C:417A

More information

Last time. Network layer. Introduction. Virtual circuit vs. datagram details. IP: the Internet Protocol. forwarding vs. routing

Last time. Network layer. Introduction. Virtual circuit vs. datagram details. IP: the Internet Protocol. forwarding vs. routing Last time Network layer Introduction forwarding vs. routing Virtual circuit vs. datagram details connection setup, teardown VC# switching forwarding tables, longest prefix matching IP: the Internet Protocol

More information

IPv6 Feature Facts

IPv6 Feature Facts 12.1.2 IPv6 Feature Facts The current IP addressing standard, version 4, will eventually run out of unique addresses, so a new system is being developed. It is named IP version 6 or IPv6. You should know

More information

It's the economy, stupid: the transition from IPv4 to IPv6

It's the economy, stupid: the transition from IPv4 to IPv6 It's the economy, stupid: the transition from IPv4 to IPv6 Amsterdam, 20 february 2013 Iljitsch van Beijnum Today's topics IPv4 is running out Why IPv6 is cool Address configuration Issues with choices

More information

Chapter 7: IP Addressing CCENT Routing and Switching Introduction to Networks v6.0

Chapter 7: IP Addressing CCENT Routing and Switching Introduction to Networks v6.0 Chapter 7: IP Addressing CCENT Routing and Switching Introduction to Networks v6.0 CCNET v6 13 Chapter 7 - Sections & Objectives 7.1 IPv4 Network Addresses Convert between binary and decimal numbering

More information

IPv6 Client IP Address Learning

IPv6 Client IP Address Learning Prerequisites for IPv6 Client Address Learning, on page 1 Information About IPv6 Client Address Learning, on page 1 Configuring IPv6 Unicast, on page 6 Configuring RA Guard Policy, on page 7 Applying RA

More information

On Distributed Communications, Rand Report RM-3420-PR, Paul Baran, August 1964

On Distributed Communications, Rand Report RM-3420-PR, Paul Baran, August 1964 The requirements for a future all-digital-data distributed network which provides common user service for a wide range of users having different requirements is considered. The use of a standard format

More information

CSCI-1680 Network Layer:

CSCI-1680 Network Layer: CSCI-1680 Network Layer: Wrapup Rodrigo Fonseca Based partly on lecture notes by Jennifer Rexford, Rob Sherwood, David Mazières, Phil Levis, John JannoA Administrivia Homework 2 is due tomorrow So we can

More information

IPv6 Technical Challenges

IPv6 Technical Challenges IPv6 Technical Challenges Peter Palúch, CCIE #23527, CCIP University of Zilina, Slovakia Academy Salute, April 15 th 16 th, Bucharest IPv6 technical challenges What challenges do I meet if I decide to

More information

OSI Data Link & Network Layer

OSI Data Link & Network Layer OSI Data Link & Network Layer Erkki Kukk 1 Layers with TCP/IP and OSI Model Compare OSI and TCP/IP model 2 Layers with TCP/IP and OSI Model Explain protocol data units (PDU) and encapsulation 3 Addressing

More information

Network Layer (4): ICMP

Network Layer (4): ICMP 1 Network Layer (4): ICMP Required reading: Kurose 4.4.3, 4.4.4 CSE 4213, Fall 2006 Instructor: N. Vlajic 2 1. Introduction 2. Network Service Models 3. Architecture 4. Network Layer Protocols in the Internet

More information

DHCPv6 OPERATIONAL ISSUES Tom Coffeen 4/7/2016

DHCPv6 OPERATIONAL ISSUES Tom Coffeen 4/7/2016 1 2016 2013 Infoblox Inc. All Inc. Rights All Reserved. Rights Reserved. DHCPv6 OPERATIONAL ISSUES Tom Coffeen 4/7/2016 ABOUT THE PRESENTER Tom Coffeen IPv6 Evangelist Infoblox @ipv6tom tom@ipv6.works

More information

IPv6 Security Fundamentals

IPv6 Security Fundamentals IPv6 Security Fundamentals UK IPv6 Council January 2018 Dr David Holder CEng FIET MIEEE david.holder@erion.co.uk IPv6 Security Fundamentals Common Misconceptions about IPv6 Security IPv6 Threats and Vulnerabilities

More information

Step 2. Manual configuration of global unicast and link-local addresses

Step 2. Manual configuration of global unicast and link-local addresses Lab: DHCPv6 CIS 116 IPv6 Fundamentals Enter your answers to the questions in this lab using Canvas Quiz DHCPv6 Lab. Step 1. Setup a. Log into NetLab: ccnp.bayict.cabrillo.edu b. Schedule IPv6 Pod 1: no

More information

Juniper Netscreen Security Device. How to Enable IPv6 Page-51

Juniper Netscreen Security Device. How to Enable IPv6 Page-51 Juniper Netscreen Security Device Page-51 Netscreen Firewall - Interfaces Below is a screen shot for a Netscreen Firewall interface. All interfaces have an IPv6 address except ethernet0/0. We will step

More information

The Netwok Layer IPv4 and IPv6 Part 2

The Netwok Layer IPv4 and IPv6 Part 2 ÉCOLE POLYTECHNIQUE FÉDÉRALE DE LAUSANNE The Netwok Layer IPv4 and IPv6 Part 2 Jean Yves Le Boudec 2015 1 Contents 6. ARP 7. Host configuration 8. IP packet format Textbook Chapter 5: The Network Layer

More information

Setup. Grab a vncviewer like: Or https://www.realvnc.com/download/viewer/

Setup. Grab a vncviewer like:  Or https://www.realvnc.com/download/viewer/ IPv6 Matt Clemons Topology 2 Setup Grab a vncviewer like: http://uvnc.com/download/1082/1082viewer.html Or https://www.realvnc.com/download/viewer/ Connect where I tell you and enter the password to see

More information

IPv6 and IPv4: Twins or Distant Relatives

IPv6 and IPv4: Twins or Distant Relatives IPv6 and IPv4: Twins or Distant Relatives Paul Ebersman, IPv6 Evangelist NANOG54, San Diego (5-8 Feb 2012) 1 What you ll see immediately More addresses 340 undecillion Bigger, beefier addresses 2001:db8:dead:beef::1

More information

ISO 9001:2008. Pankaj Kumar Dir, TEC, DOT

ISO 9001:2008. Pankaj Kumar Dir, TEC, DOT ISO 9001:2008 Pankaj Kumar Dir, TEC, DOT AWARENESS OBJECTIVES IPv6 Address Format & Basic Rules Understanding the IPv6 Address Components Understanding & Identifying Various Types of IPv6 Addresses 3/25/2012

More information

IPv6 ND Configuration Example

IPv6 ND Configuration Example IPv6 ND Configuration Example Keywords: IPv6 ND Abstract: This document describes the application environment and typical configuration of IPv6 ND. Acronyms: Acronym Full spelling ARP FIB Address Resolution

More information

IPv6 Stateless Autoconfiguration

IPv6 Stateless Autoconfiguration The IPv6 stateless autoconfiguration feature can be used to manage link, subnet, and site addressing changes. Information About, page 1 How to Configure, page 2 Configuration Examples for, page 3 Additional

More information

HPE ArubaOS-Switch IPv6 Configuration Guide YA/YB.16.02

HPE ArubaOS-Switch IPv6 Configuration Guide YA/YB.16.02 HPE ArubaOS-Switch IPv6 Configuration Guide YA/YB.16.02 Part Number: 5200-1665 Published: July 2016 Edition: 1 Copyright Copyright 2016 Hewlett Packard Enterprise Development LP The information contained

More information

IPv6 Cyber Security Briefing May 27, Ron Hulen VP and CTO Cyber Security Solutions Command Information, Inc.

IPv6 Cyber Security Briefing May 27, Ron Hulen VP and CTO Cyber Security Solutions Command Information, Inc. IPv6 Cyber Security Briefing May 27, 2010 Ron Hulen VP and CTO Cyber Security Solutions Command Information, Inc. 2610:f8:ffff:2010:05:27:85:1 Attack Surfaces Protocol Translator IPv4 Native Dual-Stack

More information

IP - The Internet Protocol. Based on the slides of Dr. Jorg Liebeherr, University of Virginia

IP - The Internet Protocol. Based on the slides of Dr. Jorg Liebeherr, University of Virginia IP - The Internet Protocol Based on the slides of Dr. Jorg Liebeherr, University of Virginia Orientation IP (Internet Protocol) is a Network Layer Protocol. IP: The waist of the hourglass IP is the waist

More information

CS 356: Computer Network Architectures. Lecture 10: IP Fragmentation, ARP, and ICMP. Xiaowei Yang

CS 356: Computer Network Architectures. Lecture 10: IP Fragmentation, ARP, and ICMP. Xiaowei Yang CS 356: Computer Network Architectures Lecture 10: IP Fragmentation, ARP, and ICMP Xiaowei Yang xwy@cs.duke.edu Overview Homework 2-dimension parity IP fragmentation ARP ICMP Fragmentation and Reassembly

More information

Lecture Computer Networks

Lecture Computer Networks Prof. Dr. Hans Peter Großmann mit M. Rabel sowie H. Hutschenreiter und T. Nau Sommersemester 2012 Institut für Organisation und Management von Informationssystemen Lecture Computer Networks Internet Protocol

More information

IPv4 and IPv6 Commands

IPv4 and IPv6 Commands This module describes the Cisco IOS XR software commands used to configure the IPv4 and IPv6 commands for Broadband Network Gateway (BNG) on the Cisco ASR 9000 Series Router. For details regarding the

More information

Outline. IP Address. IP Address. The Internet Protocol. o Hostname & IP Address. o The Address

Outline. IP Address. IP Address. The Internet Protocol. o Hostname & IP Address. o The Address Outline IP The Internet Protocol o IP Address IP subnetting CIDR o ARP Protocol o IP Function o Fragmentation o NAT o IPv6 2 IP Address o Hostname & IP Address IP Address o The Address ping www.nu.ac.th

More information

Configuring Wireless Multicast

Configuring Wireless Multicast Finding Feature Information, on page 1 Prerequisites for, on page 1 Restrictions for, on page 1 Information About Wireless Multicast, on page 2 How to Configure Wireless Multicast, on page 6 Monitoring

More information

TSIN02 - Internetworking

TSIN02 - Internetworking Lecture 2: Internet Protocol Literature: Forouzan: ch (4-6), 7-9 and ch 31 2004 Image Coding Group, Linköpings Universitet Lecture 2: IP Goals: Understand the benefits Understand the architecture IPv4

More information

Network Working Group Request for Comments: W. Simpson Daydreamer H. Soliman Elevate Technologies September 2007

Network Working Group Request for Comments: W. Simpson Daydreamer H. Soliman Elevate Technologies September 2007 Network Working Group Request for Comments: 4861 Obsoletes: 2461 Category: Standards Track T. Narten IBM E. Nordmark Sun Microsystems W. Simpson Daydreamer H. Soliman Elevate Technologies September 2007

More information

The Netwok Layer IPv4 and IPv6 Part 2

The Netwok Layer IPv4 and IPv6 Part 2 ÉCOLE POLYTECHNIQUE FÉDÉRALE DE LAUSANNE The Netwok Layer IPv4 and IPv6 Part 2 Jean Yves Le Boudec 2017 1 Contents 6. Host configuration 7. ARP 8. IP packet format, HL and TTL Textbook Chapter 5: The Network

More information

Introduction to IPv6. IPv6 addresses

Introduction to IPv6. IPv6 addresses Introduction to IPv6 (Chapter 4 in Huitema) IPv6,Mobility-1 IPv6 addresses 128 bits long Written as eight 16-bit integers separated with colons E.g. 1080:0000:0000:0000:0000:0008:200C:417A = 1080::8:800:200C:417A

More information

Lecture 3. The Network Layer (cont d) Network Layer 1-1

Lecture 3. The Network Layer (cont d) Network Layer 1-1 Lecture 3 The Network Layer (cont d) Network Layer 1-1 Agenda The Network Layer (cont d) What is inside a router? Internet Protocol (IP) IPv4 fragmentation and addressing IP Address Classes and Subnets

More information

Internet Control Message Protocol (ICMP)

Internet Control Message Protocol (ICMP) Internet Control Message Protocol (ICMP) 1 Overview The IP (Internet Protocol) relies on several other protocols to perform necessary control and routing functions: Control functions (ICMP) Multicast signaling

More information

IPv6 migration challenges and Security

IPv6 migration challenges and Security IPv6 migration challenges and Security ITU Regional Workshop for the CIS countries Recommendations on transition from IPv4 to IPv6 in the CIS region, 16-18 April 2014 Tashkent, Republic of Uzbekistan Desire.karyabwite@itu.int

More information

IPv6 Security (Theory vs Practice) APRICOT 14 Manila, Philippines. Merike Kaeo

IPv6 Security (Theory vs Practice) APRICOT 14 Manila, Philippines. Merike Kaeo IPv6 Security (Theory vs Practice) APRICOT 14 Manila, Philippines Merike Kaeo merike@doubleshotsecurity.com Current IPv6 Deployments Don t break existing IPv4 network Securing IPv6 Can t secure something

More information

IPv6 Protocols & Standards

IPv6 Protocols & Standards IPv6 Protocols & Standards ISP/IXP Workshops 1 So what has really changed? Expanded address space Address length quadrupled to 16 bytes Header Format Simplification Fixed length, optional headers are daisy-chained

More information

Transitioning to IPv6

Transitioning to IPv6 Transitioning to IPv6 麟瑞科技區域銷售事業處副處長張晃崚 CCIE #13673 2007 Cisco Systems, Inc. All rights reserved. ICND2 v1.0 7-1 IPv4 and IPv6 Currently, there are approximately 1.3 billion usable IPv4 addresses available.

More information

ICMPv6. Internet Control Message Protocol version 6. Mario Baldi. Politecnico di Torino. (Technical University of Turin)

ICMPv6. Internet Control Message Protocol version 6. Mario Baldi. Politecnico di Torino. (Technical University of Turin) ICMPv6 Internet Control Message Protocol version 6 Mario Baldi Politecnico di Torino (Technical University of Turin) http://www.baldi.info Copyright Notice This set of transparencies, hereinafter referred

More information

Lecture 11: IP routing, IP protocols

Lecture 11: IP routing, IP protocols Lecture 11: IP routing, IP protocols Contents Routing principles Local datagram delivery ICMP Protocol UDP Protocol TCP/IP Protocol Assuring requirements for streaming TPC Building and terminating TCP

More information

Advanced Computer Networking. CYBR 230 Jeff Shafer University of the Pacific. IPv6

Advanced Computer Networking. CYBR 230 Jeff Shafer University of the Pacific. IPv6 CYBR 230 Jeff Shafer University of the Pacific IPv6 2 IP Versions Version Description 0-3 Unused: Development versions of IP 4 Current network-layer protocol 5 Unused: Experimental stream protocol ST 6

More information

IPv6 CONSORTIUM TEST SUITE Address Architecture Conformance Test Specification

IPv6 CONSORTIUM TEST SUITE Address Architecture Conformance Test Specification IPv6 CONSORTIUM TEST SUITE Address Architecture Technical Document Version 2.4 University of New Hampshire 121 Technology Drive, Suite 2 Durham, NH 03824 IPv6 Consortium Phone: +1-603-862-2804 http://www.iol.unh.edu

More information

IPv6 Security. David Kelsey (STFC-RAL) IPv6 workshop pre-gdb, CERN 7 June 2016

IPv6 Security. David Kelsey (STFC-RAL) IPv6 workshop pre-gdb, CERN 7 June 2016 IPv6 Security David Kelsey (STFC-RAL) IPv6 workshop pre-gdb, CERN 7 June 2016 Outline MORE MATERIAL HERE THAN TIME TO PRESENT & DISCUSS (BUT SLIDES AVAILABLE FOR LATER REFERENCE) IPv6 security & threats

More information

Ch.6 Mapping Internet Addresses to Physical Addresses (ARP)

Ch.6 Mapping Internet Addresses to Physical Addresses (ARP) CSC521 Communication Protocols 網路通訊協定 Ch.6 Mapping Internet Addresses to Physical Addresses (ARP) 吳俊興國立高雄大學資訊工程學系 Internetworking With TCP/IP, Vol I: Sixth Edition, Douglas E. Comer Outline 1 Introduction

More information

IPv6 READY. Conformance Test Scenario CE Router. Technical Document. Revision 1.0.0b1

IPv6 READY. Conformance Test Scenario CE Router. Technical Document. Revision 1.0.0b1 IPv6 READY Conformance Test Scenario CE Router Technical Document Revision 1.0.0b1 IPv6 Forum http://www.ipv6forum.org http://www.ipv6ready.org 2014 University of New Hampshire InterOperability Laboratory

More information

Planning for Information Network

Planning for Information Network Planning for Information Network Lecture 7: Introduction to IPv6 Assistant Teacher Samraa Adnan Al-Asadi 1 IPv6 Features The ability to scale networks for future demands requires a limitless supply of

More information

internet technologies and standards

internet technologies and standards Institute of Telecommunications Warsaw University of Technology 2017 internet technologies and standards Piotr Gajowniczek Andrzej Bąk Michał Jarociński Network Layer The majority of slides presented in

More information

Network layer: Overview. Network layer functions IP Routing and forwarding NAT ARP IPv6 Routing

Network layer: Overview. Network layer functions IP Routing and forwarding NAT ARP IPv6 Routing Network layer: Overview Network layer functions IP Routing and forwarding NAT ARP IPv6 Routing 1 Network Layer Functions Transport packet from sending to receiving hosts Network layer protocols in every

More information