community.network.ce_interface_ospf 模块 – 管理华为 CloudEngine 交换机上 OSPF 接口实例的配置。
注意
此模块是 community.network 集合(版本 5.1.0)的一部分。
如果您正在使用 ansible
包,您可能已经安装了这个集合。 它不包含在 ansible-core
中。 要检查是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用:ansible-galaxy collection install community.network
。
要在 playbook 中使用它,请指定:community.network.ce_interface_ospf
。
注意
community.network 集合已被弃用,并将从 Ansible 12 中移除。有关更多信息,请参阅讨论主题。
已弃用
- 移除于:
版本 6.0.0
- 原因:
此集合及其中的所有内容均未维护且已弃用。
- 替代方案:
未知。
概要
管理华为 CloudEngine 交换机上 OSPF 接口实例的配置。
别名:network.cloudengine.ce_interface_ospf
参数
参数 |
注释 |
---|---|
与此 ospf 进程关联的 Ospf 区域。有效值是字符串,格式为 IP 地址(即“0.0.0.0”)或介于 1 和 4294967295 之间的整数。 |
|
当 |
|
指定身份验证类型。 选项
|
|
指定用于 MD5、HMAC-MD5 或 HMAC-SHA256 身份验证的密码。该值是 1 到 255 个区分大小写的字符的字符串,不支持空格。 |
|
指定用于简单身份验证的密码。该值是 1 到 8 个字符的字符串。 |
|
与此接口关联的成本。有效值是 1 到 65535 范围内的整数。 |
|
OSPF 邻居在终止邻接之前等待 hello 数据包的时间间隔。有效值是 1 到 235926000 范围内的整数。 |
|
发送连续 hello 数据包之间的时间。有效值是 1 到 65535 范围内的整数。 |
|
接口的全名,例如 40GE1/0/10。 |
|
指定进程 ID。该值是 1 到 4294967295 范围内的整数。 |
|
设置为 true 将阻止此接口接收 HELLO 数据包。有效值为“true”和“false”。 选项
|
|
确定设备上是否存在配置。 选项
|
说明
注意
此模块要求在被管理的远程设备上启用 netconf 系统服务。
推荐的连接是
netconf
。此模块也适用于用于传统 playbook 的
local
连接。
示例
- name: Eth_trunk module test
hosts: cloudengine
connection: local
gather_facts: false
vars:
cli:
host: "{{ inventory_hostname }}"
port: "{{ ansible_ssh_port }}"
username: "{{ username }}"
password: "{{ password }}"
transport: cli
tasks:
- name: Enables OSPF and sets the cost on an interface
community.network.ce_interface_ospf:
interface: 10GE1/0/30
process_id: 1
area: 100
cost: 100
provider: '{{ cli }}'
- name: Sets the dead interval of the OSPF neighbor
community.network.ce_interface_ospf:
interface: 10GE1/0/30
process_id: 1
area: 100
dead_interval: 100
provider: '{{ cli }}'
- name: Sets the interval for sending Hello packets on an interface
community.network.ce_interface_ospf:
interface: 10GE1/0/30
process_id: 1
area: 100
hello_interval: 2
provider: '{{ cli }}'
- name: Disables an interface from receiving and sending OSPF packets
community.network.ce_interface_ospf:
interface: 10GE1/0/30
process_id: 1
area: 100
silent_interface: true
provider: '{{ cli }}'
返回值
常见返回值记录在此处,以下是此模块独有的字段
键 |
描述 |
---|---|
检查设备上是否进行了更改 返回: 始终 示例: |
|
模块执行后配置的键值对 返回: 详细模式 示例: |
|
现有配置的键值对 返回: 详细模式 示例: |
|
传递到模块的参数的键值对 返回: 详细模式 示例: |
|
发送到设备的命令 返回: 始终 示例: |
状态
此模块将在版本 6.0.0 中删除。[已弃用]
有关更多信息,请参阅已弃用。