netapp_eseries.santricity.na_santricity_ib_iser_interface 模块 – NetApp E 系列管理 InfiniBand iSER 接口配置

注意

此模块是 netapp_eseries.santricity 集合 (版本 1.4.1) 的一部分。

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

要安装它,请使用:ansible-galaxy collection install netapp_eseries.santricity

要在 playbook 中使用它,请指定:netapp_eseries.santricity.na_santricity_ib_iser_interface

概要

  • 配置 E 系列 InfiniBand iSER 接口 IPv4 地址配置的设置。

参数

参数

注释

address

字符串 / 必需

要分配给接口的 IPv4 地址。

应以 xx.xx.xx.xx 的形式指定。

api_password

字符串 / 必需

用于对 SANtricity Web Services Proxy 或嵌入式 Web Services API 进行身份验证的密码。

api_url

字符串 / 必需

SANtricity Web Services Proxy 或嵌入式 Web Services API 的 URL。

示例 https://prod-1.wahoo.acme.com:8443/devmgr/v2

api_username

字符串 / 必需

用于对 SANtricity Web Services Proxy 或嵌入式 Web Services API 进行身份验证的用户名。

channel

整数 / 必需

您希望修改的 InfiniBand HCA 端口。

端口从左到右排列,从 1 开始。

controller

字符串 / 必需

拥有要配置的端口的控制器。

控制器名称按字母顺序排列,第一个控制器为 A,第二个为 B,依此类推。

当前硬件型号有 1 个或 2 个可用的控制器,但这并非硬性限制,将来可能会更改。

选项

  • "A"

  • "B"

ssid

字符串

要管理的阵列的 ID。此值对于每个阵列必须唯一。

默认值: "1"

validate_certs

布尔值

是否应验证 https 证书?

选项

  • false

  • true ← (默认)

备注

注意

  • 支持检查模式。

  • E 系列 Ansible 模块需要 Web Services Proxy (WSP) 实例才能管理存储系统,或者需要支持嵌入式 Web Services API 的 E 系列存储系统。

  • 嵌入式 Web Services 目前适用于 E2800、E5700、EF570 和更新的硬件型号。

  • netapp_eseries.santricity.netapp_e_storage_system 可用于配置由 WSP 实例管理的系统。

示例

- name: Configure the first port on the A controller with a static IPv4 address
  na_santricity_ib_iser_interface:
    ssid: "1"
    api_url: "https://192.168.1.100:8443/devmgr/v2"
    api_username: "admin"
    api_password: "adminpass"
    validate_certs: true
    controller: "A"
    channel: "1"
    address: "192.168.1.100"

返回值

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

描述

enabled

布尔值

指示是否已启用或禁用 IPv4 连接。

这并不一定表示连接。例如,如果在没有 DHCP 服务器的情况下启用了 DHCP,则配置不太可能有效。

已返回:成功时

示例: true

msg

字符串

成功消息

已返回:成功时

示例: "The interface settings have been updated."

作者

  • Michael Price (@lmprice)

  • Nathan Swartz (@swartzn)

  • Vu Tran (@VuTran007)