ansible.builtin.aci_intf_policy_lldp (v2.4.6.0-1) — module

Manage LLDP interface policies on Cisco ACI fabrics (lldp:IfPol)

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

Authors: Swetha Chunduri (@schunduri), Dag Wieers (@dagwieers), Jacob McGill (@jmcgill298)

preview | supported by community

Install Ansible via pip

Install with pip install ansible==2.4.6.0.post1

Description

Manage LLDP interface policies on Cisco ACI fabrics.

More information from the internal APIC class I(lldp:IfPol) at U(https://developer.cisco.com/media/mim-ref/MO-lldpIfPol.html).


Requirements

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- aci_intf_policy_lldp:
    hostname: '{{ hostname }}'
    username: '{{ username }}'
    password: '{{ password }}'
    lldp_policy: '{{ lldp_policy }}'
    description: '{{ description }}'
    receive_state: '{{ receive_state }}'
    transmit_state: '{{ transmit_state }}'

Inputs

    
state:
    choices:
    - absent
    - present
    - query
    default: present
    description:
    - Use C(present) or C(absent) for adding or removing.
    - Use C(query) for listing an object or multiple objects.

description:
    aliases:
    - descr
    description:
    - The description for the LLDP interface policy name.

lldp_policy:
    aliases:
    - name
    description:
    - The LLDP interface policy name.
    required: true

receive_state:
    choices:
    - disabled
    - enabled
    default: enabled
    description:
    - Enable or disable Receive state (FIXME!)
    required: true

transmit_state:
    choices:
    - disabled
    - enabled
    default: enabled
    description:
    - Enable or Disable Transmit state (FIXME!)
    required: false