wti.remote.cpm_serial_port_action_set 模块 – 在 WTI OOB 和 PDU 设备中设置串口连接/断开命令

注意

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

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

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

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

wti.remote 2.9.0 中的新增功能

概要

  • 在 WTI OOB 和 PDU 设备中设置串口连接/断开命令

参数

参数

注释

action

整数

这是要分配给端口的波特率。

1=连接,2=断开连接

选择

  • 1

  • 2

cpm_password

字符串 / 必填

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

cpm_url

字符串 / 必填

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

cpm_username

字符串 / 必填

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

port

整数 / 必填

这是正在执行操作的端口号。

portremote

整数

这是正在执行操作的端口号。

use_https

布尔值

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

选择

  • false

  • true ←(默认)

use_proxy

布尔值

一个标志,用于控制在存在 HTTP 代理环境变量时,查找是否会观察这些环境变量。

选择

  • false ←(默认)

  • true

validate_certs

布尔值

如果为 false,则不会验证 SSL 证书。这应该仅在

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

选择

  • false

  • true ←(默认)

注意

注意

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

示例

# Set Serial Port Action (Connect)
- name: Connect port 2 to port 3 of a WTI device
  cpm_serial_port_action_set:
    cpm_url: "nonexist.wti.com"
    cpm_username: "super"
    cpm_password: "super"
    use_https: true
    validate_certs: false
    port: "2"
    portremote: "3"
    action: "1"

# Set Serial port Action (Disconnect)
- name: Disconnect port 2 and 3 of a WTI device
  cpm_serial_port_action_set:
    cpm_url: "nonexist.wti.com"
    cpm_username: "super"
    cpm_password: "super"
    use_https: true
    validate_certs: false
    port: "2"
    action: "2"

返回值

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

描述

data

字符串

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

返回: 总是

作者

  • Western Telematic Inc. (@wtinetworkgear)