Difficulty: Easy
Correct Answer: FF02::9
Explanation:
Introduction / Context:
Routing protocols in IPv6 rely on specific link-local multicast groups to confine control-plane exchanges to directly attached peers. Recognizing the multicast group for a given protocol allows quick validation with packet captures and simplifies troubleshooting adjacency problems.
Given Data / Assumptions:
Concept / Approach:
RIPng uses the link-local multicast address FF02::9 to send routing updates to all RIP-enabled routers on the local link. Other common control groups are FF02::A for EIGRPv6 and FF02::5/FF02::6 for OSPFv3. Using link-local scope prevents unnecessary propagation beyond the local network segment.
Step-by-Step Solution:
Identify the protocol: RIPng.Recall the IPv6 multicast mapping: RIPng → FF02::9.Choose FF02::9 as the correct answer.
Verification / Alternative check:
Sniff traffic on an interface with RIPng enabled and you will observe UDP port 521 packets destined to FF02::9.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing RIPng with OSPFv3 multicast groups and forgetting that IPv6 uses different addresses than IPv4 multicast control groups.
Final Answer:
FF02::9
Discussion & Comments