Difficulty: Easy
Correct Answer: Router1(config-if)# ipv6 rip CURIOS enable
Explanation:
Introduction / Context:
RIP next generation (RIPng) is the IPv6 version of RIP. On Cisco IOS, RIPng follows a two-part configuration: create the RIPng process in global configuration and then enable that process on each participating interface. This is different from IPv4 RIP, which typically uses network statements under the routing process to match and activate interfaces automatically.
Given Data / Assumptions:
Concept / Approach:
For RIPng, enabling the protocol on an interface requires the form ipv6 rip
Step-by-Step Solution:
Create RIPng process: ipv6 router rip CURIOS (already done in the premise).On the desired interface, issue: ipv6 rip CURIOS enable.Verify with show ipv6 rip and show ipv6 protocols to ensure the interface is active in the process.
Verification / Alternative check:
Packet capture on the interface will show RIPng updates to FF02::9 once the interface command is present.
Why Other Options Are Wrong:
Common Pitfalls:
Forgetting that RIPng is enabled per interface and using IPv4-style network statements, which will not work. Also, placing ipv6 router rip under an interface is a mode error.
Final Answer:
Router1(config-if)# ipv6 rip CURIOS enable
Discussion & Comments