mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-24 22:00:22 -07:00
fix nxos_pim module doc (#36505)
* fix nxos_pim module doc Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * address review
This commit is contained in:
parent
52f2057472
commit
9598978e12
1 changed files with 17 additions and 5 deletions
|
@ -34,13 +34,25 @@ options:
|
||||||
ssm_range:
|
ssm_range:
|
||||||
description:
|
description:
|
||||||
- Configure group ranges for Source Specific Multicast (SSM).
|
- Configure group ranges for Source Specific Multicast (SSM).
|
||||||
Valid values are multicast addresses or the keyword 'none'
|
Valid values are multicast addresses or the keyword C(none)
|
||||||
or keyword 'default'
|
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
|
required: true
|
||||||
'''
|
'''
|
||||||
EXAMPLES = '''
|
EXAMPLES = '''
|
||||||
- nxos_pim:
|
- name: Configure ssm_range
|
||||||
ssm_range: "232.0.0.0/8"
|
nxos_pim:
|
||||||
|
ssm_range: "224.0.0.0/8"
|
||||||
|
|
||||||
|
- name: Set to default
|
||||||
|
nxos_pim:
|
||||||
|
ssm_range: default
|
||||||
|
|
||||||
|
- name: Remove all ssm group ranges
|
||||||
|
nxos_pim:
|
||||||
|
ssm_range: none
|
||||||
'''
|
'''
|
||||||
|
|
||||||
RETURN = '''
|
RETURN = '''
|
||||||
|
@ -48,7 +60,7 @@ commands:
|
||||||
description: commands sent to the device
|
description: commands sent to the device
|
||||||
returned: always
|
returned: always
|
||||||
type: list
|
type: list
|
||||||
sample: ["ip pim ssm range 232.0.0.0/8"]
|
sample: ["ip pim ssm range 224.0.0.0/8"]
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue