Deprecated

Removed in None

i

Reason:Newer and updated modules released with more functionality in Ansible 2.9 | Alternative:ios_interfaces

cisco.ios.ios_interface (3.3.2) — module

(deprecated, removed after 2022-06-01) Manage Interface on Cisco IOS network devices

| "added in version" 1.0.0 of cisco.ios"

Authors: Ganesh Nalawade (@ganeshrn)

This plugin has a corresponding action plugin.

Install collection

Install with ansible-galaxy collection install cisco.ios:==3.3.2


Add to requirements.yml

  collections:
    - name: cisco.ios
      version: 3.3.2

Description

This module provides declarative management of Interfaces on Cisco IOS network devices.

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: configure interface
  cisco.ios.ios_interface:
    name: GigabitEthernet0/2
    description: test-interface
    speed: 100
    duplex: half
    mtu: 512
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: remove interface
  cisco.ios.ios_interface:
    name: Loopback9
    state: absent
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: make interface up
  cisco.ios.ios_interface:
    name: GigabitEthernet0/2
    enabled: true
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: make interface down
  cisco.ios.ios_interface:
    name: GigabitEthernet0/2
    enabled: false
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Check intent arguments
  cisco.ios.ios_interface:
    name: GigabitEthernet0/2
    state: up
    tx_rate: ge(0)
    rx_rate: le(0)
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Check neighbors intent arguments
  cisco.ios.ios_interface:
    name: Gi0/0
    neighbors:
    - port: eth0
      host: netdev
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Config + intent
  cisco.ios.ios_interface:
    name: GigabitEthernet0/2
    enabled: false
    state: down
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Add interface using aggregate
  cisco.ios.ios_interface:
    aggregate:
    - {name: GigabitEthernet0/1, mtu: 256, description: test-interface-1}
    - {name: GigabitEthernet0/2, mtu: 516, description: test-interface-2}
    duplex: full
    speed: 100
    state: present
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Delete interface using aggregate
  cisco.ios.ios_interface:
    aggregate:
    - name: Loopback9
    - name: Loopback10
    state: absent

Inputs

    
mtu:
    description:
    - Maximum size of transmit packet.
    type: str

name:
    description:
    - Name of the Interface.
    type: str

delay:
    default: 10
    description:
    - Time in seconds to wait before checking for the operational state on remote device.
      This wait is applicable for operational state argument which are I(state) with values
      C(up)/C(down), I(tx_rate) and I(rx_rate).
    type: int

speed:
    description:
    - Interface link speed.
    type: str

state:
    choices:
    - present
    - absent
    - up
    - down
    default: present
    description:
    - State of the Interface configuration, C(up) means present and operationally up and
      C(down) means present and operationally C(down)
    type: str

duplex:
    choices:
    - full
    - half
    - auto
    description:
    - Interface link status
    type: str

enabled:
    default: true
    description:
    - Interface link status.
    type: bool

rx_rate:
    description:
    - Receiver rate in bits per second (bps).
    - This is state check parameter only.
    - Supports conditionals, see U(https://docs.ansible.com/ansible/latest/network/user_guide/network_working_with_command_output.html#conditionals-in-networking-modules)
    type: str

tx_rate:
    description:
    - Transmit rate in bits per second (bps).
    - This is state check parameter only.
    - Supports conditionals, see U(https://docs.ansible.com/ansible/latest/network/user_guide/network_working_with_command_output.html#conditionals-in-networking-modules)
    type: str

provider:
    description:
    - B(Deprecated)
    - 'Starting with Ansible 2.5 we recommend using C(connection: network_cli).'
    - For more information please see the U(https://docs.ansible.com/ansible/latest/network/user_guide/platform_ios.html).
    - HORIZONTALLINE
    - A dict object containing connection details.
    suboptions:
      auth_pass:
        description:
        - Specifies the password to use if required to enter privileged mode on the remote
          device.  If I(authorize) is false, then this argument does nothing. If the value
          is not specified in the task, the value of environment variable C(ANSIBLE_NET_AUTH_PASS)
          will be used instead.
        type: str
      authorize:
        default: false
        description:
        - Instructs the module to enter privileged mode on the remote device before sending
          any commands.  If not specified, the device will attempt to execute all commands
          in non-privileged mode. If the value is not specified in the task, the value
          of environment variable C(ANSIBLE_NET_AUTHORIZE) will be used instead.
        type: bool
      host:
        description:
        - Specifies the DNS host name or address for connecting to the remote device over
          the specified transport.  The value of host is used as the destination address
          for the transport.
        type: str
      password:
        description:
        - Specifies the password to use to authenticate the connection to the remote device.   This
          value is used to authenticate the SSH session. If the value is not specified
          in the task, the value of environment variable C(ANSIBLE_NET_PASSWORD) will
          be used instead.
        type: str
      port:
        description:
        - Specifies the port to use when building the connection to the remote device.
        type: int
      ssh_keyfile:
        description:
        - Specifies the SSH key to use to authenticate the connection to the remote device.   This
          value is the path to the key used to authenticate the SSH session. If the value
          is not specified in the task, the value of environment variable C(ANSIBLE_NET_SSH_KEYFILE)
          will be used instead.
        type: path
      timeout:
        description:
        - Specifies the timeout in seconds for communicating with the network device for
          either connecting or sending commands.  If the timeout is exceeded before the
          operation is completed, the module will error.
        type: int
      username:
        description:
        - Configures the username to use to authenticate the connection to the remote
          device.  This value is used to authenticate the SSH session. If the value is
          not specified in the task, the value of environment variable C(ANSIBLE_NET_USERNAME)
          will be used instead.
        type: str
    type: dict

aggregate:
    description: List of Interfaces definitions.
    elements: dict
    suboptions:
      delay:
        description:
        - Time in seconds to wait before checking for the operational state on remote
          device. This wait is applicable for operational state argument which are I(state)
          with values C(up)/C(down), I(tx_rate) and I(rx_rate).
        type: int
      description:
        description:
        - Description of Interface.
        type: str
      duplex:
        choices:
        - full
        - half
        - auto
        description:
        - Interface link status
        type: str
      enabled:
        description:
        - Interface link status.
        type: bool
      mtu:
        description:
        - Maximum size of transmit packet.
        type: str
      name:
        description:
        - Name of the Interface.
        required: true
        type: str
      neighbors:
        description:
        - Check the operational state of given interface C(name) for CDP/LLDP neighbor.
        - The following suboptions are available.
        elements: dict
        suboptions:
          host:
            description:
            - CDP/LLDP neighbor host for given interface C(name).
            type: str
          port:
            description:
            - CDP/LLDP neighbor port to which given interface C(name) is connected.
            type: str
        type: list
      rx_rate:
        description:
        - Receiver rate in bits per second (bps).
        - This is state check parameter only.
        - Supports conditionals, see U(https://docs.ansible.com/ansible/latest/network/user_guide/network_working_with_command_output.html#conditionals-in-networking-modules)
        type: str
      speed:
        description:
        - Interface link speed.
        type: str
      state:
        choices:
        - present
        - absent
        - up
        - down
        description:
        - State of the Interface configuration, C(up) means present and operationally
          up and C(down) means present and operationally C(down)
        type: str
      tx_rate:
        description:
        - Transmit rate in bits per second (bps).
        - This is state check parameter only.
        - Supports conditionals, see U(https://docs.ansible.com/ansible/latest/network/user_guide/network_working_with_command_output.html#conditionals-in-networking-modules)
        type: str
    type: list

neighbors:
    description:
    - Check the operational state of given interface C(name) for CDP/LLDP neighbor.
    - The following suboptions are available.
    elements: dict
    suboptions:
      host:
        description:
        - CDP/LLDP neighbor host for given interface C(name).
        type: str
      port:
        description:
        - CDP/LLDP neighbor port to which given interface C(name) is connected.
        type: str
    type: list

description:
    description:
    - Description of Interface.
    type: str

Outputs

commands:
  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:
  - interface GigabitEthernet0/2
  - description test-interface
  - duplex half
  - mtu 512
  type: list