community.network.ce_multicast_igmp_enable module – Manages multicast igmp enable configuration on HUAWEI CloudEngine switches.
Note
This module is part of the community.network collection (version 5.0.2).
You might already have this collection installed if you are using the ansible
package.
It is not included in ansible-core
.
To check whether it is installed, run ansible-galaxy collection list
.
To install it, use: ansible-galaxy collection install community.network
.
To use it in a playbook, specify: community.network.ce_multicast_igmp_enable
.
New in community.network 0.2.0
Synopsis
Manages multicast igmp on HUAWEI CloudEngine switches.
Aliases: network.cloudengine.ce_multicast_igmp_enable
Parameters
Parameter |
Comments |
---|---|
Destination ip address family type of static route. Choices:
|
|
Distinguish between Globally Enabled IGMP or Enabled IGMP under vlanID. Choices:
|
|
Enable Layer 2 multicast Snooping in a VLAN. Choices:
|
|
Layer 2 multicast snooping proxy is enabled. Choices:
|
|
Specify desired state of the resource. Choices:
|
|
Specifies the IGMP version that can be processed. Default: |
|
Virtual LAN identity. |
Notes
Note
If no vrf is supplied, vrf is set to default. If state=absent, the route will be removed, regardless of the non-required parameters.
This module requires the netconf system service be enabled on the remote device being managed.
This module works with connection
netconf
.
Examples
- name: Configure global igmp enable
community.network.ce_multicast_igmp_enable:
aftype: v4
features: 'global'
state: present
- name: Configure global igmp disable
community.network.ce_multicast_igmp_enable:
features: 'global'
aftype: v4
state: absent
- name: Configure vlan igmp enable
community.network.ce_multicast_igmp_enable:
features: 'vlan'
aftype: v4
vlan_id: 1
igmp: true
- name: New proxy,igmp,version
community.network.ce_multicast_igmp_enable:
features: 'vlan'
aftype: v4
vlan_id: 1
proxy: true
igmp: true
version: 1
- name: Modify proxy,igmp,version
community.network.ce_multicast_igmp_enable:
features: 'vlan'
aftype: v4
vlan_id: 1
version: 2
- name: Delete proxy,igmp,version
community.network.ce_multicast_igmp_enable:
features: 'vlan'
aftype: v4
vlan_id: 1
state: absent
Return Values
Common return values are documented here, the following are the fields unique to this module:
Key |
Description |
---|---|
check if a change was made on the device Returned: always Sample: |
|
k/v pairs of switchport after module execution Returned: always Sample: |
|
k/v pairs of existing switchport Returned: always Sample: |
|
k/v pairs of parameters passed into module Returned: always Sample: |
|
command list sent to the device Returned: always Sample: |