Q.1.
Command to check the playbook for syntax errors, but it does not execute it.
Q.2.
Which python module does Ansible use to connect via ssh with all its nodes?
Q.3.
The pricing for Red Hat Ansible Automation Platform is based on the number of nodes (systems, hosts, instances, VMs, containers or devices) that it is managing. The minimum number of nodes for a subscription is
Q.4.
Which ones are alternatives to Ansible?(choose all that apply)
Q.5.
Packer is a tool that builds
Q.6.
Ansible has a paid license option
Q.7.
What extension do the template files in Ansible have?
Q.8.
How do you use variables in ansible?
Q.9.
In which programming language is Ansible based on?
Q.10.
This is a usecase for ansible Facts
Q.11.
What does Notify do when available in ansible tasks?
Q.12.
It collect facts from remote devices running Cisco IOS
Q.13.
A YAML file containing one or more plays.
Q.14.
What's the Ansible Playbook execution order?
Q.15.
Which of following commands will check ansible inventory and group variable
Q.16.
Which of the following ad hoc commands will backup the device configuration of ios
Q.17.
Tests reachability using ping from Cisco IOS network devices
Q.18.
An ______ command is a single, manually-run Ansible task that you want to perform quickly
Q.19.
We have a playbook /playbook/copy.yml, which hosts would this playbook run against.copy.yml - hosts: webtasks:- name: copy test.txt filesrc: test.txtdest: /tmp/test.txtinventory file:[web]web1 10.0.0.1web2 10.0.0.2
Q.20.
We can have multiple plays in a single playbook