dellemc.enterprise_sonic.sonic_qos_pfc 模块 – 管理 SONiC 上的 QoS PFC 配置

注意

此模块是 dellemc.enterprise_sonic 集合(版本 2.5.1)的一部分。

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

要安装它,请使用: ansible-galaxy collection install dellemc.enterprise_sonic

要在 Playbook 中使用它,请指定: dellemc.enterprise_sonic.sonic_qos_pfc

dellemc.enterprise_sonic 2.5.0 中的新增功能

概要

  • 此模块提供运行 SONiC 的设备的 QoS PFC 的配置管理

参数

参数

注释

配置

字典

QoS PFC 配置

counter_poll

布尔值

启用或禁用 flex-counters 用于 PFC 监视

选项

  • false

  • true ←(默认)

poll_interval

整数

PFC 监视的轮询间隔

范围 100-3000

状态

字符串

模块完成后的配置状态。

选项

  • "merged" ←(默认)

  • "deleted"

  • "overridden"

  • "replaced"

注释

注意

  • 已针对戴尔科技的企业级 SONiC 发行版进行了测试。

  • 支持 check_mode

示例

# Using Merged
#
# Before state:
# -------------
#
# sonic# show priority-flow-control watchdog
#
# Watchdog Summary
# ----------------
# Polling Interval:   : Not Available
# Flex Counters:      : enabled

- name: Merge QoS PFC configurations
  dellemc.enterprise_sonic.sonic_qos_pfc:
    config:
      counter_poll: True
      poll_interval: 150
    state: merged

# After state:
# ------------
#
# sonic# show priority-flow-control watchdog
#
# Watchdog Summary
# ----------------
# Polling Interval:   : 150
# Flex Counters:      : enabled
#
#
# Using Replaced
#
# Before state:
# -------------
#
# sonic# show priority-flow-control watchdog
#
# Watchdog Summary
# ----------------
# Polling Interval:   : 150
# Flex Counters:      : enabled

- name: Replace QoS PFC configurations
  dellemc.enterprise_sonic.sonic_qos_pfc:
    config:
      poll_interval: 365
    state: replaced

# After state:
# ------------
#
# sonic# show priority-flow-control watchdog
#
# Watchdog Summary
# ----------------
# Polling Interval:   : 365
# Flex Counters:      : enabled
#
#
# Using Overridden
# Before state:
# -------------
#
# sonic# show priority-flow-control watchdog
#
# Watchdog Summary
# ----------------
# Polling Interval:   : 365
# Flex Counters:      : enabled

- name: Override QoS PFC configurations
  dellemc.enterprise_sonic.sonic_qos_pfc:
    config:
      counter_poll: False
      poll_interval: 400
    state: overridden

# After state:
# ------------
#
# sonic# show priority-flow-control watchdog
#
# Watchdog Summary
# ----------------
# Polling Interval:   : 400
# Flex Counters:      : disabled
#
#
# Using deleted
#
# Before state:
# -------------
#
# sonic# show priority-flow-control watchdog
#
# Watchdog Summary
# ----------------
# Polling Interval:   : 400
# Flex Counters:      : disabled

- name: Delete QoS PFC configurations
  dellemc.enterprise_sonic.sonic_qos_pfc:
    config:
      counter_poll: False
      poll_interval: 400
    state: deleted

# After state:
# ------------
#
# sonic# show priority-flow-control watchdog
#
# Watchdog Summary
# ----------------
# Polling Interval:   : Not Available
# Flex Counters:      : enabled

返回值

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

描述

之后

列表 / 元素=字符串

生成的配置模块调用。

已返回:当发生更改时

示例: ["返回的配置将始终与上面的参数格式相同。\n"]

之后(已生成)

列表 / 元素=字符串

生成的配置模块调用。

已返回:check_mode

示例: ["返回的配置将始终与上面的参数格式相同\n"]

之前

列表 / 元素=字符串

模块调用之前的配置。

已返回:始终

示例: ["返回的配置将始终与上面的参数格式相同。\n"]

命令

列表 / 元素=字符串

推送到远程设备的命令集。

已返回:始终

示例: ["命令 1", "命令 2", "命令 3"]

作者

  • Shade Talabi (@stalabi1)