wti.remote.cpm_dnsservices_config 模块 – 在 WTI OOB 和 PDU 设备中设置网络 DNS 服务参数

注意

此模块是 wti.remote 集合 (版本 1.0.10) 的一部分。

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

要安装它,请使用: ansible-galaxy collection install wti.remote

要在剧本中使用它,请指定: wti.remote.cpm_dnsservices_config

wti.remote 2.10.0 中的新增功能

概要

  • 在 WTI OOB 和 PDU 设备中设置网络 DNS 服务参数

参数

参数

注释

cpm_password

字符串 / 必需

这是发送模块到 WTI 设备的密码。如果

cpm_username 为空,则此参数被认为是用户令牌。

cpm_url

字符串 / 必需

这是发送模块到 WTI 设备的 URL。

cpm_username

字符串

这是发送模块到 WTI 设备的用户名。如果此值

为空,则 cpm_password 被认为是用户令牌。

dnsservers

列表 / 元素=字符串 / 必需

发送到 WTI 设备的实际 DNS 服务器。

index

列表 / 元素=整数

应插入 DNS 服务器的索引。如果未定义,条目将从位置一 开始。

use_https

布尔值

指定使用 https 连接还是 http 连接。

选项

  • false

  • true ← (默认)

use_proxy

布尔值

控制查找在存在时是否会观察 HTTP 代理环境变量的标志。

选项

  • false ← (默认)

  • true

validate_certs

布尔值

如果为 false,则不会验证 SSL 证书。这只能在使用自签名证书的个人控制站点上使用。

选项

  • false

  • true ← (默认)

备注

注意

  • 使用 groups/cpmmodule_defaults 中设置 CPM 模块之间使用的通用选项。

示例

# Set Network DNS Services Parameters
- name: Set the an DNS Services Parameter for a WTI device
  cpm_dnsservices_config:
    cpm_url: "nonexist.wti.com"
    cpm_username: "super"
    cpm_password: "super"
    use_https: true
    validate_certs: false
    dnsservers: "8.8.8.8"

# Set Network DNS Services Parameters using a User Token
- name: Set the an DNS Services Parameter for a WTI device
  cpm_dnsservices_config:
    cpm_url: "nonexist.wti.com"
    cpm_username: ""
    cpm_password: "randomusertokenfromthewtidevice"
    use_https: true
    validate_certs: false
    dnsservers: "8.8.4.4"

# Sets multiple Network DNS Services Parameters
- name: Set the DNS Services Parameters a WTI device
  cpm_dnsservices_config:
    cpm_url: "nonexist.wti.com"
    cpm_username: "super"
    cpm_password: "super"
    use_https: true
    validate_certs: false
    index:
      - 1
      - 2
    dnsservers:
      - "8.8.8.8"
      - "8.8.4.4"

返回值

公共返回值已在此处记录,以下是此模块特有的字段

描述

data

复杂类型

发送的命令返回的输出 JSON

返回: 始终

dnsservices

字典

模块执行后 WTI 设备的接口信息的当前键值对。

返回: 始终

示例: {"servers": [{"dnsserver1": [{"ip": "166.216.138.41"}], "dnsserver2": [{"ip": "166.216.138.42"}], "dnsserver3": [{"ip": "8.8.8.8"}], "dnsserver4": [{"ip": ""}]}]}

作者

  • Western Telematic Inc. (@wtinetworkgear)