200-901 • Practice Test 16
Free 200-901 practice test — 15 questions with explanations. Set 16. No signup required.
Refer to the exhibit. An Ansible playbook is intended to set the description on GigabitEthernet0/1. However, the playbook fails because the device does not have that interface. What is the most likely reason?
Refer to the exhibit.
---
- name: Configure interface description
hosts: cisco_devices
gather_facts: no
tasks:
- name: Set description
ios_config:
lines:
- description Configured by Ansible
parents: interface GigabitEthernet0/1