• AnsibleFest
  • Products
  • Community
  • Webinars & Training
  • Blog
Ansible Logo
Documentation
Ansible
3

Installation, Upgrade & Configuration

  • Installation Guide
  • Ansible Porting Guides

Using Ansible

  • User Guide

Contributing to Ansible

  • Ansible Community Guide

Extending Ansible

  • Developer Guide

Common Ansible Scenarios

  • Public Cloud Guides
  • Network Technology Guides
  • Virtualization and Containerization Guides

Network Automation

  • Network Getting Started
  • Network Advanced Topics
  • Network Developer Guide

Ansible Galaxy

  • Galaxy User Guide
  • Galaxy Developer Guide

Reference & Appendices

  • Collection Index
  • Indexes of all modules and plugins
  • Playbook Keywords
  • Return Values
  • Ansible Configuration Settings
  • Controlling how Ansible behaves: precedence rules
  • YAML Syntax
  • Python 3 Support
  • Interpreter Discovery
  • Release and maintenance
  • Testing Strategies
  • Sanity Tests
  • Frequently Asked Questions
  • Glossary
  • Ansible Reference: Module Utilities
  • Special Variables
  • Red Hat Ansible Tower
  • Ansible Automation Hub
  • Logging Ansible output

Roadmaps

  • Ansible Roadmap




Ansible
  • Docs »
  • community.network.slxos_linkagg – Manage link aggregation groups on Extreme Networks SLX-OS network devices


community.network.slxos_linkagg – Manage link aggregation groups on Extreme Networks SLX-OS network devices¶

Note

This plugin is part of the community.network collection (version 2.1.1).

To install it use: ansible-galaxy collection install community.network.

To use it in a playbook, specify: community.network.slxos_linkagg.

  • Synopsis

  • Parameters

  • Notes

  • Examples

  • Return Values

Synopsis¶

  • This module provides declarative management of link aggregation groups on Extreme Networks SLX-OS network devices.

Parameters¶

Parameter Choices/Defaults Comments
aggregate
string
List of link aggregation definitions.
group
string
Channel-group number for the port-channel Link aggregation group. Range 1-1024.
members
string
List of members of the link aggregation group.
mode
string
    Choices:
  • active
  • on
  • passive
Mode of the link aggregation group.
purge
boolean
    Choices:
  • no ←
  • yes
Purge links not defined in the aggregate parameter.
state
string
    Choices:
  • present ←
  • absent
State of the link aggregation group.

Notes¶

Note

  • Tested against SLX-OS 17s.1.02

Examples¶

- name: Create link aggregation group
  community.network.slxos_linkagg:
    group: 10
    state: present

- name: Delete link aggregation group
  community.network.slxos_linkagg:
    group: 10
    state: absent

- name: Set link aggregation group to members
  community.network.slxos_linkagg:
    group: 200
    mode: active
    members:
      - Ethernet 0/1
      - Ethernet 0/2

- name: Remove link aggregation group from Ethernet 0/1
  community.network.slxos_linkagg:
    group: 200
    mode: active
    members:
      - Ethernet 0/1

- name: Create aggregate of linkagg definitions
  community.network.slxos_linkagg:
    aggregate:
      - { group: 3, mode: on, members: [Ethernet 0/1] }
      - { group: 100, mode: passive, members: [Ethernet 0/2] }

Return Values¶

Common return values are documented here, the following are the fields unique to this module:

Key Returned Description
commands
list / elements=string
always, except for the platforms that use Netconf transport to manage the device.
The list of configuration mode commands to send to the device

Sample:
['interface port-channel 30', 'interface Ethernet 0/3', 'channel-group 30 mode on', 'no interface port-channel 30']


Authors¶

  • Matthew Stone (@bigmstone)


© Copyright 2021 Red Hat, Inc. Last updated on Apr 23, 2021.