arubanetworks.aoscx.aoscx_system (4.3.2) — module

Set global configuration in AOS-CX devices

| "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 AOS-CX devices.

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Set the global qos trust mode to dscp
  aoscx_system:
    global_qos_trust_mode: dscp
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Set the global qos trust mode to the switch's factory default
  aoscx_system:
    global_qos_trust_mode: default
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: >
    Set the switch's global Queue Profile to a Queue Profile named
    STRICT-PROFILE
  aoscx_system:
    global_queue_profile: STRICT-PROFILE
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Set the global Queue Profile to the switch's factory default
  aoscx_system:
    use_default_global_queue_profile: true
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: >
    Set the switch's global Schedule Profile to a Schedule Profile named
    STRICT-PROFILE
  aoscx_system:
    global_schedule_profile: STRICT-PROFILE
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Set the global Schedule Profile to the switch's factory default
  aoscx_system:
    use_default_global_schedule_profile: true

Inputs

    
global_queue_profile:
    description: 'Queue Profile to set as the global one for an AOS-CX device. This option
      is mutually exclusive with the use_default_global_queue_profile option.

      '
    required: false
    type: str

global_qos_trust_mode:
    choices:
    - cos
    - dscp
    - none
    - default
    description: 'Trust mode to be set as global for an AOS-CX device. Use "default" to
      set the factory-default global trust mode.

      '
    required: false
    type: str

global_schedule_profile:
    description: 'Schedule Profile to set as the global one for an AOS-CX device. This
      option is mutually exclusive with the use_default_global_schedule_profile option.

      '
    required: false
    type: str

use_default_global_queue_profile:
    default: false
    description: 'Set the global queue profile for an AOS-CX device to its factory default
      global queue profile, this option is mutually exclusive with the global_queue_profile
      option.

      '
    required: false
    type: bool

use_default_global_schedule_profile:
    default: false
    description: 'Set the global schedule profile for an AOS-CX device to its factory
      default global schedule profile, this option is mutually exclusive with the global_queue_profile
      option.

      '
    required: false
    type: bool