community.network.ce_netstream_export 模块 – 管理华为 CloudEngine 交换机上的 netstream 导出。

注意

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

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

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

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

注意

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

已弃用

删除于:

版本 6.0.0

原因:

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

替代方案:

未知。

概要

  • 配置华为 CloudEngine 交换机上的 NetStream 流统计信息导出和导出数据包的版本。

别名:network.cloudengine.ce_netstream_export

参数

参数

注释

as_option

字符串

指定统计信息中记录为原始 AS 号或对等 AS 号的 AS 号。

选择

  • "origin"

  • "peer"

bgp_nexthop

字符串

配置统计信息以携带 BGP 下一跳信息。当前,只有 V9 支持导出的数据包携带 BGP 下一跳信息。

选择

  • "enable"

  • "disable" ← (默认)

host_ip

字符串

指定导出的 NetStream 数据包的目标地址,该地址可以是 IPv6 或 IPv4。

host_port

字符串

指定导出的数据包的目标 UDP 端口号。该值是一个介于 1 到 65535 之间的整数。

host_vpn

字符串

指定携带流统计信息的导出数据包的 VPN 实例。确保已在设备上创建 VPN 实例。

source_ip

字符串

指定导出的 NetStream 数据包的源地址,该地址可以是 IPv6 或 IPv4。

state

字符串

管理资源的状态。

选择

  • "present" ← (默认)

  • "absent"

type

字符串 / 必需

指定 NetStream 功能。

选择

  • "ip"

  • "vxlan"

version

字符串

设置导出数据包的版本。

选择

  • "5"

  • "9"

备注

注意

  • 建议的连接是 network_cli

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

示例

- name: Netstream export module test
  hosts: cloudengine
  connection: local
  gather_facts: false
  vars:
    cli:
      host: "{{ inventory_hostname }}"
      port: "{{ ansible_ssh_port }}"
      username: "{{ username }}"
      password: "{{ password }}"
      transport: cli

  tasks:

  - name: Configures the source address for the exported packets carrying IPv4 flow statistics.
    community.network.ce_netstream_export:
      type: ip
      source_ip: 192.8.2.2
      provider: "{{ cli }}"

  - name: Configures the source IP address for the exported packets carrying VXLAN flexible flow statistics.
    community.network.ce_netstream_export:
      type: vxlan
      source_ip: 192.8.2.3
      provider: "{{ cli }}"

  - name: Configures the destination IP address and destination UDP port number for the exported packets carrying IPv4 flow statistics.
    community.network.ce_netstream_export:
      type: ip
      host_ip: 192.8.2.4
      host_port: 25
      host_vpn: test
      provider: "{{ cli }}"

  - name: Configures the destination IP address and destination UDP port number for the exported packets carrying VXLAN flexible flow statistics.
    community.network.ce_netstream_export:
      type: vxlan
      host_ip: 192.8.2.5
      host_port: 26
      host_vpn: test
      provider: "{{ cli }}"

  - name: Configures the version number of the exported packets carrying IPv4 flow statistics.
    community.network.ce_netstream_export:
      type: ip
      version: 9
      as_option: origin
      bgp_nexthop: enable
      provider: "{{ cli }}"

  - name: Configures the version for the exported packets carrying VXLAN flexible flow statistics.
    community.network.ce_netstream_export:
      type: vxlan
      version: 9
      provider: "{{ cli }}"

返回值

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

描述

changed

布尔值

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

返回: 始终

示例: true

end_state

字典

设备上结束属性的键/值对

返回: 始终

示例: {"as_option": "origin", "bgp_nexthop": "enable", "host_ip": "192.8.5.6", "host_port": "26", "host_vpn": "test", "source_ip": "192.8.2.5", "type": "ip", "version": "9"}

existing

字典

设备上现有属性的键/值对

返回: 始终

示例: {"as_option": null, "bgp_nexthop": "disable", "host_ip": null, "host_port": null, "host_vpn": null, "source_ip": null, "type": "ip", "version": null}

proposed

字典

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

返回: 始终

示例: {"as_option": "origin", "bgp_nexthop": "enable", "host_ip": "192.8.5.6", "host_port": "26", "host_vpn": "test", "source_ip": "192.8.2.5", "state": "present", "type": "ip", "version": "9"}

updates

列表 / 元素=字符串

发送到设备的命令列表

返回: 始终

示例: ["netstream export ip source 192.8.2.5", "netstream export ip host 192.8.5.6 26 vpn-instance test", "netstream export ip version 9 origin-as bgp-nexthop"]

状态

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

  • 更多信息请参见 已弃用

作者

  • Zhijin Zhou (@QijunPan)