community.network.slxos_interface module – Manage Interfaces on Extreme SLX-OS network devices
Note
This module is part of the community.network collection (version 5.1.0).
You might already have this collection installed if you are using the ansible package.
It is not included in ansible-core.
To check whether it is installed, run ansible-galaxy collection list.
To install it, use: ansible-galaxy collection install community.network.
To use it in a playbook, specify: community.network.slxos_interface.
Note
The community.network collection has been deprecated and will be removed from Ansible 12. See the discussion thread for more information.
DEPRECATED
- Removed in:
- version 6.0.0 
- Why:
- This collection and all content in it is unmaintained and deprecated. 
- Alternative:
- Unknown. 
Synopsis
- This module provides declarative management of Interfaces on Extreme SLX-OS network devices. 
Aliases: network.slxos.slxos_interface
Parameters
| Parameter | Comments | 
|---|---|
| List of Interfaces definitions. | |
| Time in seconds to wait before checking for the operational state on remote device. This wait is applicable for operational state argument which are state with values  Default:  | |
| Description of Interface. | |
| Interface link status. Choices: 
 | |
| Maximum size of transmit packet. | |
| Name of the Interface. | |
| Check the operational state of given interface  The following suboptions are available. | |
| LLDP neighbor host for given interface  | |
| LLDP neighbor port to which given interface  | |
| Receiver rate in bits per second (bps). | |
| Interface link speed. | |
| State of the Interface configuration,  Choices: 
 | |
| Transmit rate in bits per second (bps). | 
Notes
Note
- Tested against SLX-OS 17s.1.02 
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:
| Key | Description | 
|---|---|
| The list of configuration mode commands to send to the device. Returned: always, except for the platforms that use Netconf transport to manage the device. Sample:  | 
Status
- This module will be removed in version 6.0.0. [deprecated] 
- For more information see DEPRECATED. 
