350-901 · Question #51
350-901 Question #51: Real Exam Question with Answer & Explanation
Sign in or unlock 350-901 to reveal the answer and full explanation for question #51. The question stem and answer options stay visible for context.
Question
Refer to the exhibit. As part of the Ansible playbook workflow, several new interfaces are being configured using the netconf_config module. The task references the interface variables that are unique per device. ```yaml - name: Configure Interfaces with_items: "{{interfaces}}" netconf_config: xml_from_file: true xml: <config> <interfaces xmlns="urn:ietf:params:xml:ns:yang:ietf-interfaces"> <interface> <name>{{item.interface_type}}{{item.interface_id}}</name> <description>{{item.description}}</description> <type xmlns:ianaift="urn:ietf:params:xml:ns:yang:iana-if-type">ianaift:ethernetCsmacd</type> <enabled>true</enabled> <ipv4 xmlns="urn:ietf:params:xml:ns:yang:ietf-ip"> <address> <ip>{{item.ip_address}}</ip> <mask>{{item.subnet_mask}}</mask> </address> </ipv4> </interface> </interfaces> </config> ``` In which directory is the YAML file with these variables found?
Options
- Ahost_vars directory
- Bhome directory
- Cgroup_vars directory
- Dcurrent working directory
Unlock 350-901 to see the answer
You've previewed enough free 350-901 questions. Unlock 350-901 for full answers, explanations, the timed quiz mode, progress tracking, and the master PDF. Question stem and options stay visible so you can still see what's on the exam.