Difficulty: Easy
Correct Answer: FF02::A
Explanation:
Introduction / Context:
IPv6 routing protocols use specific link-local multicast groups to discover neighbors and exchange control information efficiently on a segment. Knowing the correct multicast addresses helps engineers interpret packet captures and verify control-plane health using tools like debug and show commands.
Given Data / Assumptions:
Concept / Approach:
EIGRPv6 uses the all-EIGRP-routers IPv6 multicast address FF02::A for neighbor discovery and control updates. Other common addresses include FF02::5 (all OSPF routers), FF02::6 (all OSPF designated routers), and FF02::9 (RIPng). FF02::1 is the all-nodes address and is not used for routing protocol control traffic.
Step-by-Step Solution:
Identify the protocol in question: EIGRP for IPv6.Recall the standard control multicast address mapping.Select FF02::A as the EIGRPv6 group for neighbor and update traffic.
Verification / Alternative check:
Packet captures on an EIGRPv6-enabled interface show EIGRP packets to destination FF02::A. show ipv6 eigrp interfaces can also confirm active operation on links using that multicast address.
Why Other Options Are Wrong:
Common Pitfalls:
Mixing OSPFv3 and EIGRPv6 groups or assuming the same values as in IPv4 where multicast addresses differ.
Final Answer:
FF02::A
Discussion & Comments