Difference between revisions of "IPv6 Address"

From Teknologisk videncenter
Jump to: navigation, search
m
m
Line 16: Line 16:
 
|fc00:/7 || fdf8:f53b:82e4::53 || [[Unique Local IPv6 Address|Unique Local Address (ULA)]] || 10/8, 172.16/12, 192.168/16
 
|fc00:/7 || fdf8:f53b:82e4::53 || [[Unique Local IPv6 Address|Unique Local Address (ULA)]] || 10/8, 172.16/12, 192.168/16
 
|-
 
|-
|fe80::/10 || fe80::221:86ff:fea0:ce84 || [[Link Local IP-v6 Address|Link-Local Address]] || 169.254.0.0/16
+
|fe80::/10 || fe80::221:86ff:fea0:ce84 || [[Link Local IPv6 Address|Link-Local Address]] || 169.254.0.0/16
 
|-
 
|-
 
|2002::/16 || 2002:cb0a:3cdd:1::1 || [[6to4 IPv6 Address|6to4]] || No Equivalent
 
|2002::/16 || 2002:cb0a:3cdd:1::1 || [[6to4 IPv6 Address|6to4]] || No Equivalent

Revision as of 11:57, 13 June 2011

[edit]

IPv6 Address Types[1]

Need To Know Address Allocations

Need To Know IPv6 Address Types Overview
Prefix Example Designation IPv4 Equivalent
 ::/128 Unspecified 0.0.0.0
 ::1/128 Loopback 127.0.0.1
 ::ffff/96  ::ffff:83.90.47.30 IPv4-Mapped No Equivalent
fc00:/7 fdf8:f53b:82e4::53 Unique Local Address (ULA) 10/8, 172.16/12, 192.168/16
fe80::/10 fe80::221:86ff:fea0:ce84 Link-Local Address 169.254.0.0/16
2002::/16 2002:cb0a:3cdd:1::1 6to4 No Equivalent
2000::/3 2001:470:1f08:197d::2 Global Unicast No single block.
ff00::/8 ff01::2 Multicast IPv6 Address 224.0.0.0/4

Nice To Know Address Allocations

Nice To Know IPv6 Address Types Overview
Prefix Example Designation IPv4 Equivalent
2001:0000::/32 2001:0000:41ef::A819 Teredo No Equivalent
2001:0002::/48 2001:0002:6c::430 Benchmarking 198.18.0.0/15
2001:0010::/28 2001:0010:10:240:ab::a Orchid No Equivalent
2001::db8/32 2001:db8:8:4::2 Documentation Fx. 192.0.2.0/24

Reference

Global Unicast
IPv6 Address Type: Global Unicast
Prefix: 2000::/3
Local Routeable: Yes
Global Routeable: Yes
Global Unique: Yes
Example: 2001:6D8:D85:4:210:11FF:FE34:540A
IPv4 Equivalent: In IPv4 there are several Global Unicast block in Class A, B and C
Described in: rfc4291
IANA Unicast Assignments
Explanation

These are the Global IPv6 addresses used for Global Unicast communication. The ISP's Route these addresses - except those listed in IANA IPv6 Global Unicast Address Assignments

Multicast
IPv6 Address Type: Multicast
Prefix: ff00::/8
Local Routeable: Yes and No
Global Routeable: Yes and No
Global Unique: Yes and No
Example: FF0E::101
IPv4 Equivalent: 224.0.0.0/4
Described in: rfc4291 section 2.7
Explanation

These addresses are used to identify multicast groups. They should only be used as destination addresses, never as source addresses.


Multicast Address Format

The IPv6 Multicast addresses contains two fields describing which kind of Multicast it is. Flag and Scope.

Format of IPv6 Multicast Address

Flag Field

The flag field consists of four flags.
0 R P T
Flags
Flag Explanation
T

T = 0 indicates a permanently-assigned well-known multicast address assigned by IANA.

T = 1 indicates a non-permanently-assigned ("transient" or "dynamically" assigned) multicast address. See rfc4292

P

P = 0 indicates a multicast address that is not assigned based on the network prefix.

P = 1 indicates a multicast address that is assigned based on the network prefix. See rfc3306

R

R = 0 indicates a multicast address that does not embed the address of the RP

R = 1 indicates a multicast address that embed an RP (Rendezvous Point) See rfc3956

0 The high-order flag is reserved, and must be initialized to 0.

Scope Field

The Scope field is used to limit the Scope of the Multicast Group.

Multicast Address Scope Value in use
Value Scope Explanation
1 Interface-Local Interface-Local scope spans only a single interface on a node and is useful only for loopback transmission of multicast.
2 Link Local Link-Local multicast scope spans the same topological region as the corresponding unicast scope.
4 Admin Local Admin-Local scope is the smallest scope that must be administratively configured, i.e., not automatically derived from physical connectivity or other, non-multicast-related configuration.
5 Site Local Site-Local scope is intended to span a single site.
8 Organization Local Organization-Local scope is intended to span multiple sites belonging to a single organization.
E Global Global span.

Variable Scope Multicast Addresses

The "meaning" of a Variable Scope or permanently-assigned multicast address is independent of the scope value. For example, if the "NTP servers group" is assigned a permanent multicast address with a group ID of FF0x::101 (hex), then

FF01::101 means all NTP servers on the same interface (i.e., the same node) as the sender.
FF02::101 means all NTP servers on the same link as the sender.
FF05::101 means all NTP servers in the same site as the sender.
FF0E::101 means all NTP servers in the Internet.

Well Known Multicast examples

Address Scope Meaning Description
FF01::1 Node All Nodes All nodes on the interface-local scope
FF01::2 Node All Routers All routers on the interface-local scope
FF02::1 Link Local All Nodes All nodes on the local-link scope
FF02::2 Link Local All Routers All routers on the link-local scope
FF05::2 Site All Routers All routers in a site scope

Pinging Multicast Addresses

In the first example below By pinging FF02::2 - All Routers on Local-Link - it's seen from the output below that there are two Routers responding

Campus1#<input>ping FF02::2 source vlan 1 repeat 1</input>
Output Interface: <input>vlan 1</input>
Type escape sequence to abort.
Sending 1, 100-byte ICMP Echos to FF02::2, timeout is 2 seconds:
Packet sent with a source address of FE80::218:18FF:FE7C:B440

Reply to request 0 received from FE80::128C:CFFF:FE96:F76F, 0 ms
Reply to request 0 received from FE80::219:E7FF:FE51:8C0, 0 ms
Success rate is 100 percent (1/1), round-trip min/avg/max = 0/0/0 ms
2 multicast replies and 0 errors.

When pinging FF02::1 - All Nodes on Local-Link - it's seen that there are ten Nodes, including the two Routers from previous example. Using Local-Link address as source.

Campus1#<input>ping FF02::1 source vlan 1 repeat 1</input>
Output Interface: <input>vlan 1</input>
Type escape sequence to abort.
Sending 1, 100-byte ICMP Echos to FF02::1, timeout is 2 seconds:
Packet sent with a source address of FE80::218:18FF:FE7C:B440

Reply to request 0 received from FE80::22CF:30FF:FEF0:C81A, 0 ms
Reply to request 0 received from FE80::22CF:30FF:FEF0:C880, 0 ms
Reply to request 0 received from FE80::250:56FF:FE8B:C, 0 ms
Reply to request 0 received from FE80::250:56FF:FE8B:3E, 0 ms
Reply to request 0 received from FE80::250:56FF:FE8B:2, 0 ms
Reply to request 0 received from FE80::250:56FF:FE8B:32, 0 ms
Reply to request 0 received from FE80::250:56FF:FE8B:36, 0 ms
Reply to request 0 received from FE80::207:E9FF:FE40:ABF, 0 ms
Reply to request 0 received from FE80::128C:CFFF:FE96:F76F, 0 ms
Reply to request 0 received from FE80::219:E7FF:FE51:8C0, 0 ms
Success rate is 100 percent (1/1), round-trip min/avg/max = 0/0/0 ms
10 multicast replies and 0 errors.

When pinging with Global Unicast as Source Address, some of the nodes respond with their Global Unicast Address. Appently

Campus1#<input>ping FF02::1 source 2001:16D8:DD85:139:218:18FF:FE7C:B441 repeat 1</input>
Output Interface: <input>vlan 139</input>
Type escape sequence to abort.
Sending 1, 100-byte ICMP Echos to FF02::1, timeout is 2 seconds:
Packet sent with a source address of 2001:16D8:DD85:139:218:18FF:FE7C:B441

Reply to request 0 received from 2001:16D8:DD85:139:250:56FF:FE8B:A, 17 ms
Reply to request 0 received from 2001:16D8:DD85:139:20C:29FF:FE36:45B1, 17 ms
Reply to request 0 received from 2001:16D8:DD85:139:21B:21FF:FE52:917D, 17 ms
Reply to request 0 received from 2001:16D8:DD85:139:216:76FF:FE9F:FEF6, 17 ms
Reply to request 0 received from 2001:16D8:DD85:139:214:5EFF:FE67:614A, 17 ms
Reply to request 0 received from 2001:16D8:DD85:139:20C:29FF:FE4C:C0C, 17 ms
Reply to request 0 received from 2001:16D8:DD85:139:4A5B:39FF:FE5A:A7F7, 17 ms
Reply to request 0 received from 2001:16D8:DD85:139:9221:55FF:FEBC:BD97, 17 ms
Success rate is 100 percent (1/1), round-trip min/avg/max = 17/17/17 ms
8 multicast replies and 0 errors.

RFC's

rfc4291 "IP Version 6 Addressing Architecture" defines new flags in rfc3306 "Unicast-Prefix-based IPv6 Multicast Addresses" and rfc3956 "Embedding the Rendezvous Point (RP) Address in an IPv6 Multicast Address"

Unique Local (ULA)
IPv6 Address Type: Unique Local (ULA)
Prefix: fc00::/7
Local Routeable: Yes
Global Routeable: No
Global Unique: Preferable
Example: fdf8:f53b:82e4::53
IPv4 Equivalent: Private rfc1918 Adresses
10.0.0.0/8
172.16.0.0/12
192.168.0.0/16
Described in: rfc4193
Explanation

These addresses are reserved for local use in home and enterprise environments and are not public address space.

These addresses might not be unique, and there is no formal address registration. Packets with these addresses in the source or destination fields are not intended to be routed on the public Internet but are intended to be routed within the enterprise or organisation.

See RFC 4193 for more details.

Unspecified
IPv6 Address Type: Unspecified
Prefix:  ::/128
Local Routeable: No
Global Routeable: No
Global Unique: No
IPv4 Equivalent: 0.0.0.0
Described in: rfc4291
Explanation

This address may only be used as a source address by an initialising host before it has learned its own address

Prefix ::/128 is the same as 0000:0000:0000:0000:0000:0000:0000:0000

Loopback
IPv6 Address Type: Loopback
Prefix:  ::1/128
Local Routeable: No
Global Routeable: No
Global Unique: No
IPv4 Equivalent: 127.0.0.1
Described in: rfc4291
Explanation

This address is used when a host talks to itself over IPv6. This often happens when one program sends data to another.

IPv4 Mapped
IPv6 Address Type: IPv4 Mapped
Prefix:  ::ffff/96
Local Routeable: Yes
Global Routeable: Yes
Global Unique: Yes
Example:  ::ffff:83.90.47.30
IPv4 Equivalent: None
Described in: rfc4291
rfc4038 section 4.2
Explanation

These addresses are used to embed IPv4 addresses in an IPv6 address. One use for this is in a dual stack transition scenario where IPv4 addresses can be mapped into an IPv6 address.

See RFC 4038 for more details

IPv4-mapped IPv6 addresses are used in scenarios where IPv6 an IPv6-only application need to communicate with an IPv4 only application using IPv4 packets.

The IPv4-mapped address, 0:0:0:0:0:FFFF:w.x.y.z or ::FFFF:w.x.y.z, is used to represent an IPv4-only node to an IPv6 node. It is used only for internal representation. The IPv4-mapped address is never used as a source or destination address for an IPv6 packet. The IPv6 protocol does not support the use of IPv4-mapped addresses.[1]

Dual-stack sockets always require IPv6 addresses. The ability to interact with an IPv4 address requires the use of the IPv4-mapped IPv6 address format. Any IPv4 addresses must be represented in the IPv4-mapped IPv6 address format which enables an IPv6 only application to communicate with an IPv4 node. The IPv4-mapped IPv6 address format allows the IPv4 address of an IPv4 node to be represented as an IPv6 address. The IPv4 address is encoded into the low-order 32 bits of the IPv6 address, and the high-order 96 bits hold the fixed prefix 0:0:0:0:0:FFFF. The IPv4-mapped IPv6 address format is specified in RFC 4291. For more information, see www.ietf.org/rfc/rfc4291.txt. The IN6ADDR_SETV4MAPPED macro in Mstcpip.h can be used to convert an IPv4 address to the required IPv4-mapped IPv6 address format.

If the underlying protocol is actually IPv4, then the IPv4 address is mapped into an IPv4-mapped IPv6 address format. That is the, family field in the SOCKADDR structure indicates AF_INET6, but an IPv4-mapped IPv6 address is encoded in the IPv6 address structure. For a dual-stack socket in listening mode, this means that any accepted IPv4 connections will return an IPv4-mapped IPv6 address. For a dual-stack socket that is connecting to an IPv4 destination, the SOCKADDR structure passed to connect must be an IPv4-mapped IPv6 address. Applications must take care to handle these IPv4-mapped IPv6 addresses appropriately and only use them with dual stack sockets. If an IP address is to be passed to a regular IPv4 socket, the address must be a regular IPv4 address not a IPv4-mapped IPv6 address.[2]

Only seen working application using IPv4-mapped IPv6 addresses is Windows 7 ping!!!

<input>
C:\Users\Henrik thomsen><notice>ping ::ffff:192.168.139.50</notice>

Pinging 192.168.139.50 with 32 bytes of data:
Reply from 192.168.139.50: bytes=32 time<1ms TTL=62
Reply from 192.168.139.50: bytes=32 time<1ms TTL=62
Reply from 192.168.139.50: bytes=32 time<1ms TTL=62
Reply from 192.168.139.50: bytes=32 time<1ms TTL=62

Ping statistics for 192.168.139.50:
    Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
    Minimum = 0ms, Maximum = 0ms, Average = 0ms

</input>

or same as

<input>
C:\Users\Henrik thomsen><notice>ping ::ffff:c0a8:8b32</notice>

Pinging 192.168.139.50 with 32 bytes of data:
Reply from 192.168.139.50: bytes=32 time<1ms TTL=62
Reply from 192.168.139.50: bytes=32 time<1ms TTL=62
Reply from 192.168.139.50: bytes=32 time<1ms TTL=62
Reply from 192.168.139.50: bytes=32 time<1ms TTL=62

Ping statistics for 192.168.139.50:
    Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
    Minimum = 0ms, Maximum = 0ms, Average = 0ms
</input>
6to4
IPv6 Address Type: 6to4
Prefix: 2002::/16
Local Routeable: Yes
Global Routeable: Yes
Global Unique: Yes
Example: 2002:cb0a:3cdd:1::1
IPv4 Equivalent: No equivalent
Described in: rfc3056
Cisco Routing IPv6 over IPv4
version6.net on 6to4
Explanation

A 6to4 gateway adds its IPv4 address to this 2002::/16, creating a unique /48 prefix. As the IPv4 address of the gateway router is used to compose the IPv6 prefix, it is possible to reverse the process and identify the IPv4 address, which can then be looked up in the relevant RIR’s Whois database.

You can do this on the following webpage: http://www.potaroo.net/cgi-bin/ipv6addr