ansible.builtin.nxos_vxlan_vtep (v2.6.0) — module

Manages VXLAN Network Virtualization Endpoint (NVE).

| "added in version" 2.2 of ansible.builtin"

Authors: Gabriele Gerbino (@GGabriele)

preview | supported by network

Install Ansible via pip

Install with pip install ansible==2.6.0

Description

Manages VXLAN Network Virtualization Endpoint (NVE) overlay interface that terminates VXLAN tunnels.

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- nxos_vxlan_vtep:
    interface: nve1
    description: default
    host_reachability: default
    source_interface: Loopback0
    source_interface_hold_down_time: 30
    shutdown: default

Inputs

    
state:
    choices:
    - present
    - absent
    default: present
    description:
    - Determines whether the config should be present or not on the device.

shutdown:
    description:
    - Administratively shutdown the NVE interface.
    type: bool

interface:
    description:
    - Interface name for the VXLAN Network Virtualization Endpoint.
    required: true

description:
    description:
    - Description of the NVE interface.

source_interface:
    description:
    - Specify the loopback interface whose IP address should be used for the NVE interface.

host_reachability:
    description:
    - Specify mechanism for host reachability advertisement.
    type: bool

source_interface_hold_down_time:
    description:
    - Suppresses advertisement of the NVE loopback address until the overlay has converged.

Outputs

commands:
  description: commands sent to the device
  returned: always
  sample:
  - interface nve1
  - source-interface loopback0
  - source-interface hold-down-time 30
  - description simple description
  - shutdown
  - host-reachability protocol bgp
  type: list