Skip to content

Latest commit

 

History

History
69 lines (53 loc) · 2.15 KB

cisco.nxos.nxos_pim.rst

File metadata and controls

69 lines (53 loc) · 2.15 KB

NxosPim()

  • NxosPim() generates Ansible Playbook tasks conformant with cisco.nxos.nxos_pim
  • These can then be passed to Playbook().add_task()

The following must be enabled prior to applying nxos_pim playbook:

feature pim

Property Description
bfd

Enables BFD on all PIM interfaces:

- Type: str()
- Valid values:
    - disable
    - enable
- Dependency: 'feature bfd
- Example:
    task.bfd = 'enable'
ssm_range

Configure group ranges for Source Specific Multicast (SSM):

- Type: list() or str()
- Valid values:
    - default
        - set ssm_range to 232.0.0.0/8
    - none
        - remove all ssm group ranges
    - list()
        - list of multicast group ranges
- Examples:
    task.ssm_range = 'default'
    task.ssm_range = 'none'

    ssm = list()
    ssm.append('225.1.0.0/16')
    ssm.append('225.4.1.0/24')
    task.ssm_range = ssm

Authors

  • Allen Robel (@PacketCalc)