community.network.slxos_interface – Manage Interfaces on Extreme 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_interface
.
Synopsis¶
This module provides declarative management of Interfaces on Extreme SLX-OS network devices.
Parameters¶
Examples¶
- name: Configure interface
community.network.slxos_interface:
name: Ethernet 0/2
description: test-interface
speed: 1000
mtu: 9216
- name: Remove interface
community.network.slxos_interface:
name: Loopback 9
state: absent
- name: Make interface up
community.network.slxos_interface:
name: Ethernet 0/2
enabled: True
- name: Make interface down
community.network.slxos_interface:
name: Ethernet 0/2
enabled: False
- name: Check intent arguments
community.network.slxos_interface:
name: Ethernet 0/2
state: up
tx_rate: ge(0)
rx_rate: le(0)
- name: Check neighbors intent arguments
community.network.slxos_interface:
name: Ethernet 0/41
neighbors:
- port: Ethernet 0/41
host: SLX
- name: Config + intent
community.network.slxos_interface:
name: Ethernet 0/2
enabled: False
state: down
- name: Add interface using aggregate
community.network.slxos_interface:
aggregate:
- { name: Ethernet 0/1, mtu: 1548, description: test-interface-1 }
- { name: Ethernet 0/2, mtu: 1548, description: test-interface-2 }
speed: 10000
state: present
- name: Delete interface using aggregate
community.network.slxos_interface:
aggregate:
- name: Loopback 9
- name: Loopback 10
state: absent
Return Values¶
Common return values are documented here, the following are the fields unique to this module:
Authors¶
Lindsay Hill (@LindsayHill)