arubanetworks.aoscx.aoscx_qos_cos (4.3.2) — module

Create or Delete QoS COS trust modes on AOS-CX.

| "added in version" 4.0.0 of arubanetworks.aoscx"

Authors: Aruba Networks (@ArubaNetworks)

preview | supported by certified

Install collection

Install with ansible-galaxy collection install arubanetworks.aoscx:==4.3.2


Add to requirements.yml

  collections:
    - name: arubanetworks.aoscx
      version: 4.3.2

Description

This module provides configuration management of QoS COS trust mode on AOS-CX devices.

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
---
- name: Update description of QoS COS trust type map entry with code point 3
  aoscx_qos_cos:
   code_point: 3
   description: QoS COS 3 - Engineering Department
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Update color of QoS COS trust type map entry with code point 5
  aoscx_qos_cos:
    code_point: 5
    color: yellow
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: >
    Update color and local priority of QoS COS trust type map entry with code
    point 5.
  aoscx_qos_cos:
    code_point: 5
    color: yellow
    local_priority: 3

Inputs

    
color:
    choices:
    - green
    - yellow
    - red
    description: String to identify the color which may be used later in the pipeline
      in packet-drop decision points.
    required: false
    type: str

code_point:
    choices:
    - 0
    - 1
    - 2
    - 3
    - 4
    - 5
    - 6
    - 7
    description: 3-bit integer value that marks packets with one of eight priority levels,
      defined as Class of Service Priority Code Point (PCP) in IEEE 802.1Q VLAN tag.
    required: true
    type: int

description:
    description: String used for customer documentation.
    required: false
    type: str

local_priority:
    description: Integer to represent an internal meta-data value that will be associated
      with the packet. This value will be used later to select the egress queue for the
      packet.
    required: false
    type: int