wti.remote.cpm_web_config 模块 – 设置 WTI OOB 和 PDU 设备中的网络 WEB 参数

注意

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

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

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

要在 playbook 中使用它,请指定: wti.remote.cpm_web_config

wti.remote 2.10.0 中的新功能

概要

  • 设置 WTI OOB 和 PDU 设备中的网络 WEB 参数

参数

参数

注释

cpm_password

字符串 / 必需

这是 WTI 设备的密码,用于发送模块。 如果

cpm_username 为空,则此参数被假定为用户令牌。

cpm_url

字符串 / 必需

这是 WTI 设备的 URL,用于发送模块。

cpm_username

字符串

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

为空,则 cpm_password 被假定为用户令牌。

harden

整数

WEB 设备将响应的安全级别:0 = 关闭,1 = 中等,2 = 高。

选择

  • 0

  • 1

  • 2

hsts

整数

是否为 WEB 启用/禁用 HTTP 严格传输安全 (HSTS)。

选择

  • 0

  • 1

httpenable

整数

激活指定接口的不安全 WEB。

选择

  • 0

  • 1

httpport

整数

不安全 WEB 使用的端口。

httpsenable

整数

激活指定接口的安全 WEB。

选择

  • 0

  • 1

httpsport

整数

安全 WEB 使用的端口。

inter_filename

字符串

要分配给设备的中间证书。

interface

字符串 / 必需

我们正在定义的 SNMP 的以太网端口。

选择

  • "eth0"

  • "eth1"

  • "ppp0"

  • "qmimux0"

ocsp

整数

Web 服务器的在线证书状态协议 (OCSP) 的当前状态。

选择

  • 0

  • 1

private_filename

字符串

要分配给设备的私有证书。

signed_filename

字符串

要分配给设备的签名证书。

timeout

整数

用户登录 Web 服务器时的不活动超时时间(有效范围为 0 到 9999 分钟),0 表示不超时。

tlsmode

整数

WEB 将使用哪个 TLS:0 = TLSv1.1,1 = TLSv1.1/TLSv1.2,2 = TLSv1.2/TLSv1.3,3 = TLSv1.3

选择

  • 0

  • 1

  • 2

  • 3

trace

整数

Web 服务器的 TRACE 请求的当前状态。

选择

  • 0

  • 1

use_https

布尔值

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

选择

  • false

  • true ← (默认)

use_proxy

布尔值

标志,用于控制在存在 HTTP 代理环境变量时是否观察 HTTP 代理环境变量。

选择

  • false ← (默认)

  • true

validate_certs

布尔值

如果为 false,则不会验证 SSL 证书。 这应该只用于

使用自签名证书的个人控制站点。

选择

  • false

  • true ← (默认)

webterm

整数

Web 服务器的基于 Web 的 CLI 的当前状态。

选择

  • 0

  • 1

注意

注意

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

示例

# Sets the device WEB Parameters
- name: Set the an WEB Parameter for a WTI device
  cpm_snmp_config:
    cpm_url: "nonexist.wti.com"
    cpm_username: "super"
    cpm_password: "super"
    interface: "eth0"
    use_https: true
    validate_certs: false
    private_filename: "/tmp/private.key"
    signed_filename: "/tmp/signed.key"
    inter_filename: "/tmp/intermediate.key"

# Sets the device WEB Parameters using a User Token
- name: Set the an WEB Parameter for a WTI device
  cpm_snmp_config:
    cpm_url: "nonexist.wti.com"
    cpm_username: ""
    cpm_password: "randomusertokenfromthewtidevice"
    interface: "eth0"
    use_https: true
    validate_certs: false

# Sets the device WEB Parameters
- name: Set the WEB Parameters a WTI device
  cpm_snmp_config:
    cpm_url: "nonexist.wti.com"
    cpm_username: "super"
    cpm_password: "super"
    use_https: true
    validate_certs: false

返回值

常见返回值记录在此处,以下是此模块独有的字段

描述

数据

复杂

从发送的命令返回的输出 JSON

返回: 始终

ocsp

整数

Web 服务器的在线证书状态协议 (OCSP) 的当前状态。

返回: 成功

示例: 1

timeout

整数

用户的不活动超时时间。(有效范围为 0 到 9999 分钟) 0 表示不超时。

返回: 成功

示例: 0

totalports

整数

从当前调用返回的总端口数。

返回: 成功

示例: 1

trace

整数

Web 服务器的 TRACE 请求的当前状态。

返回: 成功

示例: 0

web

字典

模块执行后 WTI 设备的 Web 信息的当前 k/v 对。

返回: 始终

示例: [{"harden": "2", "hsts": "0", "httpenable": "1", "httpport": "80", "httpsenable": "1", "httpsport": "443", "name": "eth0", "tlsmode": "2"}]

webterm

整数

Web 服务器的基于 Web 的 CLI 的当前状态。

返回: 成功

示例: 0

作者

  • Western Telematic Inc. (@wtinetworkgear)