community.network.ce_snmp_target_host 模块 – 管理华为CloudEngine交换机上的SNMP目标主机配置。

注意

此模块是 community.network 集合 (版本 5.1.0) 的一部分。

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

要安装它,请使用: ansible-galaxy collection install community.network

要在playbook中使用它,请指定: community.network.ce_snmp_target_host

注意

community.network 集合已弃用,并将从 Ansible 12 中删除。有关更多信息,请参阅 讨论主题

已弃用

在以下版本中移除:

6.0.0版

原因:

此集合及其中的所有内容均未维护且已弃用。

替代方案:

未知。

概要

  • 管理华为CloudEngine交换机上的SNMP目标主机配置。

别名:network.cloudengine.ce_snmp_target_host

参数

参数

注释

address

字符串

网络地址。

connect_port

字符串

SNMP代理用于连接网络管理的UDP端口。

host_name

字符串

用于标识目标主机条目的唯一名称。

interface_name

字符串

发送陷阱消息的接口名称。

is_public_net

字符串

启用或禁用目标主机的公网管理器。

选项

  • "no_use" ← (默认)

  • "true"

  • "false"

notify_type

字符串

将通知类型配置为trap或inform。

选项

  • "trap"

  • "inform"

recv_port

字符串

网络管理用于接收告警消息的UDP端口号。

security_level

字符串

安全级别,指示是否使用身份验证和加密。

选项

  • "noAuthNoPriv"

  • "authentication"

  • "privacy"

security_model

字符串

安全模型。

选项

  • "v1"

  • "v2c"

  • "v3"

security_name

字符串

安全名称。

security_name_v3

字符串

安全名称V3。

version

字符串

SNMP引擎支持的版本。

选项

  • "none"

  • "v1"

  • "v2c"

  • "v3"

  • "v1v2c"

  • "v1v3"

  • "v2cv3"

  • "all"

vpn_name

字符串

VPN实例名称。

备注

注意

  • 此模块要求在被管理的远程设备上启用netconf系统服务。

  • 推荐连接方式为 netconf

  • 此模块也适用于旧版playbook的 local 连接。

示例

- name: CloudEngine snmp target host test
  hosts: cloudengine
  connection: local
  gather_facts: false

  tasks:

  - name: "Config SNMP version"
    community.network.ce_snmp_target_host:
      state: present
      version: v2cv3

  - name: "Config SNMP target host"
    community.network.ce_snmp_target_host:
      state: present
      host_name: test1
      address: 1.1.1.1
      notify_type: trap
      vpn_name: js
      security_model: v2c
      security_name: wdz

返回值

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

描述

changed

布尔值

检查设备上是否进行了更改

返回值:始终

示例: true

end_state

字典

模块执行后aaa参数的键值对

返回值:始终

示例: {"target host info": [{"address": "10.135.182.158", "domain": "snmpUDPDomain", "nmsName": "test2", "notifyType": "trap", "securityLevel": "authentication", "securityModel": "v3", "securityNameV3": "wdz", "vpnInstanceName": "js"}]}

existing

字典

现有aaa服务器的键值对

返回值:始终

示例: {}

proposed

字典

传递到模块的参数的键值对

返回值:始终

示例: {"address": "10.135.182.158", "host_name": "test2", "notify_type": "trap", "security_level": "authentication", "security_model": "v3", "security_name_v3": "wdz", "state": "present", "vpn_name": "js"}

updates

列表 / 元素=字符串

发送到设备的命令

返回值:始终

示例: ["snmp-agent target-host host-name test2 trap address udp-domain 10.135.182.158 vpn-instance js params securityname wdz v3 authentication"]

状态

  • 此模块将在6.0.0版中移除。 *[已弃用]*

  • 有关更多信息,请参阅 已弃用

作者

  • wangdezhuang (@QijunPan)