tags:

views:

144

answers:

2

Hi all,

I'm trying to understand the rules for choosing an IPv6 multicast address Group ID, and the RFC seems somewhat inconsistent. For example, in RFC 2373 section 2.7 this diagram is shown:

|   8    |  4 |  4 |                  112 bits                   |
+------ -+----+----+---------------------------------------------+
|11111111|flgs|scop|                  group ID                   |
+--------+----+----+---------------------------------------------+

... but then in section 2.7.2 it shows this:

|   8    |  4 |  4 |          80 bits          |     32 bits     |
+------ -+----+----+---------------------------+-----------------+
|11111111|flgs|scop|   reserved must be zero   |    group ID     |
+--------+----+----+---------------------------+-----------------+

So my question is, are the upper 80 bits of the Group ID field usable or not? If they are usable, is it only under certain circumstances (e.g. when using non-Ethernet networking technology?) What problems should I expect to experience if I set these bits when multicasting over an Ethernet LAN?

+1  A: 
Nikolai N Fetissov
A: 

Nikolai's description of the P bit in IPv6 multicast addresses is correct, but I don't think that it's the basis of the difference between the two addressing sections in RFC2373.

Section 2.7.2 describes the recommendation to use multicast addresses that use the lower 32 bits as they will map to unique multicast ethernet MAC addresses.

IPv6 multicast addresses map to an ethernet MAC address in the following format (described in rfc2464): 33:33:xx:xx:xx:xx, where xx:xx:xx:xx is the lower 32 bits of the IPv6 multicast address.

Andrew Edgecombe