slxos_linkagg – Manage link aggregation groups on Extreme Networks SLX-OS network devices¶
New in version 2.6.
Synopsis¶
- This module provides declarative management of link aggregation groups on Extreme Networks SLX-OS network devices.
Parameters¶
Examples¶
- name: create link aggregation group
slxos_linkagg:
group: 10
state: present
- name: delete link aggregation group
slxos_linkagg:
group: 10
state: absent
- name: set link aggregation group to members
slxos_linkagg:
group: 200
mode: active
members:
- Ethernet 0/1
- Ethernet 0/2
- name: remove link aggregation group from Ethernet 0/1
slxos_linkagg:
group: 200
mode: active
members:
- Ethernet 0/1
- name: Create aggregate of linkagg definitions
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:
Status¶
- This module is not guaranteed to have a backwards compatible interface. [preview]
- This module is maintained by the Ansible Community. [community]
Authors¶
- Matthew Stone (@bigmstone)
Hint
If you notice any issues in this documentation, you can edit this document to improve it.