dellemc.openmanage.ome_device_network_services 模块 – 在 OpenManage Enterprise Modular 上配置机箱网络服务设置
注意
此模块是 dellemc.openmanage 集合(版本 9.9.0)的一部分。
如果您正在使用 ansible
包,则可能已经安装了此集合。它不包含在 ansible-core
中。要检查是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用:ansible-galaxy collection install dellemc.openmanage
。您需要满足其他要求才能使用此模块,有关详细信息,请参阅要求。
要在 playbook 中使用它,请指定:dellemc.openmanage.ome_device_network_services
。
dellemc.openmanage 4.3.0 中的新增功能
概要
此模块允许在 OpenManage Enterprise Modular 上配置网络服务。
要求
执行此模块的主机需要满足以下要求。
python >= 3.9.6
参数
参数 |
注释 |
---|---|
包含用于验证的 CA 证书的隐私增强邮件 (PEM) 文件。 |
|
需要更新设置的机箱的 ID。 如果未指定设备 ID,则此模块会更新 hostname 的网络服务设置。 device_id 与 device_service_tag 互斥。 |
|
需要更新设置的机箱的服务标签。 如果未指定设备服务标签,则此模块会更新 hostname 的网络服务设置。 device_service_tag 与 device_id 互斥。 |
|
OpenManage Enterprise Modular IP 地址或主机名。 |
|
OpenManage Enterprise Modular HTTPS 端口。 默认值: |
|
远程 RACADM 配置的设置。 |
|
启用或禁用远程 RACADM 设置。 选项
|
|
SNMP 配置的设置。 |
|
SNMP 团体字符串。 当 enabled 为 |
|
启用或禁用 SNMP 设置。 选项
|
|
SNMP 端口号。 |
|
SSH 配置的设置。 |
|
启用或禁用 SSH 设置。 选项
|
|
SSH 空闲超时时间(分钟)。 |
|
SSH 会话失败时的重试次数。 |
|
SSH 会话数。 |
|
SSH 服务的端口号。 |
|
套接字级别超时时间(秒)。 默认值: |
|
如果为 仅在个人控制的站点(使用自签名证书)上配置 在集合版本 选项
|
|
身份验证令牌。 如果未提供 x_auth_token,则使用环境变量 示例:export OME_X_AUTH_TOKEN=x_auth_token |
注释
注意
从可以直接访问 Dell OpenManage Enterprise Modular 的系统运行此模块。
此模块支持
check_mode
。
示例
---
- name: Update network services settings of a chassis using the device ID
dellemc.openmanage.ome_device_network_services:
hostname: "192.168.0.1"
username: "username"
password: "password"
ca_path: "/path/to/ca_cert.pem"
device_id: 25011
snmp_settings:
enabled: true
port_number: 161
community_name: public
ssh_settings:
enabled: false
remote_racadm_settings:
enabled: false
- name: Update network services settings of a chassis using the device service tag.
dellemc.openmanage.ome_device_network_services:
hostname: "192.168.0.2"
username: "username"
password: "password"
ca_path: "/path/to/ca_cert.pem"
device_service_tag: GHRT2RL
snmp_settings:
enabled: false
ssh_settings:
enabled: true
port_number: 22
max_sessions: 1
max_auth_retries: 3
idle_timeout: 1
remote_racadm_settings:
enabled: false
- name: Update network services settings of the host chassis.
dellemc.openmanage.ome_device_network_services:
hostname: "192.168.0.3"
username: "username"
password: "password"
ca_path: "/path/to/ca_cert.pem"
snmp_settings:
enabled: false
ssh_settings:
enabled: false
remote_racadm_settings:
enabled: true
返回值
常见的返回值已在此处记录 这里,以下是此模块特有的字段
键 |
描述 |
---|---|
HTTP 错误的详细信息。 返回: HTTP 错误时 示例: |
|
网络服务设置的总体状态。 返回: 始终 示例: |
|
当网络服务设置成功更新时返回。 返回: 成功 示例: |