community.network.ce_bfd_session module – Manages BFD session configuration 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_bfd_session
.
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 BFD session configuration, creates a BFD session or deletes a specified BFD session on HUAWEI CloudEngine devices.
Aliases: network.cloudengine.ce_bfd_session
Parameters
Parameter |
Comments |
---|---|
Specifies the peer IP address type. Choices:
|
|
BFD session creation mode, the currently created BFD session only supports static or static auto-negotiation mode. Choices:
|
|
Specifies the peer IP address bound to the BFD session. |
|
The BFD session local identifier does not need to be configured when the mode is auto. |
|
Specifies the type and number of the interface bound to the BFD session. |
|
The BFD session remote identifier does not need to be configured when the mode is auto. |
|
Specifies the name of a BFD session. The value is a string of 1 to 15 case-sensitive characters without spaces. |
|
Indicates the source IP address carried in BFD packets. |
|
Determines whether the config should be present or not on the device. Choices:
|
|
Indicates the default multicast IP address that is bound to a BFD session. By default, BFD uses the multicast IP address 224.0.0.184. You can set the multicast IP address by running the default-ip-address command. The value is a bool type. Choices:
|
|
Specifies the name of a Virtual Private Network (VPN) instance that is bound to a BFD session. The value is a string of 1 to 31 case-sensitive characters, spaces not supported. When double quotation marks are used around the string, spaces are allowed in the string. The value _public_ is reserved and cannot be used as the VPN instance name. |
Notes
Note
This module requires the netconf system service be enabled on the remote device being managed.
Recommended connection is
netconf
.This module also works with
local
connections for legacy playbooks.
Examples
- name: Bfd session module test
hosts: cloudengine
connection: local
gather_facts: false
tasks:
- name: Configuring Single-hop BFD for Detecting Faults on a Layer 2 Link
community.network.ce_bfd_session:
session_name: bfd_l2link
use_default_ip: true
out_if_name: 10GE1/0/1
local_discr: 163
remote_discr: 163
- name: Configuring Single-Hop BFD on a VLANIF Interface
community.network.ce_bfd_session:
session_name: bfd_vlanif
dest_addr: 10.1.1.6
out_if_name: Vlanif100
local_discr: 163
remote_discr: 163
- name: Configuring Multi-Hop BFD
community.network.ce_bfd_session:
session_name: bfd_multi_hop
dest_addr: 10.1.1.1
local_discr: 163
remote_discr: 163
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: always Sample: |
|
k/v pairs of existing configuration Returned: always Sample: |
|
k/v pairs of parameters passed into module Returned: always 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.