cisco.nxos.nxos_pim (7.0.0) — module

Manages configuration of a PIM instance.

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

Authors: Gabriele Gerbino (@GGabriele)

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 configuration of a Protocol Independent Multicast (PIM) instance.

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Configure ssm_range, enable bfd
  cisco.nxos.nxos_pim:
    bfd: enable
    ssm_range: 224.0.0.0/8
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Set to default
  cisco.nxos.nxos_pim:
    ssm_range: default
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Remove all ssm group ranges
  cisco.nxos.nxos_pim:
    ssm_range: none

Inputs

    
bfd:
    choices:
    - enable
    - disable
    description:
    - Enables BFD on all PIM interfaces.
    - 'Dependency: ''''feature bfd'''''
    type: str

ssm_range:
    default: []
    description:
    - Configure group ranges for Source Specific Multicast (SSM). Valid values are multicast
      addresses or the keyword C(none) or keyword C(default). C(none) removes all SSM
      group ranges. C(default) will set ssm_range to the default multicast address. If
      you set multicast address, please ensure that it is not the same as the C(default),
      otherwise use the C(default) option.
    elements: str
    type: list

Outputs

commands:
  description: commands sent to the device
  returned: always
  sample:
  - ip pim bfd
  - ip pim ssm range 224.0.0.0/8
  type: list