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¶
This module provides declarative management of link aggregation groups on Extreme Networks SLX-OS network devices.
Parameters¶
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:
Authors¶
Matthew Stone (@bigmstone)