Users Guide
Table Of Contents
- Dell EMC OpenManage Ansible Modules Version 4.0.0 User’s Guide
- Contents
- Overview
- Getting Started
- Modules for iDRAC
- How OpenManage Ansible Modules work with iDRAC
- Running your first iDRAC Playbook
- Updating Firmware
- Configuring PowerEdge Servers
- Deploying operating system
- Server Inventory
- Server administration tasks
- Storage controller
- Modules for OpenManage Enterprise (OME)
- How OpenManage Ansible Modules work with OME
- Running your first OME Playbook
- Manage Devices
- Manage device configuration templates
- Template Service
- Manage the device firmware
- Manage jobs
- Manage users
- Manage identity pool
- Manage application settings
- Manage network configuration
- Manage fabrics
- Manage Profiles
- Device discovery
- Manage Chassis
- Manage Active Directory service and user groups
- Diagnostics
- Modules for Redfish APIs
- Deprecated modules
"Message": "ABC.",
"MessageArgs": [],
"Severity": "Informational",
"Resolution": "XYZ"
}
]
}
}
Examples
- name: Create a fabric
dellemc.openmanage.ome_smart_fabric:
hostname: "{{hostname}}"
username: "{{username}}"
password: "{{password}}"
state: present
name: "fabric1"
description: "fabric desc"
fabric_design: "2xMX9116n_Fabric_Switching_Engines_in_different_chassis"
primary_switch_service_tag: "SVTG123"
secondary_switch_service_tag: "PXYT456"
override_LLDP_configuration: "Enabled"
- name: Modify a fabric
dellemc.openmanage.ome_smart_fabric:
hostname: "{{hostname}}"
username: "{{username}}"
password: "{{password}}"
state: present
name: "fabric1"
new_name: "fabric_gold1"
description: "new description"
- name: Delete a fabric
dellemc.openmanage.ome_smart_fabric:
hostname: "{{hostname}}"
username: "{{username}}"
password: "{{password}}"
state: "absent"
name: "fabric1"
Create, modify, or delete an uplink for a fabric
ome_smart_fabric_uplink
Synopsis
This module allows to create, modify, or delete an uplink for a fabric.
Options
Table 53. ome_smart_fabric_uplink
Parameter Required Default Choices Comments
hostname True NA NA Target IP Address or
hostname
username True NA NA Target username
password True NA NA Target user password
port False 443 NA Target HTTPS port
state True present present, or absent
● C(present)-
○ Creates a new
uplink with the
provided
I(name).
134 Modules for OpenManage Enterprise (OME)