community.network.exos_facts 模块 – 收集运行 Extreme EXOS 的设备信息

注意

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

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

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

要在 playbook 中使用它,请指定: community.network.exos_facts

注意

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

已弃用

移除于:

6.0.0 版本

原因:

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

替代方案:

未知。

摘要

  • 从运行 EXOS 的远程设备收集一组基本的设备信息。此模块将所有基本网络信息键的前缀都设置为 ansible_net_<fact>。信息模块将始终从设备收集一组基本信息,并且可以启用或禁用其他信息的收集。

别名:network.exos.exos_facts

参数

参数

注释

gather_network_resources

列表 / 元素=字符串

提供此参数时,它将收集的信息限制为给定的子集。此参数的可能值为 all 和诸如 interfaces、vlans 等资源。可以指定一个值列表以包含更大的子集。值也可以与初始 ! 一起使用,以指定不应收集特定子集。有效的子集是“all”、“lldp_global”、“lldp_interfaces”、“vlans”、“l2_interfaces”。

gather_subset

列表 / 元素=字符串

提供此参数时,它将收集的信息限制为给定的子集。此参数的可能值为 all、hardware、config 和 interfaces。可以指定一个值列表以包含更大的子集。值也可以与初始 ! 一起使用,以指定不应收集特定子集。

默认值: ["!config"]

备注

注意

示例

- name:  Gather all legacy facts
  community.network.exos_facts:
    gather_subset: all

- name: Gather only the config and default facts
  community.network.exos_facts:
    gather_subset: config

- name: Do not gather hardware facts
  community.network.exos_facts:
    gather_subset: "!hardware"

- name: Gather legacy and resource facts
  community.network.exos_facts:
    gather_subset: all
    gather_network_resources: all

- name: Gather only the lldp global resource facts and no legacy facts
  community.network.exos_facts:
    gather_subset:
      - '!all'
      - '!min'
    gather_network_resources:
      - lldp_global

- name: Gather lldp global resource and minimal legacy facts
  community.network.exos_facts:
    gather_subset: min
    gather_network_resources: lldp_global

返回值

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

描述

ansible_net_all_ipv4_addresses

列表 / 元素=字符串

在设备上配置的所有 IPv4 地址

返回:当配置 interfaces 时

ansible_net_all_ipv6_addresses

列表 / 元素=字符串

在设备上配置的所有主 IPv6 地址

返回:当配置 interfaces 时

ansible_net_config

字符串

设备当前的活动配置

返回:当配置 config 时

ansible_net_gather_network_resources

列表 / 元素=字符串

从设备收集的网络资源子集的信息列表

返回:当配置资源时

ansible_net_gather_subset

列表 / 元素=字符串

从设备收集的信息子集列表

返回:始终返回

ansible_net_hostname

字符串

设备的配置主机名

返回:始终返回

ansible_net_interfaces

字典

系统上运行的所有接口的哈希表

返回:当配置 interfaces 时

ansible_net_memfree_mb

整数

远程设备上可用空闲内存(以 MB 为单位)

返回:当配置 hardware 时

ansible_net_memtotal_mb

整数

远程设备上的总内存(以 MB 为单位)

返回:当配置 hardware 时

ansible_net_model

字符串

设备返回的型号名称

返回:始终返回

ansible_net_neighbors

字典

远程设备的 LLDP 邻居列表

返回:当配置 interfaces 时

ansible_net_serialnum

字符串

远程设备的序列号

返回:始终返回

ansible_net_version

字符串

远程设备上运行的操作系统版本

返回:始终返回

状态

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

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

作者

  • Lance Richardson (@hlrichardson)

  • Ujwal Koamrla (@ujwalkomarla)