cisco.nxos.nxos_bfd_global (7.0.0) — module

Bidirectional Forwarding Detection (BFD) global-level configuration

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

Authors: Chris Van Heuveln (@chrisvanheuveln)

Install collection

Install with ansible-galaxy collection install cisco.nxos:==7.0.0


Add to requirements.yml

  collections:
    - name: cisco.nxos
      version: 7.0.0

Description

Manages Bidirectional Forwarding Detection (BFD) global-level configuration.

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- cisco.nxos.nxos_bfd_global:
    echo_interface: Ethernet1/2
    echo_rx_interval: 50
    interval:
      tx: 50
      min_rx: 50
      multiplier: 4

Inputs

    
interval:
    description:
    - BFD interval timer values.
    - Value must be a dict defining values for keys (tx, min_rx, and multiplier)
    required: false
    type: dict

slow_timer:
    description:
    - BFD slow rate timer in milliseconds.
    required: false
    type: int

ipv4_interval:
    description:
    - BFD IPv4 interval timer values.
    - Value must be a dict defining values for keys (tx, min_rx, and multiplier).
    required: false
    type: dict

ipv6_interval:
    description:
    - BFD IPv6 interval timer values.
    - Value must be a dict defining values for keys (tx, min_rx, and multiplier).
    required: false
    type: dict

startup_timer:
    description:
    - BFD delayed startup timer in seconds.
    - Not supported on N5K/N6K/N7K
    required: false
    type: int

echo_interface:
    description:
    - Loopback interface used for echo frames.
    - Valid values are loopback interface name or 'deleted'.
    - Not supported on N5K/N6K
    required: false
    type: str

fabricpath_vlan:
    description:
    - BFD fabricpath control vlan.
    required: false
    type: int

ipv4_slow_timer:
    description:
    - BFD IPv4 slow rate timer in milliseconds.
    required: false
    type: int

ipv6_slow_timer:
    description:
    - BFD IPv6 slow rate timer in milliseconds.
    required: false
    type: int

echo_rx_interval:
    description:
    - BFD Echo receive interval in milliseconds.
    required: false
    type: int

fabricpath_interval:
    description:
    - BFD fabricpath interval timer values.
    - Value must be a dict defining values for keys (tx, min_rx, and multiplier).
    required: false
    type: dict

fabricpath_slow_timer:
    description:
    - BFD fabricpath slow rate timer in milliseconds.
    required: false
    type: int

ipv4_echo_rx_interval:
    description:
    - BFD IPv4 session echo receive interval in milliseconds.
    required: false
    type: int

ipv6_echo_rx_interval:
    description:
    - BFD IPv6 session echo receive interval in milliseconds.
    required: false
    type: int

Outputs

cmds:
  description: commands sent to the device
  returned: always
  sample:
  - bfd echo-interface loopback1
  - bfd slow-timer 2000
  type: list