wti.remote.cpm_syslog_server_info 模块 – 从 WTI OOB 和 PDU 设备获取网络 SYSLOG 服务器参数

注意

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

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

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

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

wti.remote 2.11.0 中的新增功能

概要

  • 从 WTI OOB 和 PDU 设备获取网络 SYSLOG 服务器参数

参数

参数

注释

cpm_password

字符串 / 必需

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

cpm_url

字符串 / 必需

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

cpm_username

字符串 / 必需

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

interface

列表 / 元素=字符串

这是正在检索的以太网端口名称。它可以包含单个以太网

端口名称,多个以逗号分隔的以太网端口名称,或者未定义的所有端口。

选项

  • "eth0"

  • "eth1"

  • "ppp0"

  • "qmimux0"

use_https

布尔值

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

选项

  • false

  • true ← (默认)

use_proxy

布尔值

标志,用于控制当存在 HTTP 代理环境变量时,查找是否会遵守这些环境变量。

选项

  • false ← (默认)

  • true

validate_certs

布尔值

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

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

选项

  • false

  • true ← (默认)

备注

注意

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

示例

- name: Get the network SYSLOG Server Parameters for all interfaces of a WTI device.
  cpm_interface_info:
    cpm_url: "nonexist.wti.com"
    cpm_username: "super"
    cpm_password: "super"
    use_https: true
    validate_certs: false


- name: Get the network SYSLOG Server Parameters for eth0 of a WTI device.
  cpm_interface_info:
    cpm_url: "nonexist.wti.com"
    cpm_username: "super"
    cpm_password: "super"
    use_https: false
    validate_certs: false
    interface: "eth0"

返回值

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

描述

数据

复杂

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

返回: 总是

syslogserver

字典

模块执行后,WTI 设备 SYSLOG 服务器信息的当前 k/v 对。

返回: 总是

示例: {"syslogserver": {"eth0": [{"ietf-ipv4": {"block": [{"address": "", "index": "1"}, {"address": "", "index": "2"}, {"address": "", "index": "3"}, {"address": "", "index": "4"}], "enable": 0, "port": "514", "secure": "0", "transport": "0"}, "ietf-ipv6": {"block": [{"address": "", "index": "1"}, {"address": "", "index": "2"}, {"address": "", "index": "3"}, {"address": "", "index": "4"}], "enable": 0, "port": "514", "secure": "0", "transport": "0"}}]}}

作者

  • Western Telematic Inc. (@wtinetworkgear)