community.network.ce_lldp 模块 – 管理华为CloudEngine交换机上的LLDP配置。
注意
此模块是 community.network 集合 (版本 5.1.0) 的一部分。
如果您正在使用 ansible
包,则可能已经安装了此集合。它不包含在 ansible-core
中。要检查它是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用: ansible-galaxy collection install community.network
。
要在playbook中使用它,请指定: community.network.ce_lldp
。
注意
community.network 集合已被弃用,并将从 Ansible 12 中移除。请参阅 讨论主题 以了解更多信息。
community.network 0.2.0 中的新增功能
已弃用
- 在以下版本中移除:
6.0.0版本
- 原因:
此集合及其中的所有内容均未维护且已弃用。
- 替代方案:
未知。
摘要
管理华为CloudEngine交换机上的LLDP配置。
别名:network.cloudengine.ce_lldp
参数
参数 |
注释 |
---|---|
绑定接口名称。 |
|
指定设备发送到邻居节点的LLDP消息数量。 |
|
邻居设备中设备信息的倍数。 |
|
发送LLDP公告的频率(以秒为单位)。 |
|
设置全局LLDP启用状态。 选项
|
|
LLDP的管理IP地址。 |
|
发送MDN邻居信息变更告警的延迟时间。 |
|
设置全局MDN启用状态。 选项
|
|
发送LLDP告警的抑制时间。 |
|
指定接口LLDP模块从禁用状态重新启用时的延迟时间。 |
|
管理资源的状态。 选项
|
|
发送LLDP消息的延迟时间。 |
备注
注意
此模块要求在被管理的远程设备上启用netconf系统服务。
推荐连接方式为
netconf
。此模块也适用于旧版playbook的
local
连接。
示例
- name: "Configure global LLDP enable state"
community.network.ce_lldp:
lldpenable: enabled
- name: "Configure global MDN enable state"
community.network.ce_lldp:
mdnstatus: rxOnly
- name: "Configure LLDP transmit interval and ensure global LLDP state is already enabled"
community.network.ce_lldp:
enable: enable
interval: 32
- name: "Configure LLDP transmit multiplier hold and ensure global LLDP state is already enabled"
community.network.ce_lldp:
enable: enable
hold_multiplier: 5
- name: "Configure the delay time of the interface LLDP module from disabled state to re enable"
community.network.ce_lldp:
enable: enable
restart_delay: 3
- name: "Reset the delay time for sending LLDP messages"
community.network.ce_lldp:
enable: enable
transmit_delay: 4
- name: "Configure device to send neighbor device information change alarm delay time"
community.network.ce_lldp:
lldpenable: enabled
notification_interval: 6
- name: "Configure the number of LLDP messages sent to the neighbor nodes by the specified device"
community.network.ce_lldp:
enable: enable
fast_count: 5
- name: "Configure the delay time for sending MDN neighbor information change alarm"
community.network.ce_lldp:
enable: enable
mdn_notification_interval: 6
- name: "Configuring the management IP address of LLDP"
community.network.ce_lldp:
enable: enable
management_address: 10.1.0.1
- name: "Configuring LLDP to manage the binding relationship between IP addresses and interfaces"
community.network.ce_lldp:
enable: enable
bind_name: LoopBack2
返回值
常用的返回值已在 此处 记录,以下是此模块特有的字段
键 |
描述 |
---|---|
检查设备上是否进行了更改 返回值:始终 示例: |
|
模块执行后全局LLDP配置的键值对。 返回值:始终 示例: |
|
现有全局LLDP配置的键值对。 返回值:始终 示例: |
|
传递到模块的参数的键值对 返回值:始终 示例: |
|
发送到设备的命令 返回值:始终 示例: |
状态
此模块将在6.0.0版本中移除。[已弃用]
更多信息请参见 已弃用。