community.network.cnos_static_route 模块 – 在 Lenovo CNOS 网络设备上管理静态 IP 路由

注意

此模块是 community.network 集合 (版本 5.1.0) 的一部分。

如果您使用的是 ansible 包,则可能已安装此集合。它不包含在 ansible-core 中。要检查它是否已安装,请运行 ansible-galaxy collection list

要安装它,请使用: ansible-galaxy collection install community.network

要在剧本中使用它,请指定: community.network.cnos_static_route

注意

community.network 集合已被弃用,并将从 Ansible 12 中删除。有关更多信息,请参阅 讨论主题

已弃用

在以下版本中移除:

版本 6.0.0

原因:

此集合及其中的所有内容均未维护且已弃用。

替代方案:

未知。

概要

  • 此模块提供对 Lenovo CNOS 网络设备上静态 IP 路由的声明式管理。

别名:network.cnos.cnos_static_route

参数

参数

注释

admin_distance

字符串

静态路由的管理距离。

默认值: 1

aggregate

字符串

静态路由定义列表。

description

别名:description

字符串

静态路由的名称

interface

字符串

静态路由的接口。

mask

字符串

静态路由的网络前缀掩码。

next_hop

字符串

静态路由的下一跳 IP。

prefix

字符串

静态路由的网络前缀。

state

字符串

静态路由配置的状态。

选项

  • "present" ← (默认)

  • "absent"

tag

字符串

设置静态路由的标签。

备注

注意

  • 针对 CNOS 10.10.1 测试

示例

- name: Configure static route
  community.network.cnos_static_route:
    prefix: 10.241.107.0
    mask: 255.255.255.0
    next_hop: 10.241.106.1

- name: Configure ultimate route with name and tag
  community.network.cnos_static_route:
    prefix: 10.241.107.0
    mask: 255.255.255.0
    interface: Ethernet1/13
    description: hello world
    tag: 100

- name: Remove configuration
  community.network.cnos_static_route:
    prefix: 10.241.107.0
    mask: 255.255.255.0
    next_hop: 10.241.106.0
    state: absent

- name: Add static route aggregates
  community.network.cnos_static_route:
    aggregate:
      - { prefix: 10.241.107.0, mask: 255.255.255.0, next_hop: 10.241.105.0 }
      - { prefix: 10.241.106.0, mask: 255.255.255.0, next_hop: 10.241.104.0 }

- name: Remove static route aggregates
  community.network.cnos_static_route:
    aggregate:
      - { prefix: 10.241.107.0, mask: 255.255.255.0, next_hop: 10.241.105.0 }
      - { prefix: 10.241.106.0, mask: 255.255.255.0, next_hop: 10.241.104.0 }
    state: absent

返回值

常见的返回值已在此处记录,以下是此模块特有的字段

描述

commands

列表 / 元素=字符串

要发送到设备的配置模式命令列表

返回:始终

示例: ["ip route 10.241.107.0 255.255.255.0 10.241.106.0"]

状态

  • 此模块将在 6.0.0 版本中删除。[已弃用]

  • 有关更多信息,请参阅 已弃用

作者

  • Anil Kumar Muraleedharan (@amuraleedhar)