Questions
Answer the following questions to test your knowledge of this chapter:
- Ansible brings all the benefits of automation from infrastructure management to the world of network device management.
a) True
b) False
- When working with a new network device type for the first time, you should always do what?
a) Perform a factory reset of the device.
b) Consult the Ansible documentation to learn about which collections and modules support it, and what the requirements for those might be.
c) Use the
ansible.netcommon.network_cli
connection protocol.d) Use the local connection protocol.
- Which execution type is described by Ansible as running its automation code on the remote host directly?
a) Remote execution
b) Local execution
- Which execution type is described by Ansible as running its automation code on the control node, and then sending the required data over a pre-selected channel (for example, SSH or an HTTP-based API)?
a) Remote execution
b) Local execution
- Which connection...