ansible.builtin.nxos_pim (v2.6.0) — module

Manages configuration of a PIM instance.

| "added in version" 2.2 of ansible.builtin"

Authors: Gabriele Gerbino (@GGabriele)

preview | supported by network

Install Ansible via pip

Install with pip install ansible==2.6.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
  nxos_pim:
    ssm_range: "224.0.0.0/8"
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Set to default
  nxos_pim:
    ssm_range: default
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Remove all ssm group ranges
  nxos_pim:
    ssm_range: none

Inputs

    
ssm_range:
    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.
    required: true

Outputs

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