cisco.ucs.ucs_ntp_server 模块 – 在 Cisco UCS Manager 上配置 NTP 服务器

注意

此模块是 cisco.ucs 集合 (版本 1.14.0) 的一部分。

如果您正在使用 ansible 包,您可能已经安装了这个集合。它不包含在 ansible-core 中。要检查它是否已安装,请运行 ansible-galaxy collection list

要安装它,请使用:ansible-galaxy collection install cisco.ucs。您需要其他要求才能使用此模块,请参阅 要求 了解详情。

要在 playbook 中使用它,请指定:cisco.ucs.ucs_ntp_server

概要

  • 在 Cisco UCS Manager 上配置 NTP 服务器。

要求

执行此模块的主机需要以下要求。

  • ucsmsdk

参数

参数

注释

描述

别名:descr

字符串

NTP 服务器的用户定义描述。

最多输入 256 个字符。

您可以使用任何字符或空格,但以下字符除外

`(重音符)、\(反斜杠)、^(脱字符号)、” (双引号)、=(等号)、>(大于号)、<(小于号)或 ‘(单引号)。

hostname

字符串 / 必需

Cisco UCS Manager 的 IP 地址或主机名。

模块可以与 UCS 平台模拟器 https://cs.co/ucspe 一起使用

ntp_server

别名:name

字符串

NTP 服务器 IP 地址或主机名。

最多输入 63 个构成有效主机名的字符。

输入有效的 IPV4 地址。

password

字符串 / 必需

用于 Cisco UCS Manager 身份验证的密码。

port

整数

连接期间要使用的端口号(默认情况下,https 连接使用 443,http 连接使用 80)。

proxy

字符串

如果 use_proxy 为 no,则指定用于连接的代理。例如,‘http://proxy.xy.z:8080

state

字符串

如果为 absent,则将删除 NTP 服务器。

如果为 present,则将添加或更新 NTP 服务器。

选项

  • "absent"

  • "present" ← (默认)

use_proxy

布尔值

如果为 no,则不会使用系统环境变量定义的代理。

选项

  • false

  • true ← (默认)

use_ssl

布尔值

如果为 no,则将使用 HTTP 连接而不是默认的 HTTPS 连接。

选项

  • false

  • true ← (默认)

username

字符串

用于 Cisco UCS Manager 身份验证的用户名。

默认值: "admin"

示例

- name: Configure NTP server
  cisco.ucs.ucs_ntp_server:
    hostname: 172.16.143.150
    username: admin
    password: password
    ntp_server: 10.10.10.10
    description: Internal NTP Server by IP address
    state: present

- name: Configure NTP server
  cisco.ucs.ucs_ntp_server:
    hostname: 172.16.143.150
    username: admin
    password: password
    ntp_server: pool.ntp.org
    description: External NTP Server by hostname
    state: present

- name: Remove NTP server
  cisco.ucs.ucs_ntp_server:
    hostname: 172.16.143.150
    username: admin
    password: password
    ntp_server: 10.10.10.10
    state: absent

- name: Remove NTP server
  cisco.ucs.ucs_ntp_server:
    hostname: 172.16.143.150
    username: admin
    password: password
    ntp_server: pool.ntp.org
    state: absent

作者

  • David Soper (@dsoper2)

  • John McDonough (@movinalot)

  • CiscoUcs (@CiscoUcs)