- Docs »
- mellanox.onyx.onyx_ntp – Manage NTP general configurations and ntp keys configurations on Mellanox ONYX network devices
-
You are reading an older version of the Ansible documentation. Use the version selection to the left if you want the latest stable released version.
mellanox.onyx.onyx_ntp – Manage NTP general configurations and ntp keys configurations on Mellanox ONYX network devices
Note
This plugin is part of the mellanox.onyx collection (version 1.0.0).
To install it use: ansible-galaxy collection install mellanox.onyx
.
To use it in a playbook, specify: mellanox.onyx.onyx_ntp
.
New in version 0.2.0: of mellanox.onyx
Parameter |
Choices/Defaults |
Comments |
authenticate_state
string
|
Choices:
- enabled
- disabled
|
State of the NTP authentication configuration.
|
ntp_authentication_keys
list
/ elements=string
|
|
List of ntp authentication keys
|
|
auth_key_encrypt_type
string
/ required
|
|
encryption type used to configure ntp authentication key.
|
|
auth_key_id
integer
/ required
|
|
Configures ntp key-id, range 1-65534
|
|
auth_key_password
string
/ required
|
|
password used for ntp authentication key.
|
|
auth_key_state
string
|
|
Used to decide if you want to delete given ntp key or not
|
state
string
|
Choices:
- enabled
- disabled
|
State of the NTP configuration.
|
trusted_keys
list
/ elements=string
|
|
List of ntp trusted keys
|
- name: Configure NTP
onyx_ntp:
state: enabled
authenticate_state: enabled
ntp_authentication_keys:
- auth_key_id: 1
auth_key_encrypt_type: md5
auth_key_password: 12345
auth_key_state: absent
trusted_keys: 1,2,3
Common return values are documented here, the following are the fields unique to this module:
Key |
Returned |
Description |
commands
list
/ elements=string
|
always. |
The list of configuration mode commands to send to the device
Sample:
['ntp enable', 'ntp disable', 'ntp authenticate', 'no ntp authenticate', 'ntp authentication-key 1 md5 12345', 'no ntp authentication-key 1', 'ntp trusted-key 1,2,3']
|