community.general.aix_devices 模块 – 管理 AIX 设备

注意

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

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

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

要在 playbook 中使用它,请指定:community.general.aix_devices

概要

  • 此模块用于发现、定义、删除和修改 AIX 设备的属性。

参数

参数

注释

attributes

字典

设备属性列表。

device

字符串

设备的名称。

all 可用于重新扫描所有 available 设备(AIX cfgmgr 命令)。

force

布尔值

强制执行操作。

选项

  • false ← (默认)

  • true

recursive

布尔值

删除或定义设备及其子设备。

选项

  • false ← (默认)

  • true

state

字符串

控制设备状态。

available(别名 present)重新扫描特定设备或所有设备(当未指定 device 时)。

removed(别名 absent)删除设备。

defined 将设备更改为 Defined 状态。

选项

  • "available" ← (默认)

  • "defined"

  • "removed"

属性

属性

支持

描述

check_mode

支持: 完全

可以在 check_mode 中运行,并返回已更改的状态预测,而无需修改目标。

diff_mode

支持:

当处于差异模式时,将返回已更改的内容(或可能在 check_mode 中需要更改的内容)的详细信息。

示例

- name: Scan new devices
  community.general.aix_devices:
    device: all
    state: available

- name: Scan new virtual devices (vio0)
  community.general.aix_devices:
    device: vio0
    state: available

- name: Removing IP alias to en0
  community.general.aix_devices:
    device: en0
    attributes:
      delalias4: 10.0.0.100,255.255.255.0

- name: Removes ent2
  community.general.aix_devices:
    device: ent2
    state: removed

- name: Put device en2 in Defined
  community.general.aix_devices:
    device: en2
    state: defined

- name: Removes ent4 (inexistent).
  community.general.aix_devices:
    device: ent4
    state: removed

- name: Put device en4 in Defined (inexistent)
  community.general.aix_devices:
    device: en4
    state: defined

- name: Put vscsi1 and children devices in Defined state.
  community.general.aix_devices:
    device: vscsi1
    recursive: true
    state: defined

- name: Removes vscsi1 and children devices.
  community.general.aix_devices:
    device: vscsi1
    recursive: true
    state: removed

- name: Changes en1 mtu to 9000 and disables arp.
  community.general.aix_devices:
    device: en1
    attributes:
      mtu: 900
      arp: 'off'
    state: available

- name: Configure IP, netmask and set en1 up.
  community.general.aix_devices:
    device: en1
    attributes:
      netaddr: 192.168.0.100
      netmask: 255.255.255.0
      state: up
    state: available

- name: Adding IP alias to en0
  community.general.aix_devices:
    device: en0
    attributes:
      alias4: 10.0.0.100,255.255.255.0
    state: available

作者

  • Kairo Araujo (@kairoaraujo)