community.network.icx_linkagg – Manage link aggregation groups on Ruckus ICX 7000 series switches¶
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.icx_linkagg
.
Synopsis¶
This module provides declarative management of link aggregation groups on Ruckus ICX network devices.
Parameters¶
Notes¶
Note
Tested against ICX 10.1.
For information on using ICX platform, see the ICX OS Platform Options guide.
Examples¶
- name: Create static link aggregation group
community.network.icx_linkagg:
group: 10
mode: static
name: LAG1
- name: Create link aggregation group with auto id
community.network.icx_linkagg:
group: auto
mode: dynamic
name: LAG2
- name: Delete link aggregation group
community.network.icx_linkagg:
group: 10
state: absent
- name: Set members to LAG
community.network.icx_linkagg:
group: 200
mode: static
members:
- ethernet 1/1/1 to 1/1/6
- ethernet 1/1/10
- name: Remove links other then LAG id 100 and 3 using purge
community.network.icx_linkagg:
aggregate:
- { group: 3}
- { group: 100}
purge: true
Return Values¶
Common return values are documented here, the following are the fields unique to this module:
Authors¶
Ruckus Wireless (@Commscope)