community.network.ce_netstream_aging 模块 – 管理华为 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_aging

注意

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

已弃用

移除于:

版本 6.0.0

原因:

此集合及其中的所有内容都已无人维护并已弃用。

替代方案:

未知。

概要

  • 管理华为 CloudEngine 交换机上的 NetStream 超时模式。

别名:network.cloudengine.ce_netstream_aging

参数

参数

注释

manual_slot

字符串

指定 netstream 手动超时的时隙号。

state

字符串

指定资源的所需状态。

选项

  • "present" ← (默认)

  • "absent"

timeout_interval

字符串

Netstream 超时间隔。如果类型是活动,则间隔为 1-60。如果类型是不活动,则间隔为 5-600。

默认值: 30

timeout_type

字符串

Netstream 超时类型。

选项

  • "active"

  • "inactive"

  • "tcp-session"

  • "manual"

type

字符串

指定 netstream 超时活动间隔的数据包类型。

选项

  • "ip"

  • "vxlan"

备注

注意

  • 建议的连接是 network_cli

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

示例

- name: Netstream aging 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: Configure netstream ip timeout active interval , the interval is 40 minutes.
    community.network.ce_netstream_aging:
      timeout_interval: 40
      type: ip
      timeout_type: active
      state: present
      provider: "{{ cli }}"

  - name: Configure netstream vxlan timeout active interval , the interval is 40 minutes.
    community.network.ce_netstream_aging:
      timeout_interval: 40
      type: vxlan
      timeout_type: active
      active_state: present
      provider: "{{ cli }}"

  - name: Delete netstream ip timeout active interval , set the ip timeout interval to 30 minutes.
    community.network.ce_netstream_aging:
      type: ip
      timeout_type: active
      state: absent
      provider: "{{ cli }}"

  - name: Delete netstream vxlan timeout active interval , set the vxlan timeout interval to 30 minutes.
    community.network.ce_netstream_aging:
      type: vxlan
      timeout_type: active
      state: absent
      provider: "{{ cli }}"

  - name: Enable netstream ip tcp session timeout.
    community.network.ce_netstream_aging:
      type: ip
      timeout_type: tcp-session
      state: present
      provider: "{{ cli }}"

  - name: Enable netstream vxlan tcp session timeout.
    community.network.ce_netstream_aging:
      type: vxlan
      timeout_type: tcp-session
      state: present
      provider: "{{ cli }}"

  - name: Disable netstream ip tcp session timeout.
    community.network.ce_netstream_aging:
      type: ip
      timeout_type: tcp-session
      state: absent
      provider: "{{ cli }}"

  - name: Disable netstream vxlan tcp session timeout.
    community.network.ce_netstream_aging:
      type: vxlan
      timeout_type: tcp-session
      state: absent
      provider: "{{ cli }}"

返回值

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

描述

changed

布尔值

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

返回值: 始终

示例: true

end_state

字典

模块执行后配置的键/值对

返回值: 详细模式

示例: {"active_timeout": [{"ip": 30, "vxlan": 30}], "inactive_timeout": [{"ip": 30, "vxlan": 30}], "tcp_timeout": [{"ip": "disable", "vxlan": "disable"}]}

existing

字典

现有配置的键/值对

返回值: 详细模式

示例: {"active_timeout": [{"ip": "40", "vxlan": 30}], "inactive_timeout": [{"ip": 30, "vxlan": 30}], "tcp_timeout": [{"ip": "disable", "vxlan": "disable"}]}

proposed

字典

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

返回值: 详细模式

示例: {"state": "absent", "timeout_interval": "40", "timeout_type": "active", "type": "ip"}

updates

列表 / elements=字符串

发送到设备的命令

返回值: 始终

示例: ["undo netstream timeout ip active 40"]

状态

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

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

作者

  • YangYang (@QijunPan)