Skip to content

Latest commit

 

History

History
148 lines (114 loc) · 4.76 KB

cisco.nxos.nxos_pim_module.rst

File metadata and controls

148 lines (114 loc) · 4.76 KB

cisco.nxos.nxos_pim

Manages configuration of a PIM instance.

Version added: 1.0.0

  • Manages configuration of a Protocol Independent Multicast (PIM) instance.
Parameter Choices/Defaults Comments
bfd
string
    Choices:
  • enable
  • disable
Enables BFD on all PIM interfaces.
Dependency: ''feature bfd''
ssm_range
list / elements=string
Default:
[]
Configure group ranges for Source Specific Multicast (SSM). Valid values are multicast addresses or the keyword none or keyword default. none removes all SSM group ranges. 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 default, otherwise use the default option.

Note

- name: Configure ssm_range, enable bfd
  cisco.nxos.nxos_pim:
    bfd: enable
    ssm_range: 224.0.0.0/8

- name: Set to default
  cisco.nxos.nxos_pim:
    ssm_range: default

- name: Remove all ssm group ranges
  cisco.nxos.nxos_pim:
    ssm_range: none

Common return values are documented here, the following are the fields unique to this module:

Key Returned Description
commands
list
always
commands sent to the device

Sample:
['ip pim bfd', 'ip pim ssm range 224.0.0.0/8']


Authors

  • Gabriele Gerbino (@GGabriele)