RFC 9776: STD 100: Internet Group Management Protocol, Version 3
- B. Haberman, Ed.
Abstract
The Internet Group Management Protocol (IGMP) is the protocol used by IPv4 systems to report their IP multicast group memberships to neighboring multicast routers. Version 3 of IGMP (IGMPv3) adds support for source filtering, that is, the ability for a system to report interest in receiving packets only from specific source addresses, or from all but specific source addresses, sent to a particular multicast address. That information may be used by multicast routing protocols to avoid delivering multicast packets from specific sources to networks where there are no interested receivers.¶
This document specifies IGMPv3. It is a revised version of RFC 3376 that includes clarifications and fixes for errata, and it is backward compatible with RFC 3376.¶
This document updates RFC 2236 and obsoletes RFC 3376.¶
Status of This Memo
This is an Internet Standards Track document.¶
This document is a product of the Internet Engineering Task Force (IETF). It represents the consensus of the IETF community. It has received public review and has been approved for publication by the Internet Engineering Steering Group (IESG). Further information on Internet Standards is available in Section 2 of RFC 7841.¶
Information about the current status of this document, any
errata, and how to provide feedback on it may be obtained at
https://
Copyright Notice
Copyright (c) 2025 IETF Trust and the persons identified as the document authors. All rights reserved.¶
This document is subject to BCP 78 and the IETF Trust's Legal
Provisions Relating to IETF Documents
(https://
This document may contain material from IETF Documents or IETF Contributions published or made publicly available before November 10, 2008. The person(s) controlling the copyright in some of this material may not have granted the IETF Trust the right to allow modifications of such material outside the IETF Standards Process. Without obtaining an adequate license from the person(s) controlling the copyright in such materials, this document may not be modified outside the IETF Standards Process, and derivative works of it may not be created outside the IETF Standards Process, except to format it for publication as an RFC or to translate it into languages other than English.¶
1. Introduction
The Internet Group Management Protocol (IGMP) is used by IPv4 systems (hosts and routers) to report their IP multicast group memberships to any neighboring multicast routers. Note that an IP multicast router may itself be a member of one or more multicast groups, in which case it performs both the multicast router part of the protocol (to collect the membership information needed by its multicast routing protocol) and the group member part of the protocol (to inform itself and other, neighboring multicast routers of its memberships).¶
IGMP is also used for other IP multicast management functions, using message types other than those used for group membership reporting. This document specifies only the group membership reporting functions and messages.¶
This document specifies Version 3 of IGMP. Version 1, specified in [RFC1112], was the first widely deployed version and the first version to become an Internet Standard. Version 2, specified in [RFC2236], added support for low leave latency, that is, a reduction in the time it takes for a multicast router to learn that there are no longer any members of a particular group present on an attached network. Version 3 adds support for source filtering, that is, the ability for a system to report interest in receiving packets only from specific source addresses, as required to support Source-Specific Multicast (SSM) [RFC3569], or from all but specific source addresses, sent to a particular multicast address. Version 3 is designed to be interoperable with Versions 1 and 2.¶
This document uses "SSM-aware" to refer to systems that support SSM as defined in [RFC4607].¶
This document updates [RFC2236] as a proper implementation of IGMPv3 needs to implement IGMPv2 Report and Leave message handling.¶
This document obsoletes [RFC3376] as it provides clarifications and fixes for errata in [RFC3376]. Detailed updates for those changes are described in Appendix C.¶
1.1. Conventions Used in This Document
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in BCP 14 [RFC2119] [RFC8174] when, and only when, they appear in all capitals, as shown here.¶
2. The Service Interface for Requesting IP Multicast Reception
Within an IP system, there is (at least conceptually) a service interface used by upper-layer protocols or application programs to ask the IP layer to enable and disable reception of packets sent to specific IP multicast addresses. In order to take full advantage of the capabilities of IGMPv3, a system's IP service interface must support the following operation:¶
where:¶
For a given combination of socket, interface, and multicast address,
only a single filter-mode and source-list can be in effect at any one
time. However, either the filter-mode or the source-list, or both,
may be changed by subsequent IPMulticast
Previous versions of IGMP did not support source filters and had a simpler service interface consisting of Join and Leave operations to enable and disable reception of a given multicast address (from all sources) on a given interface. The equivalent operations in the new service interface follow:¶
The Join operation is equivalent to:¶
and the Leave operation is equivalent to:¶
where {} is an empty source-list.¶
An example of an API providing the capabilities outlined in this service interface is in [RFC3678].¶
3. Multicast Reception State Maintained by Systems
3.1. Socket State
For each socket on which IPMulticast
The socket state evolves in response to each invocation of
IPMulticast
3.2. Interface State
In addition to the per-socket multicast reception state, a system must also maintain or compute multicast reception state for each of its interfaces. That state conceptually consists of a set of records of the form:¶
At most, one record per multicast
requesting reception on interface i of packets sent to multicast address m, only if they come from source a, b, or c. Suppose another application or process invokes the following operation on socket s2:¶
requesting reception on the same interface i of packets sent to the same multicast address m, only if they come from sources b, c, or d. In order to satisfy the reception requirements of both sockets, it is necessary for interface i to receive packets sent to m from any one of the sources a, b, c, or d. Thus, in this example, the reception state of interface i for multicast address m has filter-mode INCLUDE and source-list {a, b, c, d}.¶
After a multicast packet has been accepted from an interface by the IP layer, its subsequent delivery to the application or process listening on a particular socket depends on the multicast reception state of that socket (and possibly also on other conditions, such as what transport-layer port the socket is bound to). So, in the above example, if a packet arrives on interface i, destined to multicast address m, with source address a, it will be delivered on socket s1 but not on socket s2. Note that IGMP Queries and Reports are not subject to source filtering and must always be processed by hosts and routers.¶
Filtering of packets based upon a socket's multicast reception state is a feature of this service interface. The previous service interface [RFC1112] described no filtering based upon multicast join state; rather, a join on a socket simply caused the host to join a group on the given interface, and packets destined for that group could be delivered to all sockets whether they had joined or not.¶
The general rules for deriving the per-interface state from the
per-socket state are as follows: For each distinct (interface,
multicast
The above rules for deriving the interface state are (re-)evaluated
whenever an IPMulticast
4. Message Formats
IGMP messages are encapsulated in IPv4 datagrams, with an IP protocol number of 2. Every IGMP message described in this document is sent with an IP Time-to-Live of 1, IP Precedence of Internetwork Control (e.g., Type of Service 0xc0), and carries an IP Router Alert option [RFC2113] in its IP header. IGMP message types are registered per [BCP57].¶
There are two IGMP message types of concern to the IGMPv3 protocol described in this document:¶
An implementation of IGMPv3 MUST also support the following three message types, for interoperation with previous versions of IGMP (see Section 7):¶
Unrecognized message types MUST be silently ignored. Other message types may be used by newer versions or extensions of IGMP, by multicast routing protocols, or for other uses.¶
In this document, unless otherwise qualified, the capitalized words "Query" and "Report" refer to IGMP Membership Queries and IGMPv3 Membership Reports, respectively.¶
4.1. Membership Query Message
Membership Queries are sent by IP multicast routers to query the multicast reception state of neighboring interfaces. Queries have the following format:¶
4.1.1. Max Response Code
The Max Resp Code field specifies the maximum time allowed before sending a responding report. The actual time allowed, called the "Max Response Time", is represented in units of 1/10 second and is derived from the Max Resp Code as follows:¶
Small values of Max Response Time allow IGMPv3 routers to tune the "leave latency" (the time between the moment the last host leaves a group and the moment the routing protocol is notified that there are no more members). Larger values, especially in the exponential range, allow tuning of the burstiness of IGMP traffic on a network.¶
4.1.2. Checksum
The Checksum field is the 16-bit one's complement of the one's complement sum of the whole IGMP message (the entire IP payload). For computing the checksum, the Checksum field is set to zero. When receiving packets, the checksum MUST be verified before processing a packet [RFC1071].¶
4.1.3. Group Address
The Group Address field is set to zero when sending a General Query
and set to the IP multicast address being queried when sending a
Group-Specific Query or Group
4.1.4. Flags
The Flags field is a bitstring managed by the "IGMP Type Numbers" registry defined in [BCP57].¶
4.1.5. S Flag (Suppress Router-Side Processing)
When set to one, the S flag indicates to any receiving multicast routers that they are to suppress the normal timer updates they perform upon receiving a Query. It does not, however, suppress the Querier election or the normal "host-side" processing of a Query that a router may be required to perform as a consequence of itself being a group member.¶
4.1.6. QRV (Querier's Robustness Variable)
If non-zero, the QRV field contains the [Robustness Variable] value used by the querier, i.e., the sender of the Query. If the querier's [Robustness Variable] exceeds 7, the maximum value of the QRV field, the QRV is set to zero. Routers adopt the QRV value from the most recently received Query as their own [Robustness Variable] value, unless that most recently received QRV was zero, in which case the receivers use the default [Robustness Variable] value specified in Section 8.1 or a statically configured value.¶
4.1.7. QQIC (Querier's Query Interval Code)
The QQIC field specifies the [Query Interval] used by the querier. The actual interval, called the "Querier's Query Interval (QQI)", is represented in units of seconds and is derived from the QQIC as follows:¶
Multicast routers that are not the current querier adopt the QQI value from the most recently received Query as their own [Query Interval] value, unless that most recently received QQI was zero, in which case the receiving routers use the default [Query Interval] value specified in Section 8.2.¶
4.1.8. Number of Sources (N)
The Number of Sources (N) field specifies how many source addresses
are present in the Query. This number is zero in a General Query or
a Group Specific Query and non-zero in a Group
4.1.9. Source Address [i]
The Source Address [i] fields are a vector of n IP unicast addresses, where n is the value in the Number of Sources (N) field.¶
4.1.10. Additional Data
If the Packet Length field in the IP header of a received Query indicates that there are additional octets of data present, beyond the fields described here, IGMPv3 implementations MUST include those octets in the computation to verify the received IGMP Checksum but MUST otherwise ignore those additional octets. When sending a Query, an IGMPv3 implementation MUST NOT include additional octets beyond the fields described here.¶
4.1.11. Query Variants
There are three variants of the Query Message:¶
4.1.12. IP Destination Addresses for Queries
In IGMPv3, General Queries are sent with an IP destination address of
224.0.0.1, the all-systems multicast address. Group Specific and
Group
4.2. IGMPv3 Membership Report Message
IGMPv3 Membership Reports are sent by IP systems to report (to neighboring routers) the current multicast reception state, or changes in the multicast reception state, of their interfaces. Reports have the following format:¶
where each Group Record has the following internal format:¶
4.2.1. Reserved
The Reserved field is set to zero on transmission and ignored on reception.¶
4.2.2. Checksum
The Checksum field is the 16-bit one's complement of the one's complement sum of the whole IGMP message (the entire IP payload). For computing the checksum, the Checksum field is set to zero. When receiving packets, the checksum MUST be verified before processing a message.¶
4.2.3. Flags
The Flags field is a bitstring managed by the "IGMP Type Numbers" registry defined in [BCP57].¶
4.2.4. Number of Group Records (M)
The Number of Group Records (M) field specifies how many Group Records are present in this Report.¶
4.2.5. Group Record
Each Group Record is a block of fields containing information pertaining to the sender's membership in a single multicast group on the interface from which the Report is sent.¶
4.2.6. Record Type
See Section 4.2.13, below.¶
4.2.7. Aux Data Len
The Aux Data Len field contains the length of the Auxiliary Data field in this Group Record, in units of 32-bit words. It may contain zero, to indicate the absence of any auxiliary data.¶
4.2.8. Number of Sources (N)
The Number of Sources (N) field specifies how many source addresses are present in this Group Record.¶
4.2.9. Multicast Address
The Multicast Address field contains the IP multicast address to which this Group Record pertains.¶
4.2.10. Source Address [i]
The Source Address [i] fields are a vector of n IP unicast addresses, where n is the value in this record's Number of Sources (N) field.¶
4.2.11. Auxiliary Data
The Auxiliary Data field, if present, contains additional information pertaining to this Group Record. The protocol specified in this document, IGMPv3, does not define any auxiliary data. Therefore, implementations of IGMPv3 MUST NOT include any auxiliary data (i.e., MUST set the Aux Data Len field to zero) in any transmitted Group Record and MUST ignore any auxiliary data present in any received Group Record. The semantics and internal encoding of the Auxiliary Data field are to be defined by any future version or extension of IGMP that uses this field.¶
4.2.12. Additional Data
If the Packet Length field in the IP header of a received Report indicates that there are additional octets of data present, beyond the last Group Record, IGMPv3 implementations MUST include those octets in the computation to verify the received IGMP Checksum but MUST otherwise ignore those additional octets. When sending a Report, an IGMPv3 implementation MUST NOT include additional octets beyond the last Group Record.¶
4.2.13. Group Record Types
There are a number of different types of Group Records that may be included in a Report message:¶
If a change of source-list results in both allowing new sources
and blocking old sources, then two Group Records are sent for the
same multicast address, one of type ALLOW
We use the term "State-Change Record" to refer to either a Filter-
Mode-Change Record or a Source
Unrecognized Record Type values MUST be silently ignored.¶
4.2.14. IP Source Addresses for Reports
An IGMP report is sent with a valid unicast IPv4 source address for the destination subnet. The 0.0.0.0 source address may be used by a system that has not yet acquired an IP address. Note that the 0.0.0.0 source address may simultaneously be used by multiple systems on a LAN. Routers MUST accept a report with a source address of 0.0.0.0.¶
4.2.15. IP Destination Addresses for Reports
Version 3 Reports are sent with an IP destination address of 224.0.0.22, to which all IGMPv3-capable multicast routers listen. A system that is operating in v1 or v2 compatibility modes sends v1 or v2 Reports to the multicast group specified in the Group Address field of the Report. In addition, a system MUST accept and process any v1 or v2 Report whose IP Destination Address field contains any of the addresses (unicast or multicast) assigned to the interface on which the Report arrives.¶
4.2.16. Notation for Group Records
In the rest of this document, we use the following notation to describe the contents of a Group Record pertaining to a particular multicast address:¶
where x is either:¶
4.2.17. Membership Report Size
If the set of Group Records required in a report does not fit within the size limit of a single Report message (as determined by the MTU of the network on which it will be sent), the Group Records are sent in as many Report messages as needed to report the entire set.¶
If a single Group Record contains so many source addresses that it
does not fit within the size limit of a single Report message, and if its
Type is not MODE_IS_EXCLUDE or CHANGE
5. Description of the Protocol for Group Members
IGMP is an asymmetric protocol, specifying separate behaviors for group members -- that is, hosts or routers that wish to receive multicast packets -- and multicast routers. This section describes the part of IGMPv3 that applies to all group members. (Note that a multicast router that is also a group member performs both parts of IGMPv3, receiving and responding to its own IGMP message transmissions as well as those of its neighbors. The multicast router part of IGMPv3 is described in Section 6.)¶
A system performs the protocol described in this section over all interfaces on which multicast reception is supported, even if more than one of those interfaces is connected to the same network.¶
For interoperabilit
The all-systems multicast address, 224.0.0.1, is handled as a special case. On all systems -- that is, all hosts and routers including multicast routers -- reception of packets destined to the all-systems multicast address, from all sources, is permanently enabled on all interfaces on which multicast reception is supported. No IGMP messages are ever sent regarding the all-systems multicast address.¶
There are two types of events that trigger IGMPv3 protocol actions on an interface:¶
(Received IGMP messages of types other than Query are silently ignored, except as required for interoperation with earlier versions of IGMP.)¶
The following subsections describe the actions to be taken for each of these two cases. In those descriptions, timer and counter names appear in square brackets. The default values for those timers and counters are specified in Section 8.¶
5.1. Action on Change of Interface State
An invocation of IPMulticast
A change of interface state causes the system to immediately transmit a State-Change Report from that interface. The type and contents of the Group Record(s) in that Report are determined by comparing the filter-mode and source-list for the affected multicast address before and after the change, according to Table 3. If no interface state existed for that multicast address before the change (i.e., the change consisted of creating a new per-interface record), or if no state exists after the change (i.e., the change consisted of deleting a per-interface record), then the "non-existent" state is considered to have a filter-mode of INCLUDE and an empty source-list.¶
If the computed source-list for either an ALLOW or a BLOCK State- Change Record is empty, that record is omitted from the Report message.¶
To cover the possibility of the State-Change Report being missed by one or more multicast routers, it is retransmitted [Robustness Variable] - 1 more times, at intervals chosen at random from the range (0, [Unsolicited Report Interval]).¶
If more changes to the same interface state entry occur before all the retransmissions of the State-Change Report for the first change have been completed, each such additional change triggers the immediate transmission of a State-Change Report.¶
The contents of the new transmitted report are calculated as follows. As was done with the first report, the interface state for the affected group before and after the latest change is compared. The report records expressing the difference are built according to Table 3. However, these records are not transmitted in a message but instead are merged with the contents of the pending report to create the new State-Change report. The rules for merging the difference report resulting from the state change and the pending report are described below.¶
The transmission of the merged State-Change Report terminates retransmissions of the earlier State-Change Reports for the same multicast address, and becomes the first of [Robustness Variable] transmissions of State-Change Reports.¶
Each time a source is included in the difference report calculated above, retransmission state for that source needs to be maintained until [Robustness Variable] State-Change Reports have been sent by the host. This is done in order to ensure that a series of successive state changes do not break the protocol robustness.¶
If the interface reception-state change that triggers the new report
is a filter-mode change, then the next [Robustness Variable] State-Change
Reports will include a Filter
Each time a State-Change Report is transmitted, the contents are
determined as follows.
If the report should contain a Filter
If the computed source-list for either an ALLOW or a BLOCK record is empty, that record is omitted from the State-Change Report.¶
5.2. Action on Reception of a Query
When a system receives a Query, it does not respond immediately.
Instead, it delays its response by a random amount of time, bounded
by the Max Response Time value derived from the Max Resp Code in the
received Query Message. A system may receive a variety of Queries on
different interfaces and of different kinds (e.g., General Queries,
Group Specific Queries, and Group
Before scheduling a response to a Query, the system must first consider previously scheduled pending responses as, in many cases, it can schedule a combined response. Therefore, the system must be able to maintain the following state:¶
When a Query with the Router Alert option arrives on an interface, provided the system has state to report, a delay for a response is randomly selected in the range (0, [Max Response Time]) where Max Response Time is derived from Max Resp Code in the received Query Message. The following rules are then used to determine if a Report needs to be scheduled and the type of Report to schedule. The rules are considered in order and only the first matching rule is applied.¶
When the timer in a pending response record expires, the system transmits, on the associated interface, one or more Report messages carrying one or more Current-State Records (see Section 4.2.13), as follows:¶
If the resulting Current-State Record has an empty set of source addresses, then no response is sent.¶
Finally, after any required Report messages have been generated, the source-lists associated with any reported groups are cleared.¶
6. Description of the Protocol for Multicast Routers
The purpose of IGMP is to enable each multicast router to learn, for each of its directly attached networks, which multicast addresses are of interest to the systems attached to those networks. IGMPv3 adds the capability for a multicast router to also learn which sources are of interest to neighboring systems, for packets sent to any particular multicast address. The information gathered by IGMP is provided to whichever multicast routing protocol is being used by the router, in order to ensure that multicast packets are delivered to all networks where there are interested receivers.¶
This section describes the part of IGMPv3 that is performed by multicast routers. Multicast routers may also themselves become members of multicast groups, and therefore also perform the group member part of IGMPv3, as described in Section 5.¶
A multicast router performs the protocol described in this section over each of its directly attached networks. If a multicast router has more than one interface to the same network, it only needs to operate this protocol over one of those interfaces. On each interface over which this protocol is being run, the router MUST enable reception of multicast address 224.0.0.22 from all sources (and MUST perform the group member part of IGMPv3 for that address on that interface).¶
Multicast routers need to know only that at least one system on an attached network is interested in packets to a particular multicast address from a particular source; a multicast router is not required to keep track of the interests of each individual neighboring system. (However, see Appendix A.2, item 1 for discussion.)¶
IGMPv3 is backward compatible with previous versions of the IGMP protocol. In order to remain backward compatible with older IGMP systems, IGMPv3 multicast routers MUST also implement versions 1 and 2 of the protocol (see Section 7).¶
6.1. Conditions for IGMP Queries
Multicast routers send General Queries periodically to request group membership information from an attached network. These Queries are used to build and refresh the group membership state of systems on attached networks. Systems respond to these Queries by reporting their group membership state (and their desired set of sources) with Current-State Records in IGMPv3 Membership Reports.¶
As a member of a multicast group, a system may express interest in
receiving or not receiving traffic from particular sources. As the
desired reception state of a system changes, it reports these changes
using Filter
To enable all systems on a network to respond to changes in group membership, multicast routers send specific queries. A Group Specific Query is sent to verify there are no systems that desire reception of the specified group or to "rebuild" the desired reception state for a particular group. Group Specific Queries are sent when a router receives a State-Change Record indicating a system is leaving a group.¶
A Group
6.2. IGMP State Maintained by Multicast Routers
Multicast routers implementing IGMPv3 keep state per group per attached network. This group state consists of a filter-mode, a list of sources, and various timers. For each attached network running IGMP, a multicast router records the desired reception state for that network. That state conceptually consists of a set of records of the form:¶
Each source record is of the form:¶
If all sources within a given group are desired, an empty source record list is kept with filter-mode set to EXCLUDE. This means hosts on this network want all sources for this group to be forwarded. This is the IGMPv3 equivalent to an IGMPv1 or IGMPv2 group join.¶
6.2.1. Definition of Router Filter Mode
To reduce internal state, IGMPv3 routers keep a filter-mode per group per attached network. This filter-mode is used to condense the total desired reception state of a group to a minimum set such that all systems' memberships are satisfied. This filter-mode may change in response to the reception of particular types of Group Records or when certain timer conditions occur. In the following sections, we use the term Router Filter Mode to refer to the filter-mode of a particular group within a router. Section 6.4 describes the changes of a Router Filter Mode per Group Record received.¶
Conceptually, when a Group Record is received, the Router Filter Mode for that group is updated to cover all the requested sources using the least amount of state. As a rule, once a Group Record with a filter-mode of EXCLUDE is received, the Router Filter Mode for that group will be EXCLUDE.¶
When a Router Filter Mode for a group is EXCLUDE, the source record list contains two types of sources. The first type is the set that represents conflicts in the desired reception state; this set must be forwarded by some router on the network. The second type is the set of sources that hosts have requested to not be forwarded. Appendix A describes the reasons for keeping two different sets when in EXCLUDE mode.¶
When a Router Filter Mode for a group is INCLUDE, the source record list is the list of sources desired for the group. This is the total desired set of sources for that group. Each source in the source record list must be forwarded by some router on the network.¶
Because a reported Group Record with a filter-mode of EXCLUDE will cause a router to transition its filter-mode for that group to EXCLUDE, a mechanism for transitioning a router's filter-mode back to INCLUDE must exist. If all systems with a Group Record in EXCLUDE filter-mode cease reporting, it is desirable for the Router Filter Mode for that group to transition back to INCLUDE mode. This transition occurs when the Group Timer expires and is explained in detail in Section 6.5.¶
6.2.2. Definition of Group Timers
The Group Timer is only used when a group is in EXCLUDE mode and it represents the time for the filter-mode of the group to expire and switch to INCLUDE mode. We define a Group Timer as a decrementing timer with a lower bound of zero kept per group per attached network. Group timers are updated according to the types of Group Records received.¶
A Group Timer expiring when a Router Filter Mode for the group is EXCLUDE means there are no listeners on the attached network in EXCLUDE mode. At this point, a router will transition to INCLUDE filter-mode. Section 6.5 describes the actions taken when a Group Timer expires while in EXCLUDE mode.¶
Table 6 summarizes the role of the Group Timer. Section 6.4 describes the details of setting the Group Timer per type of Group Record received.¶
6.2.3. Definition of Source Timers
A Source Timer is kept per source record and is a decrementing timer with a lower bound of zero. Source timers are updated according to the type and filter-mode of the Group Record received. Source timers are always updated (for a particular group) whenever the source is present in a received record for that group. Section 6.4 describes the setting of source timers per type of Group Records received.¶
A source record with a running timer with a Router Filter Mode for the group of INCLUDE means that there is currently one or more systems (in INCLUDE filter-mode) that desire to receive that source. If a Source Timer expires with a Router Filter Mode for the group of INCLUDE, the router concludes that traffic from this particular source is no longer desired on the attached network and deletes the associated source record.¶
Source timers are treated differently when a Router Filter Mode for a group is EXCLUDE. If a source record has a running timer with a Router Filter Mode for the group of EXCLUDE, it means that at least one system desires the source. It should therefore be forwarded by a router on the network. Appendix A describes the reasons for keeping state for sources that have been requested to be forwarded while in EXCLUDE state.¶
If a Source Timer expires with a Router Filter Mode for the group of EXCLUDE, the router informs the routing protocol that there is no longer a receiver on the network interested in traffic from this source.¶
When a Router Filter Mode for a group is EXCLUDE, source records are only deleted when the Group Timer expires. Section 6.3 describes the actions that should be taken dependent upon the value of a Source Timer.¶
6.3. IGMPv3 Source-Specific Forwarding Rules
When a multicast router receives a datagram from a source destined to a particular group, a decision has to be made whether to forward the datagram onto an attached network or not. The multicast routing protocol in use is in charge of this decision and should use the IGMPv3 information to ensure that all sources/groups desired on a subnetwork are forwarded to that subnetwork. IGMPv3 information does not override multicast routing information; for example, if the IGMPv3 filter-mode group for G is EXCLUDE, a router may still forward packets for excluded sources to a transit subnet.¶
To summarize, Table 7 describes the forwarding suggestions made by IGMP to the routing protocol for traffic originating from a source destined to a group. It also summarizes the actions taken upon the expiration of a Source Timer based on the Router Filter Mode of the group.¶
6.4. Action on Reception of Reports
SSM-aware routers SHOULD ignore records that contain multicast addresses
in the SSM address range if the record type is MODE_IS_EXCLUDE or
CHANGE
6.4.1. Reception of Current-State Records
When receiving Current-State Records, a router updates both its group and source timers. In some circumstances, the reception of a type of Group Record will cause the Router Filter Mode for that group to change. Table 8 describes the actions, with respect to state and timers that occur to a router's state upon reception of Current- State Records.¶
The following notation is used to describe the updating of source timers. The notation ( A, B ) will be used to represent the total number of sources for a particular group, where¶
Note that there will only be two sets when a router's filter-mode for a group is EXCLUDE. When a router's filter-mode for a group is INCLUDE, a single set is used to describe the set of sources requested to be forwarded (e.g., simply (A)).¶
In Tables 8 and 9, abbreviations are used for several variables
(all of which are described in detail in Section 8). The variable
GMI is an abbreviation for the Group Membership Interval, which is
the time in which group memberships will time out. The variable LMQT
is an abbreviation for the Last Member Query Time, which is the total
time spent after [Last Member Query Count] retransmissions
Within the "Actions" section of the router state tables, we use the notation 'A=J', which means that the set A of source records should have their source timers set to value J. 'Delete A' means that the set A of source records should be deleted. 'Group Timer=J' means that the Group Timer for the group should be set to value J.¶
6.4.2. Reception of Filter-Mode-Change and Source-List-Change Records
When a change in the global state of a group occurs in a system, the
system sends either a Source
Routers must query sources that are requested to be no longer forwarded to a group. When a router queries or receives a query for a specific set of sources, it lowers its source timers for those sources to a small interval of [Last Member Query Time] seconds. If Group Records are received in response to the queries which express interest in receiving traffic from the queried sources, the corresponding timers are updated.¶
Similarly, when a router queries a specific group, it lowers its Group Timer for that group to a small interval of [Last Member Query Time] seconds. If any Group Records expressing EXCLUDE mode interest in the group are received within the interval, the Group Timer for the group is updated and the suggestion to the routing protocol to forward the group stands without any interruption.¶
During a query period (i.e., [Last Member Query Time] seconds), the IGMP component in the router continues to suggest to the routing protocol that it forwards traffic from the groups or sources that it is querying. It is not until after [Last Member Query Time] seconds without receiving a record expressing interest in the queried group or sources that the router may prune the group or sources from the network.¶
Table 9 describes the changes in group state and the
action(s) taken when receiving either Filter
We use the following notation for describing the queries that are
sent. We use the notation 'Q(G)' to describe a Group Specific Query
to G. We use the notation 'Q(G,A)' to describe a Group
In order to maintain protocol robustness, queries sent by actions in Table 9 need to be transmitted [Last Member Query Count] times, once every [Last Member Query Interval].¶
If while scheduling new queries there are already pending queries to be retransmitted for the same group, the new and pending queries have to be merged. In addition, received host reports for a group with pending queries may affect the contents of those queries. Section 6.6.3 describes the process of building and maintaining the state of pending queries.¶
6.5. Switching Router Filter Modes
The Group Timer is used as a mechanism for transitioning the Router Filter Mode from EXCLUDE to INCLUDE.¶
When a Group Timer expires with a Router Filter Mode of EXCLUDE, a router assumes that there are no systems with a filter-mode of EXCLUDE present on the attached network. When a router's filter-mode for a group is EXCLUDE and the Group Timer expires, the Router Filter Mode for the group transitions to INCLUDE.¶
A router uses source records with running source timers as its state for the switch to a filter-mode of INCLUDE. If there are any source records with source timers greater than zero (i.e., requested to be forwarded), a router switches to filter-mode of INCLUDE using those source records. Source records whose timers are zero (from the previous EXCLUDE mode) are deleted.¶
For example, if a router's state for a group is EXCLUDE(X,Y) and the Group Timer expires for that group, the router switches to filter- mode of INCLUDE with state INCLUDE(X).¶
6.6. Action on Reception of Queries
6.6.1. Timer Updates
When a router sends or receives a query with a clear Suppress
Router-Side Processing flag, it must update its timers to reflect the
correct timeout values for the group or sources being queried. Table 10 describes the timer actions when sending or receiving
a Group Specific or Group
When a router sends or receives a query with the S flag set, it will not update its timers.¶
6.6.2. Querier Election
IGMPv3 elects a single querier per subnet using the same Querier
election mechanism as IGMPv2, namely by IP address. When a router
receives a General Query with a lower IP address, it sets the Other
If a router receives an older version General Query, it MUST use the oldest version of IGMP on the network. For a detailed description of compatibility issues between IGMP versions, see Section 7.¶
6.6.3. Building and Sending Specific Queries
6.6.3.1. Building and Sending Group Specific Queries
When a table action "Send Q(G)" is encountered, the Group Timer
must be lowered to LMQT. The router must then immediately send a
Group Specific Query as well as schedule [Last Member Query Count] - 1
query retransmission
When transmitting a Group Specific Query, if the Group Timer is larger than LMQT, the "Suppress Router-Side Processing" bit is set in the Query Message.¶
6.6.3.2. Building and Sending Group-and-Source Specific Queries
When a table action "Send Q(G,X)" is encountered by a querier in Table 9 (Section 6.4.2), the following actions must be performed for each of the sources in X of group G, with the Source Timer larger than LMQT:¶
The router must then immediately send a Group
When building a Group
7. Interoperation With Older Versions of IGMP
IGMPv3 hosts and routers interoperate with hosts and routers that have not yet been upgraded to IGMPv3. This compatibility is maintained by hosts and routers taking appropriate actions depending on the versions of IGMP operating on hosts and routers within a network.¶
7.1. Query Version Distinctions
The IGMP version of a Membership Query Message is determined as follows:¶
Query Messages that do not match any of the above conditions (e.g., a Query of length 10 octets) MUST be silently ignored.¶
7.2. Group Member Behavior
7.2.1. In the Presence of Older Version Queriers
In order to be compatible with older version routers, IGMPv3 hosts
MUST operate in v1 and v2 compatibility modes. IGMPv3
hosts MUST keep state per local interface regarding the compatibility mode of each attached network. A host's compatibility mode is
determined from the Host Compatibility Mode variable, which can be in
one of three states: IGMPv1, IGMPv2, or IGMPv3. This variable is
kept per interface and is dependent on the version of General Queries
received on that interface as well as the Older
In order to switch gracefully between versions of IGMP, hosts keep
both an IGMPv1
The Host Compatibility Mode of an interface changes whenever an older
version query (than the current compatibility mode) is received or when
certain timer conditions occur. When the IGMPv1
The Host Compatibility Mode variable is based on whether an older version General Query was received in the last [Older Version Querier Present Interval] seconds. The Host Compatibility Mode variable value MUST NOT be changed by an older version Group Specific Query. The Host Compatibility Mode is set depending on the following:¶
If a host receives a query that causes its Querier Present timers to be updated and correspondingly its compatibility mode, it should switch compatibility modes immediately.¶
When Host Compatibility Mode is IGMPv3, a host acts using the IGMPv3 protocol on that interface. When Host Compatibility Mode is IGMPv2, a host acts in IGMPv2 compatibility mode, using only the IGMPv2 protocol, on that interface. When Host Compatibility Mode is IGMPv1, a host acts in IGMPv1 compatibility mode, using only the IGMPv1 protocol on that interface.¶
An IGMPv1 router will send General Queries with the Max Resp Code set to 0. This MUST be interpreted as a value of 100 (10 seconds).¶
An IGMPv2 router will send General Queries with the Max Resp Code set to the desired Max Response Time, i.e., the full range of this field is linear and the exponential algorithm described in Section 4.1.1 is not used.¶
Whenever a host changes its compatibility mode, it cancels all its pending response and retransmission timers.¶
An SSM-aware host that receives an IGMPv1 Query, an IGMPv2 General Query, or an IGMPv2 Group Specific Query for a multicast address in the SSM address range SHOULD log an error. It is RECOMMENDED that implementations provide a configuration option to disable use of the Host Compatibility Mode to allow networks to operate only in SSM mode. This configuration option SHOULD be disabled by default.¶
7.2.2. In the Presence of Older Version Group Members
An IGMPv3 host may be placed on a network where there are hosts that have not yet been upgraded to IGMPv3. A host MAY allow its IGMPv3 Membership Record to be suppressed by either an IGMPv1 Membership Report or an IGMPv2 Membership Report. SSM-aware hosts MUST NOT allow its IGMPv3 Membership Record to be suppressed.¶
7.3. Multicast Router Behavior
7.3.1. In the Presence of Older Version Queriers
IGMPv3 routers may be placed on a network where at least one router on the network has not yet been upgraded to IGMPv3. The following requirements apply:¶
7.3.2. In the Presence of Older Version Group Members
IGMPv3 routers may be placed on a network where there are hosts that
have not yet been upgraded to IGMPv3. In order to be compatible with
older version hosts, IGMPv3 routers MUST operate in v1 and
v2 compatibility modes. IGMPv3 routers keep a compatibility
mode per Group Record. A group's compatibility mode is determined
from the Group Compatibility Mode variable, which can be in one of
three states: IGMPv1, IGMPv2, or IGMPv3. This variable is kept per
Group Record and is dependent on the version of Membership Reports
received for that group as well as the Older
In order to switch gracefully between versions of IGMP, routers keep
an IGMPv1
The Group Compatibility Mode of a Group Record changes whenever an
older version report (than the current compatibility mode) is received
or when certain timer conditions occur. When the IGMPv1
The Group Compatibility Mode variable is based on whether an older version report was received in the last [Older Version Host Present Interval] seconds. The Group Compatibility Mode is set depending on the following:¶
If a router receives a report that causes its older Host Present timers to be updated and correspondingly its compatibility mode, it SHOULD switch compatibility modes immediately.¶
When Group Compatibility Mode is IGMPv3, a router acts using the IGMPv3 protocol for that group.¶
When Group Compatibility Mode is IGMPv2, a router internally translates the following IGMPv2 messages for that group to their IGMPv3 equivalents:¶
IGMPv3 BLOCK messages are ignored, as are source-lists in TO_EX() messages (i.e., any TO_EX() message is treated as TO_EX( {} )).¶
When Group Compatibility Mode is IGMPv1, a router internally translates the following IGMPv1 and IGMPv2 messages for that group to their IGMPv3 equivalents:¶
In addition to ignoring IGMPv3 BLOCK messages and source-lists in TO_EX() messages as in IGMPv2 Group Compatibility Mode, IGMPv2 Leave messages and IGMPv3 TO_IN() messages are also ignored.¶
8. List of Timers, Counters, and Their Default Values
Most timers and counters are configurable. If non-default settings are used, they MUST be consistent among all systems on a single link. Note that parentheses are used to group expressions to make the algebra clear.¶
8.1. Robustness Variable
The Robustness Variable allows tuning for the expected packet loss on a network. If a network is expected to be lossy, the Robustness Variable may be increased. IGMP is robust to (Robustness Variable - 1) packet losses. The Robustness Variable MUST NOT be zero and SHOULD NOT be one. Default: 2.¶
8.2. Query Interval
The Query Interval is the interval between General Queries sent by the Querier. Default: 125 seconds.¶
By varying the Query Interval, an administrator may tune the number of IGMP messages on the network; larger values cause IGMP Queries to be sent less often.¶
8.3. Query Response Interval
The Query Response Interval uses the Max Response Time to calculate the Max Resp Code that is inserted into the periodic General Queries. Default: 100 (10 seconds).¶
By varying the [Query Response Interval], an administrator may tune the burstiness of IGMP messages on the network; larger values make the traffic less bursty, as host responses are spread out over a larger interval. The number of seconds represented by the [Query Response Interval] must be less than the [Query Interval].¶
8.4. Group Membership Interval
The Group Membership Interval is the amount of time that must pass before a multicast router decides there are no more members of a group or a particular source on a network.¶
This value MUST be ([Robustness Variable] times [Query Interval]) plus (2 * [Query Response Interval]).¶
8.5. Other Querier Present Interval
The Other Querier Present Interval is the length of time that must pass before a multicast router decides that there is no longer another multicast router that should be the querier. This value MUST be ([Robustness Variable] times [Query Interval]) plus (0.5 times [Query Response Interval]).¶
8.6. Startup Query Interval
The Startup Query Interval is the interval between General Queries sent by a Querier on startup. Default: 1/4 times [Query Interval].¶
8.7. Startup Query Count
The Startup Query Count is the number of Queries sent out on startup, separated by the Startup Query Interval. Default: [Robustness Variable].¶
8.8. Last Member Query Interval
The Last Member Query Interval (LMQI) is the Max Response Time used to
calculate the Max Resp Code that is inserted into Group Specific Queries sent
in response to Leave Group messages. It is also the Max Response
Time used in calculating the Max Resp Code for Group
Note that for values of LMQI greater than 12.8 seconds, a limited set of values can be represented, corresponding to sequential values of Max Resp Code. When converting a configured time to a Max Resp Code value, it is recommended to use the exact value, if possible, or the next lower value if the requested value is not exactly representable.¶
This value may be tuned to modify the leave latency of the network. A reduced value results in reduced time to detect the loss of the last member of a group or source.¶
8.9. Last Member Query Count
The Last Member Query Count is the number of Group Specific Queries
sent before the router assumes there are no local members. The Last
Member Query Count is also the number of Group
8.10. Last Member Query Time
The Last Member Query Time is the time value represented by [Last Member Query Interval] times [Last Member Query Count]. It is not a tunable value, but it may be tuned by changing its components.¶
8.11. Unsolicited Report Interval
The Unsolicited Report Interval is the time between repetitions of a host's initial report of membership in a group. Default: 1 second.¶
8.12. Older Version Querier Present Interval
The Older Version Querier Present Interval is the timeout for transitioning
a host back to IGMPv3 mode once an older version query is received.
When an older version query is received, hosts set their Older
It is RECOMMENDED to use the default values for calculating the interval value as hosts do not know the values configured on the querying routers. This value SHOULD be [Robustness Variable] times [Query Interval] plus (10 times the Max Response Time in the last received Query Message).¶
8.13. Older Host Present Interval
The Older Host Present Interval is the timeout for transitioning a
group back to IGMPv3 mode once an older version report is sent for
that group. When an older version report is received, routers set
their Older
This value MUST be ([Robustness Variable] times [Query Interval]) plus [Query Response Interval].¶
8.14. Configuring Timers
This section is meant to provide advice to network administrators on how to tune these settings to their network. Ambitious router implementations might tune these settings dynamically based upon changing characteristics of the network.¶
8.14.1. Robustness Variable
The Robustness Variable tunes IGMP to expected losses on a link. IGMPv3 is robust to ([Robustness Variable] - 1) packet losses, e.g., if the Robustness Variable is set to the default value of 2, IGMPv3 is robust to a single packet loss but may operate imperfectly if more losses occur. On lossy subnetworks, the Robustness Variable should be increased to allow for the expected level of packet loss. However, increasing the Robustness Variable increases the leave latency of the subnetwork. (The leave latency is the time between when the last member stops listening to a source or group and when the traffic stops flowing.)¶
8.14.2. Query Interval
The overall level of periodic IGMP traffic is inversely proportional to the Query Interval. A longer Query Interval results in a lower overall level of IGMP traffic. The Query Interval MUST be equal to or longer than the Max Response Time inserted in General Query Messages.¶
8.14.3. Max Response Time
The burstiness of IGMP traffic is inversely proportional to the Max
Response Time. A longer Max Response Time will spread Report
messages over a longer interval. However, a longer Max Response Time
in Group Specific and Source
A router is not required to calculate these populations or tune the Max Response Time dynamically; these are simply guidelines.¶
9. Security Considerations
IGMP provides any form of confidentiality
We consider the ramifications of a forged message of each type and describe the usage of an IPsec Authentication Header (AH) to authenticate messages if desired.¶
9.1. Query Message
A forged Query Message from a machine with a lower IP address than
the current Querier will cause Querier duties to be assigned to the
forger. If the forger then sends no more Query Messages, other
routers' Other
A Denial
To protect against such a DoS attack, a host stack implementation
could restrict the number of Group
Forged Query Messages from the local network can be easily traced. There are three measures necessary to defend against externally forged Queries:¶
9.2. Current-State Report Messages
A forged Report message may cause multicast routers to think there are members of a group on a network when there are not. Forged Report messages from the local network are meaningless, as joining a group on a host is generally an unprivileged operation, so a local user may trivially gain the same result without forging any messages. Forged Report messages from external sources are more troublesome; there are two defenses against externally forged Reports:¶
A forged v1 Report message may put a router into "v1 members present" state for a particular group, meaning that the router will ignore Leave messages. This can cause traffic to flow to groups with no members for up to [Group Membership Interval]. This can be solved by providing routers with a configuration switch to ignore v1 messages completely. This breaks automatic compatibility with v1 hosts, so it should only be used in situations where "fast leave" is critical.¶
A forged v2 Report message may put a router into "v2 members present" state for a particular group, meaning that the router will ignore IGMPv3 source-specific state messages. This can cause traffic to flow from unwanted sources for up to [Group Membership Interval]. This can be solved by providing routers with a configuration switch to ignore v2 messages completely. This breaks automatic compatibility with v2 hosts, so it should only be used in situations where source include and exclude is critical.¶
9.3. State-Change Report Messages
A forged State-Change Report message will cause the Querier to send
out Group Specific or Source
9.4. IPsec Usage
In addition to these measures, IPsec in AH mode [RFC4302] may be used to protect against remote attacks by ensuring that IGMPv3 messages came from a system on the LAN (or, more specifically, from a system with the proper key). When using IPsec, the messages sent to 224.0.0.1 and 224.0.0.22 should be authenticated using AH. When keying, there are two possibilities:¶
This solution only directly applies to Query and Leave messages in IGMPv1 and IGMPv2 as Reports are sent to the group being reported, and it is not feasible to agree on a key for host-to-router communication for arbitrary multicast groups.¶
10. IANA Considerations
All IGMP types described in this document are managed via [BCP57].¶
IANA has replaced each reference to [RFC3376] with a reference to this document in both the "IGMP Type Numbers" and "IPFIX Information Elements" registries.¶
11. References
11.1. Normative References
- [BCP57]
-
Best Current Practice 57, <https://
www >..rfc -editor .org /info /bcp57
At the time of writing, this BCP comprises the following:Haberman, B., Ed., "IANA Considerations for Internet Group Management Protocols", BCP 57, RFC 9778, DOI 10.17487 , , <https:///RFC9778 www >..rfc -editor .org /info /rfc9778 - [RFC1112]
-
Deering, S., "Host extensions for IP multicasting", STD 5, RFC 1112, DOI 10
.17487 , , <https:///RFC1112 www >..rfc -editor .org /info /rfc1112 - [RFC2113]
-
Katz, D., "IP Router Alert Option", RFC 2113, DOI 10
.17487 , , <https:///RFC2113 www >..rfc -editor .org /info /rfc2113 - [RFC2119]
-
Bradner, S., "Key words for use in RFCs to Indicate Requirement Levels", BCP 14, RFC 2119, DOI 10
.17487 , , <https:///RFC2119 www >..rfc -editor .org /info /rfc2119 - [RFC2236]
-
Fenner, W., "Internet Group Management Protocol, Version 2", RFC 2236, DOI 10
.17487 , , <https:///RFC2236 www >..rfc -editor .org /info /rfc2236 - [RFC4302]
-
Kent, S., "IP Authentication Header", RFC 4302, DOI 10
.17487 , , <https:///RFC4302 www >..rfc -editor .org /info /rfc4302 - [RFC4604]
-
Holbrook, H., Cain, B., and B. Haberman, "Using Internet Group Management Protocol Version 3 (IGMPv3) and Multicast Listener Discovery Protocol Version 2 (MLDv2) for Source-Specific Multicast", RFC 4604, DOI 10
.17487 , , <https:///RFC4604 www >..rfc -editor .org /info /rfc4604 - [RFC4607]
-
Holbrook, H. and B. Cain, "Source-Specific Multicast for IP", RFC 4607, DOI 10
.17487 , , <https:///RFC4607 www >..rfc -editor .org /info /rfc4607 - [RFC8174]
-
Leiba, B., "Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words", BCP 14, RFC 8174, DOI 10
.17487 , , <https:///RFC8174 www >..rfc -editor .org /info /rfc8174
11.2. Informative References
- [RFC1071]
-
Braden, R., Borman, D., and C. Partridge, "Computing the Internet checksum", RFC 1071, DOI 10
.17487 , , <https:///RFC1071 www >..rfc -editor .org /info /rfc1071 - [RFC3376]
-
Cain, B., Deering, S., Kouvelas, I., Fenner, B., and A. Thyagarajan, "Internet Group Management Protocol, Version 3", RFC 3376, DOI 10
.17487 , , <https:///RFC3376 www >..rfc -editor .org /info /rfc3376 - [RFC3569]
-
Bhattacharyya, S., Ed., "An Overview of Source-Specific Multicast (SSM)", RFC 3569, DOI 10
.17487 , , <https:///RFC3569 www >..rfc -editor .org /info /rfc3569 - [RFC3678]
-
Thaler, D., Fenner, B., and B. Quinn, "Socket Interface Extensions for Multicast Source Filters", RFC 3678, DOI 10
.17487 , , <https:///RFC3678 www >..rfc -editor .org /info /rfc3678
Appendix A. Design Rationale
A.1. The Need for State-Change Messages
IGMPv3 specifies two types of Membership Reports: Current-State and State-Change. This section describes the rationale for needing both types of Reports.¶
Routers need to distinguish Membership Reports that were sent in response to Queries from those that were sent as a result of a change in interface state. Membership reports that are sent in response to Membership Queries are used mainly to refresh the existing state at the router; they typically do not cause transitions in state at the router. Membership Reports that are sent in response to changes in interface state require the router to take some action in response to the received report (see Section 6.4).¶
The inability to distinguish between the two types of reports would force a router to treat all Membership Reports as potential changes in state, and it could result in increased processing at the router as well as an increase in IGMP traffic on the network.¶
A.2. Host Suppression
In IGMPv1 and IGMPv2, a host would cancel sending pending Membership Reports if a similar report was observed from another member on the network. In IGMPv3, this suppression of host Membership Reports has been removed. The following points explain the reasons behind this decision.¶
A.3. Switching Router Filter Modes from EXCLUDE to INCLUDE
If hosts exist in both EXCLUDE and INCLUDE modes for a single multicast group in a network, the router must be in EXCLUDE mode as well (see Section 6.2.1). In EXCLUDE mode, a router forwards traffic from all sources unless that source exists in the exclusion source-list. If all hosts in EXCLUDE mode cease to exist, it would be desirable for the router to switch back to INCLUDE mode seamlessly without interrupting the flow of traffic to existing receivers.¶
One of the ways to accomplish this is for routers to keep track of all sources desired by hosts that are in INCLUDE mode even though the router itself is in EXCLUDE mode. If the Group Timer now expires in EXCLUDE mode, it implies that there are no hosts in EXCLUDE mode on the network (otherwise, a Membership Report from that host would have refreshed the Group Timer). The router can then switch to INCLUDE mode seamlessly with the list of sources currently being forwarded in its source-list.¶
Appendix B. Summary of Changes from IGMPv2
While the main additional feature of IGMPv3 is the addition of source filtering, the following is a summary of other changes from [RFC2236].¶
Appendix C. Summary of Changes from RFC 3376
The following is a list of changes made since [RFC3376] was published.¶
Acknowledgments
We would like to thank Ran Atkinson, Luis Costa, Toerless Eckert, Dino Farinacci, Serge Fdida, Wilbert de Graaf, Sumit Gupta, Mark Handley, Bob Quinn, Michael Speer, Dave Thaler, and Rolland Vida for comments and suggestions on [RFC3376].¶
Stig Venaas, Hitoshi Asaeda, and Mike McBride have provided valuable feedback on this specification, and we thank them for their input.¶
Contributors
Brad Cain, Steve Deering, Isidor Kouvelas, Bill Fenner, and Ajit Thyagarajan are the authors of [RFC3376], which forms the bulk of the content contained herein.¶
Anuj Budhiraja, Toerless Eckert, Olufemi Komolafe, and Tim Winters have contributed valuable content to this specification.¶