正解:A
The Ansible playbook in the exhibit is designed to automate the configuration of HSRP (Hot Standby Router Protocol) on a Cisco Nexus switch listed in the nxos_rtr inventory group. Here's what the playbook does:
* Hosts: The playbook is targeting nxos_rtr hosts.
* Task: The task uses the nxos_hsrp module to configure HSRP.
* Parameters: Various parameters such as group, VIP, priority, interface, authentication, and version are set for HSRP configuration.
* Delegation: The configuration is delegated to the srv-1a inventory host, but it is still targeting the nxos_rtr for the actual HSRP configuration.
Therefore, the playbook is enabling HSRP on the nxos_rtr inventory host.
References:
* Cisco DevNet Associate Certification Guide
* Ansible Documentation for nxos_hsrp Module