community.network.ce_static_route_bfd module – Manages static route 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_static_route_bfd
.
New in community.network 0.2.0
Synopsis
Manages the static routes on HUAWEI CloudEngine switches.
Aliases: network.cloudengine.ce_static_route_bfd
Parameters
Parameter |
Comments |
---|---|
Destination ip address family type of static route. Choices:
|
|
bfd name (range 1-15). |
|
Incoming command line is used to send sys,undo ip route-static default-bfd,commit. |
|
Name of the route. Used with the name parameter on the CLI. |
|
VPN instance of next hop ip address. |
|
Configure the BFD multiplier (range 3-50). |
|
Used to distinguish between command line functions. Choices:
|
|
Destination ip mask of static route. |
|
Set the minimum BFD receive interval (range 50-1000). |
|
Set the minimum BFD session sending interval (range 50-1000). |
|
Next hop address of static route. |
|
Next hop interface full name of static route. |
|
Preference or administrative difference of route (range 1-255). |
|
Destination ip address of static route. |
|
Specify desired state of the resource. Choices:
|
|
Route tag value (numeric). |
|
VPN instance of destination ip address. |
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.If no vrf is supplied, vrf is set to default.
If state=absent, the route configuration will be removed, regardless of the non-required parameters.
Examples
#ip route-static bfd interface-type interface-number nexthop-address [ local-address address ]
#[ min-rx-interval min-rx-interval | min-tx-interval min-tx-interval | detect-multiplier multiplier ]
- name: Config an ip route-static bfd 10GE1/0/1 3.3.3.3 min-rx-interval 50 min-tx-interval 50 detect-multiplier 5
community.network.ce_static_route_bfd:
function_flag: 'singleBFD'
nhp_interface: 10GE1/0/1
next_hop: 3.3.3.3
min_tx_interval: 50
min_rx_interval: 50
detect_multiplier: 5
aftype: v4
state: present
#undo ip route-static bfd [ interface-type interface-number | vpn-instance vpn-instance-name ] nexthop-address
- name: Undo ip route-static bfd 10GE1/0/1 3.3.3.4
community.network.ce_static_route_bfd:
function_flag: 'singleBFD'
nhp_interface: 10GE1/0/1
next_hop: 3.3.3.4
aftype: v4
state: absent
#ip route-static default-bfd { min-rx-interval {min-rx-interval} | min-tx-interval {min-tx-interval} | detect-multiplier {multiplier}}
- name: Config an ip route-static default-bfd min-rx-interval 50 min-tx-interval 50 detect-multiplier 6
community.network.ce_static_route_bfd:
function_flag: 'globalBFD'
min_tx_interval: 50
min_rx_interval: 50
detect_multiplier: 6
aftype: v4
state: present
- name: Undo ip route-static default-bfd
community.network.ce_static_route_bfd:
function_flag: 'globalBFD'
aftype: v4
state: absent
commands: 'sys,undo ip route-static default-bfd,commit'
- name: Config an ipv4 static route 2.2.2.0/24 2.2.2.1 preference 1 tag 2 description test for staticBFD
community.network.ce_static_route_bfd:
function_flag: 'staticBFD'
prefix: 2.2.2.2
mask: 24
next_hop: 2.2.2.1
tag: 2
description: test
pref: 1
aftype: v4
bfd_session_name: btoa
state: present
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 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: |