community.network.ce_multicast_global – Manages multicast global configuration on HUAWEI CloudEngine switches.¶
Note
This plugin is part of the community.network collection (version 2.1.1).
To install it use: ansible-galaxy collection install community.network
.
To use it in a playbook, specify: community.network.ce_multicast_global
.
New in version 0.2.0: of community.network
Parameters¶
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: Multicast routing-enable
community.network.ce_multicast_global:
aftype: v4
state: absent
provider: "{{ cli }}"
- name: Multicast routing-enable
community.network.ce_multicast_global:
aftype: v4
state: present
provider: "{{ cli }}"
- name: Multicast routing-enable
community.network.ce_multicast_global:
aftype: v4
vrf: vrf1
provider: "{{ cli }}"
Return Values¶
Common return values are documented here, the following are the fields unique to this module:
Authors¶
xuxiaowei0512 (@xuxiaowei0512)