nxos_bfd_interfaces – Manages BFD attributes of nxos interfaces¶
New in version 2.9.
Parameters¶
Examples¶
# Using deleted
- name: Configure interfaces
  nxos_bfd_interfaces:
    state: deleted
# Using merged
- name: Configure interfaces
  nxos_bfd_interfaces:
    config:
      - name: Ethernet1/1
        bfd: enable
        echo: enable
      - name: Ethernet1/2
        bfd: disable
        echo: disable
    state: merged
# Using overridden
- name: Configure interfaces
  nxos_bfd_interfaces:
    config:
      - name: Ethernet1/1
        bfd: enable
        echo: enable
      - name: Ethernet1/2
        bfd: disable
        echo: disable
    state: overridden
# Using replaced
- name: Configure interfaces
  nxos_bfd_interfaces:
    config:
      - name: Ethernet1/1
        bfd: enable
        echo: enable
      - name: Ethernet1/2
        bfd: disable
        echo: disable
    state: replaced
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 Network Team. [network]
Red Hat Support¶
More information about Red Hat’s support of this module is available from this Red Hat Knowledge Base article.
Authors¶
- Chris Van Heuveln (@chrisvanheuveln)
Hint
If you notice any issues in this documentation, you can edit this document to improve it.
