slxos_interface – Manage Interfaces on Extreme SLX-OS network devices¶
New in version 2.6.
Synopsis¶
- This module provides declarative management of Interfaces on Extreme SLX-OS network devices.
Parameters¶
Examples¶
- name: configure interface
  slxos_interface:
      name: Ethernet 0/2
      description: test-interface
      speed: 1000
      mtu: 9216
- name: remove interface
  slxos_interface:
    name: Loopback 9
    state: absent
- name: make interface up
  slxos_interface:
    name: Ethernet 0/2
    enabled: True
- name: make interface down
  slxos_interface:
    name: Ethernet 0/2
    enabled: False
- name: Check intent arguments
  slxos_interface:
    name: Ethernet 0/2
    state: up
    tx_rate: ge(0)
    rx_rate: le(0)
- name: Check neighbors intent arguments
  slxos_interface:
    name: Ethernet 0/41
    neighbors:
    - port: Ethernet 0/41
      host: SLX
- name: Config + intent
  slxos_interface:
    name: Ethernet 0/2
    enabled: False
    state: down
- name: Add interface using aggregate
  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
  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:
Status¶
- This module is not guaranteed to have a backwards compatible interface. [preview]
- This module is maintained by the Ansible Community. [community]
Authors¶
- Lindsay Hill (@LindsayHill)
Hint
If you notice any issues in this documentation, you can edit this document to improve it.
