Difficulty: Easy
Correct Answer: Router1(config)# ipv6 router eigrp 10; Router1(config-rtr)# no shutdown; Router1(config-if)# ipv6 eigrp 10
Explanation:
Introduction / Context:
Enhanced Interior Gateway Routing Protocol for IPv6 (EIGRPv6) uses a process-based configuration model. Unlike classic EIGRP for IPv4, EIGRPv6 requires you to create and start an IPv6 EIGRP process and then enable that process on participating interfaces. Understanding the exact sequence and context of commands is essential to bring adjacencies up and advertise prefixes correctly.
Given Data / Assumptions:
Concept / Approach:
EIGRPv6 requires three parts: (1) create the EIGRP for IPv6 process under global configuration, (2) ensure the EIGRPv6 process is administratively enabled with no shutdown (this is mandatory for EIGRPv6), and (3) activate EIGRPv6 on desired interfaces using ipv6 eigrp
Step-by-Step Solution:
Enter global config and create the process: ipv6 router eigrp 10.Inside the EIGRPv6 process context, issue: no shutdown.On each participating interface, enable the process: ipv6 eigrp 10.Verify neighbors with show ipv6 eigrp neighbors and routes with show ipv6 route eigrp.
Verification / Alternative check:
Use show running-config to confirm the router configuration blocks. The presence of the process with no shutdown and interface-level activation indicates a correct setup.
Why Other Options Are Wrong:
Common Pitfalls:
Forgetting the no shutdown inside the EIGRPv6 process or assuming IPv4-style network statements apply to IPv6. Both will prevent adjacency formation.
Final Answer:
Router1(config)# ipv6 router eigrp 10; Router1(config-rtr)# no shutdown; Router1(config-if)# ipv6 eigrp 10
Discussion & Comments