community.network.ce_vxlan_arp module – Manages ARP attributes of VXLAN on HUAWEI CloudEngine devices.
Note
This module is part of the community.network collection (version 5.1.0).
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_vxlan_arp.
Note
The community.network collection has been deprecated and will be removed from Ansible 12. See the discussion thread for more information.
DEPRECATED
- Removed in:
- version 6.0.0 
- Why:
- This collection and all content in it is unmaintained and deprecated. 
- Alternative:
- Unknown. 
Synopsis
- Manages ARP attributes of VXLAN on HUAWEI CloudEngine devices. 
Aliases: network.cloudengine.ce_vxlan_arp
Parameters
| Parameter | Comments | 
|---|---|
| Enables EVN BGP or BGP EVPN to collect host information. Choices: 
 | |
| Enables ARP broadcast suppression in a BD. Choices: 
 | |
| Specifies a BD(bridge domain) ID. The value is an integer ranging from 1 to 16777215. | |
| Enables EVN BGP. Choices: 
 | |
| Specifies the IP address of an EVN BGP peer. The value is in dotted decimal notation. | |
| Configures the local device as the route reflector (RR) and its peer as the client. Choices: 
 | |
| Configures the local device as the router reflector (RR) on the EVN network. Choices: 
 | |
| Specifies the source address of an EVN BGP peer. The value is in dotted decimal notation. | |
| Enables EVN BGP or BGP EVPN to advertise host information. Choices: 
 | |
| Determines whether the config should be present or not on the device. Choices: 
 | |
| Full name of VBDIF interface, i.e. Vbdif100. | 
Notes
Note
- Recommended connection is - network_cli.
- This module also works with - localconnections for legacy playbooks.
Examples
- name: Vxlan arp module test
  hosts: ce128
  connection: local
  gather_facts: false
  vars:
    cli:
      host: "{{ inventory_hostname }}"
      port: "{{ ansible_ssh_port }}"
      username: "{{ username }}"
      password: "{{ password }}"
      transport: cli
  tasks:
  - name: Configure EVN BGP on Layer 2 and Layer 3 VXLAN gateways to establish EVN BGP peer relationships.
    community.network.ce_vxlan_arp:
      evn_bgp: enable
      evn_source_ip: 6.6.6.6
      evn_peer_ip: 7.7.7.7
      provider: "{{ cli }}"
  - name: Configure a Layer 3 VXLAN gateway as a BGP RR.
    community.network.ce_vxlan_arp:
      evn_bgp: enable
      evn_server: enable
      provider: "{{ cli }}"
  - name: Enable EVN BGP on a Layer 3 VXLAN gateway to collect host information.
    community.network.ce_vxlan_arp:
      vbdif_name: Vbdif100
      arp_collect_host: enable
      provider: "{{ cli }}"
  - name: Enable Layer 2 and Layer 3 VXLAN gateways to use EVN BGP to advertise host information.
    community.network.ce_vxlan_arp:
      host_collect_protocol: bgp
      provider: "{{ cli }}"
  - name: Enable ARP broadcast suppression on a Layer 2 VXLAN gateway.
    community.network.ce_vxlan_arp:
      bridge_domain_id: 100
      arp_suppress: enable
      provider: "{{ cli }}"
Return Values
Common return values are documented here, the following are the fields unique to this module:
| Key | Description | 
|---|---|
| check to see if a change was made on the device Returned: always Sample:  | |
| k/v pairs of configuration after module execution Returned: verbose mode Sample:  | |
| k/v pairs of existing configuration Returned: verbose mode Sample:  | |
| k/v pairs of parameters passed into module Returned: verbose mode Sample:  | |
| commands sent to the device Returned: always Sample:  | 
Status
- This module will be removed in version 6.0.0. [deprecated] 
- For more information see DEPRECATED. 
