Refer to the exhibit.
Which key value pair from the ios_ntp Ansible module creates an NTP server peer?
state: present
state: True
config: present
config: True
ios_ntp : Manages core NTP configuration
state : Manage the state of the resource
Choices : present | absent
Example:
# Set new NTP server and source interface
- ios_ntp:
server: 10.0.255.10
source_int: Loopback0
logging: false
https://docs.ansible.com/ansible/latest/modules/ios_ntp_module.html
Submit