dellemc.openmanage.idrac_bios 模块 – 修改和清除 BIOS 属性,重置 BIOS 设置并配置启动源
注意
此模块是 dellemc.openmanage 集合 (版本 9.9.0) 的一部分。
如果您使用的是 ansible
包,则可能已安装此集合。它不包含在 ansible-core
中。要检查它是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用:ansible-galaxy collection install dellemc.openmanage
。您需要其他要求才能使用此模块,有关详细信息,请参阅 要求。
要在 playbook 中使用它,请指定:dellemc.openmanage.idrac_bios
。
dellemc.openmanage 2.1.0 中的新增功能
概要
此模块允许修改 BIOS 属性。还清除挂起的 BIOS 属性并将 BIOS 重置为默认设置。
可以启用或禁用启动源。可以配置启动顺序。
要求
执行此模块的主机需要以下要求。
omsdk >= 1.2.490
python >= 3.9.6
参数
参数 |
注释 |
---|---|
应用属性的时间。 这仅适用于属性。
选项
|
|
BIOS 属性和值对的字典。属性应属于 Redfish Dell BIOS 属性注册表的一部分。使用 https://I(idrac_ip/redfish/v1/Systems/System.Embedded.1/Bios) 查看 Redfish URI。 这与boot_sources、clear_pending和reset_bios互斥。 |
|
(已弃用)设置启动源设置的启动设备列表。 boot_sources与attributes、clear_pending和reset_bios互斥。 job_wait不可用。模块等待此任务完成。 此功能已弃用,请使用 dellemc.openmanage.idrac_boot 配置启动源。 |
|
包含用于验证的 CA 证书的隐私增强邮件 (PEM) 文件。 |
|
允许用户清除所有挂起的 BIOS 属性更改。
此操作不会创建任何作业。
这与boot_sources、attributes和reset_bios互斥。
选项
|
|
iDRAC IP 地址。 |
|
iDRAC 用户密码。 如果未提供密码,则使用环境变量 示例:export IDRAC_PASSWORD=password |
|
iDRAC 端口。 默认值: |
|
iDRAC 用户名。 如果未提供用户名,则使用环境变量 示例:export IDRAC_USERNAME=username |
|
提供等待作业完成的选项。 当apply_time为 选项
|
|
job_wait 的最大等待时间(秒)。仅在此期间跟踪作业。 当job_wait为 默认值: |
|
安排维护窗口的选项。 当apply_time为 |
|
维护窗口的持续时间(秒)。 |
|
要安排的维护窗口的开始时间。 格式为 YYYY-MM-DDThh:mm:ss |
|
将 BIOS 重置为默认设置并触发主机系统的重新启动。 重新启动后,这将应用于主机。 此操作不会创建任何作业。
这与boot_sources、attributes和clear_pending互斥。 当 选项
|
|
当apply_time为 选项
|
|
(已弃用)网络共享的本地挂载路径,ansible用户具有读写权限。此选项对于网络共享是必需的。 |
|
(已弃用)网络共享或本地路径。 |
|
(已弃用)网络共享用户密码。此选项对于CIFS共享是必需的。 |
|
(已弃用)网络共享用户名。使用格式 ‘user@domain’ 或 domain//user(如果用户属于域的一部分)。此选项对于CIFS共享是必需的。 |
|
套接字级别超时(秒)。 默认值: |
|
如果 仅在使用自签名证书的个人控制站点上配置 在集合版本 选项
|
备注
注意
仅当执行boot_sources操作时,才需要安装omsdk。
此模块需要idrac_user具有“管理员”权限。
从可以直接访问Dell iDRAC的系统运行此模块。
此模块支持idrac_ip的IPv4和IPv6地址。
此模块支持
check_mode
。
示例
---
- name: Configure generic attributes of the BIOS
dellemc.openmanage.idrac_bios:
idrac_ip: "192.168.0.1"
idrac_user: "user_name"
idrac_password: "user_password"
ca_path: "/path/to/ca_cert.pem"
attributes:
BootMode: "Bios"
OneTimeBootMode: "Enabled"
BootSeqRetry: "Enabled"
- name: Configure PXE generic attributes
dellemc.openmanage.idrac_bios:
idrac_ip: "192.168.0.1"
idrac_user: "user_name"
idrac_password: "user_password"
ca_path: "/path/to/ca_cert.pem"
attributes:
PxeDev1EnDis: "Enabled"
PxeDev1Protocol: "IPV4"
PxeDev1VlanEnDis: "Enabled"
PxeDev1VlanId: 1
PxeDev1Interface: "NIC.Embedded.1-1-1"
PxeDev1VlanPriority: 2
- name: Configure BIOS attributes at Maintenance window
dellemc.openmanage.idrac_bios:
idrac_ip: "192.168.0.1"
idrac_user: "user_name"
idrac_password: "user_password"
ca_path: "/path/to/ca_cert.pem"
apply_time: AtMaintenanceWindowStart
maintenance_window:
start_time: "2022-09-30T05:15:40-05:00"
duration: 600
attributes:
BootMode: "Bios"
OneTimeBootMode: "Enabled"
BootSeqRetry: "Enabled"
- name: Clear pending BIOS attributes
dellemc.openmanage.idrac_bios:
idrac_ip: "192.168.0.1"
idrac_user: "user_name"
idrac_password: "user_password"
ca_path: "/path/to/ca_cert.pem"
clear_pending: true
- name: Reset BIOS attributes to default settings.
dellemc.openmanage.idrac_bios:
idrac_ip: "192.168.0.1"
idrac_user: "user_name"
idrac_password: "user_password"
validate_certs: false
reset_bios: true
- name: Configure boot sources
dellemc.openmanage.idrac_bios:
idrac_ip: "192.168.0.1"
idrac_user: "user_name"
idrac_password: "user_password"
ca_path: "/path/to/ca_cert.pem"
boot_sources:
- Name: "NIC.Integrated.1-2-3"
Enabled: true
Index: 0
- name: Configure multiple boot sources
dellemc.openmanage.idrac_bios:
idrac_ip: "192.168.0.1"
idrac_user: "user_name"
idrac_password: "user_password"
ca_path: "/path/to/ca_cert.pem"
boot_sources:
- Name: "NIC.Integrated.1-1-1"
Enabled: true
Index: 0
- Name: "NIC.Integrated.2-2-2"
Enabled: true
Index: 1
- Name: "NIC.Integrated.3-3-3"
Enabled: true
Index: 2
- name: Configure boot sources - Enabling
dellemc.openmanage.idrac_bios:
idrac_ip: "192.168.0.1"
idrac_user: "user_name"
idrac_password: "user_password"
ca_path: "/path/to/ca_cert.pem"
boot_sources:
- Name: "NIC.Integrated.1-1-1"
Enabled: true
- name: Configure boot sources - Index
dellemc.openmanage.idrac_bios:
idrac_ip: "192.168.0.1"
idrac_user: "user_name"
idrac_password: "user_password"
ca_path: "/path/to/ca_cert.pem"
boot_sources:
- Name: "NIC.Integrated.1-1-1"
Index: 0
返回值
常见返回值已在此处记录,以下是此模块特有的字段
键 |
描述 |
---|---|
HTTP错误的详细信息。 返回: HTTP错误时 示例: |
|
提供的无效属性字典。 返回: 属性或值无效时 示例: |
|
boot_sources作业的状态或对bios执行的操作的状态。 返回: 成功 示例: |
|
BIOS操作的总体状态。 返回: 成功 示例: |