Python scripting for Dell Command Monitor to Manage Windows & Linux Platforms

Size: px
Start display at page:

Download "Python scripting for Dell Command Monitor to Manage Windows & Linux Platforms"

Transcription

1 Python scripting for Dell Command Monitor to Manage Windows & Linux Platforms Dell Engineering July 2017 A Dell Technical White Paper

2 Revisions Date June 2017 Description Initial release The information in this publication is provided as is. Dell Inc. makes no representations or warranties of any kind with respect to the information in this publication, and specifically disclaims implied warranties of merchantability or fitness for a particular purpose. Use, copying, and distribution of any software described in this publication requires an applicable software license. Copyright 2017 Dell Inc. or its subsidiaries. All Rights Reserved. Dell, EMC, and other trademarks are trademarks of Dell Inc. or its subsidiaries. Other trademarks may be the property of their respective owners. Published in the USA [8/2/2017] Dell believes the information in this document is accurate as of its publication date. The information is subject to change without notice.

3 Table of contents Revisions... 2 Executive summary Introduction WSMAN clients WinRM CLI OpenWSMAN CLI Scripting WSMAN clients using Python Graphical representation of the environment Common APIs Detect Host Operating System Construct WSMAN CLI commands Enumerate Launch WSMAN CLI command Ping test Custom management scripts for Dell Command Monitor Listing BIOS settings Checking if a BIOS password is set Getting the first power-on date, manufacturing date, model, service-tag Getting the System Summary Getting the property ownership tag details Getting the boot order Important Notes Where to Find More Information Summary Python scripting for Dell Command Monitor to Manage Windows & Linux Platforms Document ID version (optional)

4 Executive summary Dell Command Monitor is an in-band management tool within the Dell Command suite of products that are provided without any fee to Dell client commercial customers. This white paper describes the process of creating common custom Python scripts for running Dell Command Monitor on Windows and Linux target systems. Information provided in this white paper is relevant for System administrators who want to program scripts with WSMAN clients and harness the power of the secure and standards-based WSMAN service. 4 Python scripting for Dell Command Monitor to Manage Windows & Linux Platforms Document ID version (optional)

5 1 Introduction Dell Command Monitor allows the use of secure, simple, scriptable, and standards-based remote management capability through Web Services for Management (WSMAN) to manage and monitor Dell commercial client systems. WSMAN is a management transport protocol that enables access to systems management data objects and methods that are supported by target system. You can use the WSMAN interface by scripting WSMAN using command-line tools such as WinRM on Windows, and wsmancli on Linux. WSMAN can be accessed from scripting languages such as Python, which can run on both Windows and Linux operating systems. This white paper provides information that enables you to: Get started on programmatically scripting with WSMAN using Python Learn common APIs to leverage in your Dell Command Monitor custom scripts to get various BIOS settings Note: You may need to read the specifications documents to understand the terminology and concept in this white paper. 5 Python scripting for Dell Command Monitor to Manage Windows & Linux Platforms Document ID version (optional)

6 2 WSMAN clients There are two primary WSMAN clients described in this document: Windows Remote Management (WinRM) CLI for Windows OpenWSMAN CLI for Linux Both WSMAN clients are equivalent in most of their feature sets. They allow usage of most of the frequent and high usage WSMAN operations. Refer the WinRM and OpenWSMAN CLI sections for sample output of command-line tool s help menu. You can find more information on installation and usage of these CLI tools in the Where to Find More Information section. 2.1 WinRM CLI Sample output of WinRM CLI invocation C:\>winrm Windows Remote Management Command Line Tool Windows Remote Management (WinRM) is the Microsoft implementation of the WS-Management protocol which provides a secure way to communicate with local and remote computers using web services. Usage: winrm OPERATION RESOURCE_URI [-SWITCH:VALUE [-SWITCH:VALUE]...] [@{KEY=VALUE[;KEY=VALUE]...}] For help on a specific operation: winrm g[et] -? Retrieving management information. winrm s[et] -? Modifying management information. winrm c[reate] -? Creating new instances of management resources. winrm d[elete] -? Remove an instance of a management resource. winrm e[numerate] -? List all instances of a management resource. winrm i[nvoke] -? Executes a method on a management resource. winrm id[entify] -? Determines if a WS-Management implementation is running on the remote machine. winrm quickconfig -? Configures this machine to accept WS-Management requests from other machines. winrm configsddl -? Modify an existing security descriptor for a URI. winrm helpmsg -? Displays error message for the error code. For help on related topics: winrm help uris How to construct resource URIs. winrm help aliases Abbreviations for URIs. winrm help config Configuring WinRM client and service settings. winrm help certmapping Configuring client certificate access. winrm help remoting How to access remote machines. winrm help auth Providing credentials for remote access. winrm help input Providing input to create, set, and invoke. winrm help switches Other switches such as formatting, options, etc. winrm help proxy Providing proxy information. 6 Python scripting for Dell Command Monitor to Manage Windows & Linux Platforms Document ID version (optional)

7 2.2 OpenWSMAN CLI Sample output of OpenWSMAN CLI invocation ~]# wsman -? Usage: wsman [Option...] <action> <Resource Uri> Help Options -?, --help --help-all Show help options --help-enumeration Enumeration Options --help-tests Test Cases --help-cim CIM Options --help-flags Request Flags --help-event Subscription Options Application Options -d, --debug=1-6 Set the verbosity of debugging output. -j, --encoding Set request message encoding -c, --cacert=<filename> Certificate file to verify the peer -A, --cert=<filename> Certificate file. The certificate must be in PEM format. -K, --sslkey=<key> SSL Key. -u, --username=<username> User name -g, --path=<path> Service Path (default: 'wsman') -J, --input=<filename> File with resource for Create and Put operations in XML, can be a SOAP envelope -p, --password=<password> User Password -h, --hostname=<hostname> Host name -b, --endpoint=<url> End point -P, --port=<port> Server Port -X, --proxy=<proxy> Proxy name -Y, --proxyauth=<proxyauth> Proxy user:pwd -y, --auth=<basic digest gss> Authentication Method -a, --method=<custom method> Method (Works only with 'invoke') -k, --prop=<key=val> Properties with key value pairs (For 'put', 'invoke' and 'create') -C, --config-file=<file> Alternate configuration file -O, --out-file=<file> Write output to file -V, --noverifypeer Not to verify peer certificate -v, --noverifyhost Not to verify hostname -I, --transport-timeout=<time in sec> Transport timeout in seconds 7 Python scripting for Dell Command Monitor to Manage Windows & Linux Platforms Document ID version (optional)

8 3 Scripting WSMAN clients using Python Before you begin, ensure that Python version 2.7 is installed on your system. For more information, see the Python release website. Dell recommends Python version 2.7 to leverage many of the list and xml tree iteration features that you can use in processing WSMAN s CIM XML output format. 3.1 Graphical representation of the environment Figure 1 WSMAN over SSL Figure 1 provides a graphical representation of the environment. It starts with administrator using the management station to run scripts to send WSMAN commands through an SSL connection. The target system in this example is a Dell system where Dell Command Monitor is installed. 8 Python scripting for Dell Command Monitor to Manage Windows & Linux Platforms Document ID version (optional)

9 4 Common APIs While creating WSMAN scripts using Python, certain common usage patterns were observed. Based on this observation, common APIs were created for those patterns. Some of the common APIs that were created are as follows: Detect Host Operating System Construct WSMAN CLI command Launch WSMAN CLI command Ping test The following sections describe the APIs and outlines their use. These APIs are used in the common files that are available with the script packages posted on Dell TechCenter. Links to the respective resources are included in the Where to Find More Information section of this white paper. All the API examples have been developed using the Python programming language. 4.1 Detect Host Operating System The host operating system must be detected as a pre-step to constructing the applicable WSMAN CLI command. #Detect the Host Operating System def detect_host_os(): """ Common module that checks the OS type and returns appropriate value. This is to decide if either winrm or wsmancli must be used. """ import sys if sys.platform == "win32": return 1 else: return 2 The API returns 1 for Windows or 2 for Linux, depending on the host operating system. If the host OS is Windows, WinRM CLI commands has to be constructed. If the host OS is Linux, OpenWSMAN CLI commands has to be constructed. 4.2 Construct WSMAN CLI commands The following are the five WSMan operations that are commonly used: Enumerate Enumerate keys Get Set Invoke Having an API for each of these operations is important to enable custom WSMAN scripts creation. To construct the relevant WSMAN CLI commands, these APIs must detect the host operating system. The following sections describe the Python API required to only use the Enumerate WSMan operation. 9 Python scripting for Dell Command Monitor to Manage Windows & Linux Platforms Document ID version (optional)

10 4.2.1 Enumerate This API detects the host operating system and constructs the relevant WSMAN enumerate CLI command, using the input parameters provided. The input parameters for the API are class name, user name, password, and IP address. The constructed command can be directly launched on the command line or shell of the host operating system, using the API described in the Launch WSMAN CLI command section. #Enumeration def wsman_enumerate_command(classname, username, password, ipaddress): """ Constructs the WSMan Enumerate Operation command based on the OS and returns the command to be used. """ if detect_host_os() == 1: wsman_command = 'winrm e -u:%s -p:%s - r: -skipcacheck -skipcncheck' wsman_command = wsman_command % (classname, username, password, ipaddress) else: wsman_command = 'wsman enumerate -N root/dcim/sysman -u %s -p %s -h %s -P v -j utf-8 -y basic -o -m 256 -V -v' wsman_command = wsman_command % (classname, username, password,ipaddress) return wsman_command 4.3 Launch WSMAN CLI command After the relevant WSMAN CLI command is constructed, it must be launched on the command line or shell. This must be done to communicate with the remote WSMAN service. The subprocess python module is used for the communication. The response from the remote WSMAN service is stored in two strings stdout and stderr. After the response is returned from the API, stdout must be checked to use the output data. If it is empty, then an error may have occurred. The stderr string must be used to print the error. # launch the constructed WSMAN CLI command def wsman_command_launch(wsman_command): """ Executes the WSMan command on the shell (OS agnostic) and returns the standard out and error values. """ proc = subprocess.popen(wsman_command,shell=true,stdin=subprocess.pipe,stdout=subprocess.pipe,st derr=subprocess.pipe) stdout_value,stderr_value = proc.communicate() return(stdout_value,stderr_value) 10 Python scripting for Dell Command Monitor to Manage Windows & Linux Platforms Document ID version (optional)

11 4.4 Ping test The ping API is used to test the network connectivity with the remote controller or the system. You can use this test before launching WSMAN CLI commands to communicate with the remote WSMAN service. The following implementation detects the host operating system and performs the ping test. Depending on the connectivity status, an appropriate message is displayed. # Ping test def ping(ipaddress): """ Ping the IP Address of the Target to make sure the network is up and responsive. """ import sys import re from sys import stdout if(detect_host_os() == 1): cmd = "ping -n 2 " + ipaddress resp = "\(0%" else: cmd = "ping -c 2 " + ipaddress resp = " 0%" print 'Pinging %s. Waiting for response.' % (ipaddress), stdout.flush() stdout_value,stderr_value = wsman_command_launch(cmd) if(re.search(resp,stdout_value)== None): print "\nthe idrac is not responding. Check system and try again." sys.exit() print "Response received." 11 Python scripting for Dell Command Monitor to Manage Windows & Linux Platforms Document ID version (optional)

12 5 Custom management scripts for Dell Command Monitor 5.1 Listing BIOS settings # List BIOS settings wsman_command = wsman_enumerate_command("dcim_biosenumeration", username, password, " ") stdout_value,stderr_value = wsman_command_launch(wsman_command) print stdout_value 5.2 Checking if a BIOS password is set # Check isset property to know if a BIOS password is set wsman_command = wsman_enumerate_command("dcim_biospassword", username, password, " ") stdout_value,stderr_value=wsman_command_launch(wsman_command) print stdout_value 5.3 Getting the first power-on date, manufacturing date, model, servicetag # Get First Power On Date and Manufacturing Date wsman_command = wsman_enumerate_command("dcim_chassis", "<user_name>", "<password>", " ") stdout_value,stderr_value = wsman_command_launch(wsman_command) print stdout_value 5.4 Getting the System Summary # Get System Summary #wsman_command=wsman_enumerate_command("dcim_computersystem", "<user_name>", "<password>", " ") stdout_value,stderr_value = wsman_command_launch(wsman_command) print stdout_value 12 Python scripting for Dell Command Monitor to Manage Windows & Linux Platforms Document ID version (optional)

13 5.5 Getting the property ownership tag details # Get Property Ownership Tag wsman_command = wsman_enumerate_command("dcim_biosstring", "<user_name>", "<password>", " ") stdout_value,stderr_value = wsman_command_launch(wsman_command) print stdout_value 5.6 Getting the boot order # Get Boot Sequence wsman_command=wsman_enumerate_command("dcim_bootsourcesetting", "<user_name>", "<password>", " ") stdout_value,stderr_value = wsman_command_launch(wsman_command) print stdout_value 13 Python scripting for Dell Command Monitor to Manage Windows & Linux Platforms Document ID version (optional)

14 6 Important Notes Ensure that the environment is configured appropriately to work with WSMAN CLI tools, along with the appropriate version of Python. The target system that the scripts communicate with WSMAN service running in the software stack. Dell s DCM must be installed and OMI server must be running for Linux system. 14 Python scripting for Dell Command Monitor to Manage Windows & Linux Platforms Document ID version (optional)

15 7 Where to Find More Information WSMAN Interface Guide for Linux: WSMAN Interface Guide for Windows: WSMAN command line open source for Linux (OpenWSMan): OpenWSMan installation instructions: management/w/wiki/3567.instructions installingopenwsman cli on linux.aspx WSMAN command line for Windows (Winrm): us/library/windows/desktop/aa384291(v=vs.85).aspx WSMAN scripts for the Dell Lifecycle Controller: management/w/wiki/scripting the dell lifecycle controller.aspx 15 Python scripting for Dell Command Monitor to Manage Windows & Linux Platforms Document ID version (optional)

16 8 Summary Using the tools readily available on Windows and with some effort in Linux, this white paper provides information on creating custom workstation management scripts for Dell Command Monitor. The ability to create custom scripts for remote and secure systems management enables you to be more productive and efficient. 16 Python scripting for Dell Command Monitor to Manage Windows & Linux Platforms Document ID version (optional)

Accessing and Using WS-Management

Accessing and Using WS-Management CHAPTER 3 This chapter describes how to access the SMASH Web Services interface (WS-Management) and provides limited information about its use. For detailed information about using the SMASH WS-Management

More information

Changing default password of root user for idrac9 by using Dell EMC License Manager

Changing default password of root user for idrac9 by using Dell EMC License Manager Changing default password of root user for idrac9 by using Dell EMC License Manager This technical white paper describes how to change the default password of root user on Dell EMC idrac9. Dell EMC Engineering

More information

Changing unique password of root user for idrac9 by using Dell EMC License Manager

Changing unique password of root user for idrac9 by using Dell EMC License Manager Changing unique password of root user for idrac9 by using Dell EMC License Manager This technical white paper describes how to change the default password of a root user on idrac9. Dell EMC Engineering

More information

Remote Power Management of Dell PowerEdge M1000e with Chassis Management Controller (CMC) Using Windows Remote Management (WinRM)

Remote Power Management of Dell PowerEdge M1000e with Chassis Management Controller (CMC) Using Windows Remote Management (WinRM) Remote Power Management of Dell PowerEdge M1000e with Chassis Management Controller (CMC) Using A Dell Technical White Paper Author Lucky P Khemani Dell Engineering September 2013 A Dell Choose an item.

More information

Handling the Firmware Update Dependency by using Lifecycle Controller in the 14th generation Dell EMC PowerEdge servers

Handling the Firmware Update Dependency by using Lifecycle Controller in the 14th generation Dell EMC PowerEdge servers Handling the Firmware Update Dependency by using Lifecycle Controller 3.00.00.00 in the 14th generation Dell EMC This technical white paper provides information about handling dependency while updating

More information

Dell EMC Ready Solution for VMware vcloud NFV 3.0 OpenStack Edition Platform

Dell EMC Ready Solution for VMware vcloud NFV 3.0 OpenStack Edition Platform Dell EMC Ready Solution for VMware vcloud NFV 3.0 OpenStack Edition Platform Deployment Automation Operations Guide for VMware NFV 3.0 with VMware Integrated OpenStack 5.0 with Kubernetes Dell Engineering

More information

Virtualization Support in Dell Management Console

Virtualization Support in Dell Management Console Virtualization Support in Dell Management Console Dell Technical White Paper By Rajaneesh Shresta, Nilesh Bagad, Manoj Poonia Dell Product Group - Enterprise 1 THIS WHITE PAPER IS FOR INFORMATIONAL PURPOSES

More information

Understanding idrac Quick Sync 2

Understanding idrac Quick Sync 2 Understanding idrac Quick Sync 2 Enhanced Wireless Configuration, Monitoring, and Troubleshooting Dell Engineering June 2017 Authors Manoj Malhotra Virender Sharma Sudhir Shetty David Warden A Dell EMC

More information

Lifecycle Controller Version Remote Services Quick Start Guide

Lifecycle Controller Version Remote Services Quick Start Guide Lifecycle Controller Version 3.00.00.00 Remote Services Quick Start Guide Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps you make better use of your product. CAUTION:

More information

Side-by-side comparison of the features of Dell EMC idrac9 and idrac8

Side-by-side comparison of the features of Dell EMC idrac9 and idrac8 Side-by-side comparison of the features of Dell EMC and This Dell EMC technical brief compares the features and functionalities of the 14 th generation versus the 13 th generation. Dell OpenManage Product

More information

DISCOVERY AND INVENTORY OF DELL EMC DEVICES BY USING DELL EMC OPENMANAGE ESSENTIALS (OME)

DISCOVERY AND INVENTORY OF DELL EMC DEVICES BY USING DELL EMC OPENMANAGE ESSENTIALS (OME) DISCOVERY AND INVENTORY OF DELL EMC DEVICES BY USING DELL EMC OPENMANAGE ESSENTIALS (OME) ABSTRACT This technical white paper describes the discovery, inventory, and other features of OME. August, 2017

More information

Dell EMC OpenManage Mobile. Version User s Guide (ios)

Dell EMC OpenManage Mobile. Version User s Guide (ios) Dell EMC OpenManage Mobile Version 2.0.20 User s Guide (ios) Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps you make better use of your product. CAUTION: A CAUTION

More information

Automatic Backup Server Profile in Dell PowerEdge 12 th Generation Servers

Automatic Backup Server Profile in Dell PowerEdge 12 th Generation Servers Automatic Backup Server Profile in Dell PowerEdge 12 th Generation Servers A Dell Technical White Paper on scheduling periodic Automatic Backup Server Profile using various interfaces such as RACADM, WS-Man,

More information

Dell EMC OpenManage Mobile. Version User s Guide (Android)

Dell EMC OpenManage Mobile. Version User s Guide (Android) Dell EMC OpenManage Mobile Version 2.0.20 User s Guide (Android) Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps you make better use of your product. CAUTION: A CAUTION

More information

Lifecycle Controller Part Replacement

Lifecycle Controller Part Replacement This Dell Technical White Paper provides information on the Lifecycle Controller Part Replacement feature on Dell Power Edge servers. Authors Sundar Dasar Texas Roemer This document is for informational

More information

Dell EMC OpenManage Mobile. Version 3.0 User s Guide (Android)

Dell EMC OpenManage Mobile. Version 3.0 User s Guide (Android) Dell EMC OpenManage Mobile Version 3.0 User s Guide (Android) Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps you make better use of your product. CAUTION: A CAUTION

More information

Lifecycle Controller Part Replacement

Lifecycle Controller Part Replacement This Dell Technical White Paper provides information on the Lifecycle Controller Part Replacement feature on Dell Power Edge servers. Authors Sundar Dasar Texas Roemer This document is for informational

More information

Lifecycle Controller 1.3 Web Services Interface Guide Version: 1.0.0

Lifecycle Controller 1.3 Web Services Interface Guide Version: 1.0.0 Lifecycle Controller 1.3 Web Services Interface Guide Version: 1.0.0 Document Status: Published THIS DOCUMENT IS FOR INFORMATIONAL PURPOSES ONLY, AND MAY CONTAIN TYPOGRAPHICAL ERRORS AND TECHNICAL INACCURACIES.

More information

Using DMC to Manage VMWare ESXi Servers

Using DMC to Manage VMWare ESXi Servers Using DMC to Manage VMWare ESXi Servers Dell Technical White Paper By Madhav Karri, Sean-Marc Castruita, Sankara Gara Dell Product Group - Enterprise Revision History Version Date Description Author(s)

More information

CloudLink Key Management for VMware vcenter Server Configuration Guide

CloudLink Key Management for VMware vcenter Server Configuration Guide CloudLink Key Management for VMware vcenter Server Dell EMC CloudLink SecureVM Version 6.0, 6.5, and 6.6 H15988.3 January 2018 This contains procedures to create a trusted connection between CloudLink

More information

DELL PATCH FAQs. What are the pre-requisites for performning Altiris Agent enabled patching of servers?

DELL PATCH FAQs. What are the pre-requisites for performning Altiris Agent enabled patching of servers? DELL PATCH FAQs This document provides few basic troubleshooting tips for the Dell Patch Mangement Solution. The following are the most frequently asked questions: What are the pre-requisites for performning

More information

DELL EMC OPENMANAGE ESSENTIALS (OME) SNMPV3 SUPPORT

DELL EMC OPENMANAGE ESSENTIALS (OME) SNMPV3 SUPPORT DELL EMC OPENMANAGE ESSENTIALS (OME) SNMPV3 SUPPORT SNMPv3 based Discovery/Inventory/Event ABSTRACT This technical white paper explains how to make use of the SNMPv3 protocol for discovery or inventory

More information

Dell EMC OpenManage Mobile Version 2.0 User s Guide (ios)

Dell EMC OpenManage Mobile Version 2.0 User s Guide (ios) Dell EMC OpenManage Mobile Version 2.0 User s Guide (ios) Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps you make better use of your computer. CAUTION: A CAUTION

More information

Dell EMC Ready Solution for VMware vcloud NFV 3.0 OpenStack Edition Platform

Dell EMC Ready Solution for VMware vcloud NFV 3.0 OpenStack Edition Platform Dell EMC Ready Solution for VMware vcloud NFV 3.0 OpenStack Edition Platform Deployment Manual Document Index Guide for VMware NFV 3.0 with VMware Integrated OpenStack 5.0 with Kubernetes Dell Engineering

More information

Dell EMC NUMA Configuration for AMD EPYC (Naples) Processors

Dell EMC NUMA Configuration for AMD EPYC (Naples) Processors Dell EMC NUMA Configuration for AMD EPYC (Naples) Processors Dell Engineering February 2018 A Dell EMC Deployment and Configuration Guide Revisions Date February 2018 Description Initial release The information

More information

DCLI User's Guide. Modified on 20 SEP 2018 Data Center Command-Line Interface

DCLI User's Guide. Modified on 20 SEP 2018 Data Center Command-Line Interface Modified on 20 SEP 2018 Data Center Command-Line Interface 2.10.0 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments about

More information

Using Lifecycle Controller to Configure UEFI Secure Boot and OS Deployment

Using Lifecycle Controller to Configure UEFI Secure Boot and OS Deployment Using Lifecycle Controller to Configure UEFI Secure Boot and OS Deployment This Dell technical white paper describes the capabilities of using Lifecycle Controller to configure UEFI Secure Boot and OS

More information

RSA NetWitness Platform

RSA NetWitness Platform RSA NetWitness Platform RSA SecurID Access Last Modified: Tuesday, January 29, 2019 Event Source Product Information: Vendor: RSA, The Security Division of Dell EMC Event Sources: Authentication Manager,

More information

Dell Chassis Management Controller Version 6.0 for PowerEdge M1000e. Release Notes

Dell Chassis Management Controller Version 6.0 for PowerEdge M1000e. Release Notes Dell Chassis Management Controller Version 6.0 for PowerEdge M1000e Release Notes Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps you make better use of your product.

More information

CLI Installation and Configuration Guide

CLI Installation and Configuration Guide Elastic Cloud Storage (ECS) Version 3.1 CLI Installation and Configuration Guide 302-004-250 01 August 2017 Overview... 2 Install Python with Pip to Windows...2 Install Python with Pip to Linux...2 Use

More information

Managing Modular Infrastructure by using OpenManage Essentials (OME)

Managing Modular Infrastructure by using OpenManage Essentials (OME) Managing Modular Infrastructure by using OpenManage Essentials (OME) This technical white paper describes how to manage the modular infrastructure by using Dell EMC OME. Dell Engineering June 2017 A Dell

More information

Technical Note. Restoring Dell EMC Avamar Checkpoint Backups from a Dell EMC Data Domain System After a Single Node Avamar Failure

Technical Note. Restoring Dell EMC Avamar Checkpoint Backups from a Dell EMC Data Domain System After a Single Node Avamar Failure Restoring Dell EMC Avamar Checkpoint Backups from a Dell EMC Data Domain System After a Single Node Avamar Failure 300-015-218 REV 03 February 2018 Revision history... 2 Purpose... 2 Related documentation...2

More information

RSA Identity Governance and Lifecycle Collector Data Sheet for Zendesk

RSA Identity Governance and Lifecycle Collector Data Sheet for Zendesk RSA Identity Governance and Lifecycle Collector Data Sheet for Zendesk Version 1.1 December 2017 Contents Purpose... 4 Supported Software... 4 Prerequisites... 4 Account Data Collector... 4 Configuration...

More information

Integration Guide. Dell EMC Data Domain Operating System and Gemalto KeySecure. DD OS and Gemalto KeySecure Integration. Version 6.

Integration Guide. Dell EMC Data Domain Operating System and Gemalto KeySecure. DD OS and Gemalto KeySecure Integration. Version 6. Dell EMC Data Domain Operating System and Gemalto KeySecure Version 6.1 DD OS and Gemalto KeySecure Integration P/N 302-003-978 REV 01 June 2017 This document describes how to configure Gemalto KeySecure

More information

Dell EMC License Manager Version 1.5 User's Guide

Dell EMC License Manager Version 1.5 User's Guide Dell EMC License Manager Version 1.5 User's Guide Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps you make better use of your product. CAUTION: A CAUTION indicates

More information

Boot Mode Considerations: BIOS vs. UEFI

Boot Mode Considerations: BIOS vs. UEFI Boot Mode Considerations: BIOS vs. UEFI An overview of differences between UEFI Boot Mode and traditional BIOS Boot Mode Dell Engineering October 2017 A Dell EMC Deployment and Configuration Guide Revisions

More information

Authors. Punita. Rajeswari Ayyaswamy. Lokesh Thutaram. Sanjeev Dambal. September, 2017

Authors. Punita. Rajeswari Ayyaswamy. Lokesh Thutaram. Sanjeev Dambal. September, 2017 Online Capacity Expansion (OCE) and RAID-Level Migration (RLM) of Virtual Drives by using PERC 9 and PERC 10 on the 14 th Generation (14G) Dell EMC PowerEdge servers This technical white paper describes

More information

DCLI User's Guide. Data Center Command-Line Interface 2.9.1

DCLI User's Guide. Data Center Command-Line Interface 2.9.1 Data Center Command-Line Interface 2.9.1 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments about this documentation, submit

More information

SSH with Globus Auth

SSH with Globus Auth SSH with Globus Auth Summary As the community moves away from GSI X.509 certificates, we need a replacement for GSI-OpenSSH that uses Globus Auth (see https://docs.globus.org/api/auth/ ) for authentication.

More information

Boot and Network Configuration Deployment using Server Template with Dell EMC OpenManage Essentials (OME)

Boot and Network Configuration Deployment using Server Template with Dell EMC OpenManage Essentials (OME) Boot and Network Configuration Deployment using Server Template with Dell EMC OpenManage Essentials (OME) Dell EMC Engineering February 2018 A Dell EMC Technical White Paper Revisions Date August 2017

More information

Dell EMC Ready Solution for VMware vcloud NFV 3.0 OpenStack Edition Platform

Dell EMC Ready Solution for VMware vcloud NFV 3.0 OpenStack Edition Platform Dell EMC Ready Solution for VMware vcloud NFV 3.0 OpenStack Edition Platform Deployment Automation - Document Index Guide for VMware NFV 3.0 with VMware Integrated OpenStack 5.0 with Kubernetes Dell Engineering

More information

UEFI Secure Boot with Dell PowerEdge 14G with VMware ESXi 6.5

UEFI Secure Boot with Dell PowerEdge 14G with VMware ESXi 6.5 UEFI Secure Boot with Dell PowerEdge 14G with VMware ESXi 6.5 This paper explains the changes introduced in UEFI Secure Boot feature from DellEMC 14th generation of servers and VMware ESXi upgrade scenarios.

More information

TROUBLESHOOTING GUIDE. Backup and Recovery for Nutanix

TROUBLESHOOTING GUIDE. Backup and Recovery for Nutanix TROUBLESHOOTING GUIDE Backup and Recovery for Nutanix Version: 1.5.2 Product release date: October 2017 Document release date: October 2017 Legal notices Copyright notice 2017 Comtrade Software. All rights

More information

Discovering Features in the idrac Remote Services API

Discovering Features in the idrac Remote Services API Discovering Features in the idrac Remote Services API A Dell technical white paper. Chris A. Poblete Khachatur Papanyan Enterprise Product Group This document is for informational purposes only and may

More information

Managing the SSL Certificate for the ESRS HTTPS Listener Service Technical Notes P/N Rev 01 July, 2012

Managing the SSL Certificate for the ESRS HTTPS Listener Service Technical Notes P/N Rev 01 July, 2012 Managing the SSL Certificate for the ESRS HTTPS Listener Service Technical Notes P/N 300-013-818 Rev 01 July, 2012 This document contains information on these topics: Introduction... 2 Terminology... 2

More information

Web Service Eventing Support for Hardware Inventory and Monitoring

Web Service Eventing Support for Hardware Inventory and Monitoring Web Service Eventing Support for Hardware Inventory and Monitoring Dell Engineering January 2015 Hari Venkatachalam Chitrak Gupta 1 White Paper Web Service Eventing Support for Hardware Inventory and Monitoring

More information

Dell EMC. IPv6 Overview for VxBlock Systems

Dell EMC. IPv6 Overview for VxBlock Systems Dell EMC IPv6 Overview for VxBlock Systems Document revision 1.2 February 2018 Revision history Date Document revision Description of changes February 2018 1.2 Added support for Isilon Generation 6 and

More information

Dell Command Integration Suite for System Center

Dell Command Integration Suite for System Center Dell Command Integration Suite for System Center Version 5.0 User s Guide Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps you make better use of your product. CAUTION:

More information

Dell EMC Repository Manager Version 3.1. User s Guide

Dell EMC Repository Manager Version 3.1. User s Guide Dell EMC Repository Manager Version 3.1 User s Guide Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps you make better use of your product. CAUTION: A CAUTION indicates

More information

Dell OpenManage Essentials v2.0 Support for Dell Client Devices

Dell OpenManage Essentials v2.0 Support for Dell Client Devices Dell OpenManage Essentials v2.0 Support for Dell Client Devices This Dell technical white paper provides the required information about Dell client devices (OptiPlex, Precision, Latitude, and Venue 11

More information

Using the YANG Development Kit (YDK) with Cisco IOS XE

Using the YANG Development Kit (YDK) with Cisco IOS XE Using the YANG Development Kit (YDK) with Cisco IOS XE 1. Overview The YANG Development Kit (YDK) is a software development kit that provides APIs that are generated from YANG data models. These APIs,

More information

Scalability and Performance of Dell EMC OpenManage Essentials (OME) Version 2.3

Scalability and Performance of Dell EMC OpenManage Essentials (OME) Version 2.3 Scalability and Performance of Dell EMC OpenManage Essentials (OME) Version 2.3 Dell EMC Engineering August 2017 A Dell EMC Technical White Paper Revisions Date January 2013 August 2017 Description Initial

More information

Dell Command Intel vpro Out of Band

Dell Command Intel vpro Out of Band Dell Command Intel vpro Out of Band Version 3.0 User's Guide Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps you make better use of your product. CAUTION: A CAUTION

More information

Dell Command Monitor Version User's Guide

Dell Command Monitor Version User's Guide Dell Command Monitor Version 10.1.0 User's Guide Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps you make better use of your product. CAUTION: A CAUTION indicates

More information

Dell Command Warranty. User s Guide

Dell Command Warranty. User s Guide Dell Command Warranty User s Guide Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps you make better use of your product. CAUTION: A CAUTION indicates either potential

More information

DCLI User's Guide. Data Center Command-Line Interface

DCLI User's Guide. Data Center Command-Line Interface Data Center Command-Line Interface 2.10.2 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments about this documentation, submit

More information

Dell Command Update. Version 3.0 Release Notes

Dell Command Update. Version 3.0 Release Notes Dell Command Update Version 3.0 Release Notes Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps you make better use of your product. CAUTION: A CAUTION indicates either

More information

OpenManage Essentials Managing Firmware and Driver Compliance by using Multiple Baselines

OpenManage Essentials Managing Firmware and Driver Compliance by using Multiple Baselines OpenManage Essentials Managing Firmware and Driver Compliance by using Multiple Baselines This technical white paper provides information about managing hardware revision baseline in a data center by using

More information

Lifecycle Controller Version User's Guide

Lifecycle Controller Version User's Guide Lifecycle Controller Version 3.15.15.15 User's Guide Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps you make better use of your product. CAUTION: A CAUTION indicates

More information

Installing Dell EMC OpenManage Essentials

Installing Dell EMC OpenManage Essentials Installing Dell EMC OpenManage Essentials This technical white paper describes the procedure to install OME. Dell EMC Engineering February 2018 A Dell EMC Technical White Paper Revisions Date June 2017

More information

EMC White Paper Documentum Client for Outlook (DCO)

EMC White Paper Documentum Client for Outlook (DCO) EMC White Paper Documentum Client for Outlook (DCO) Troubleshooting Guide Copyright 2005 EMC Corporation. All rights reserved. EMC believes the information in this publication is accurate as of its publication

More information

Dell OpenManage Essentials v1.1 Supporting Dell Client Devices

Dell OpenManage Essentials v1.1 Supporting Dell Client Devices Dell OpenManage Essentials v1.1 Supporting Dell Client Devices This Dell technical white paper provides the required information about Dell client devices (OptiPlex, Precision, Latitude) support in OpenManage

More information

DCLI User's Guide. Data Center Command-Line Interface 2.7.0

DCLI User's Guide. Data Center Command-Line Interface 2.7.0 Data Center Command-Line Interface 2.7.0 You can find the most up-to-date technical documentation on the VMware Web site at: https://docs.vmware.com/ The VMware Web site also provides the latest product

More information

Generic IP Camera Driver

Generic IP Camera Driver Generic IP Camera Driver Information Sheet for Crimson v3.0+ Compatible Devices IP cameras and web cameras where the static image is accessible through a web interface in either JPEG or bitmap formats.

More information

Cybersecurity with Automated Certificate and Password Management for Surveillance

Cybersecurity with Automated Certificate and Password Management for Surveillance Cybersecurity with Automated Certificate and Password Management for Surveillance October 2017 ABSTRACT This reference architecture guide describes the reference architecture of a validated solution to

More information

Cisco Expressway Authenticating Accounts Using LDAP

Cisco Expressway Authenticating Accounts Using LDAP Cisco Expressway Authenticating Accounts Using LDAP Deployment Guide Cisco Expressway X8.5 December 2014 Contents Introduction 3 Process summary 3 LDAP accessible authentication server configuration 4

More information

Dell Command Monitor Version User's Guide

Dell Command Monitor Version User's Guide Dell Command Monitor Version 9.2.1 User's Guide Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps you make better use of your product. CAUTION: A CAUTION indicates either

More information

RSA Archer GRC Application Guide

RSA Archer GRC Application Guide RSA Archer GRC Application Guide Version 1.2 vember 2017 Contact Information RSA Link at https://community.rsa.com contains a knowledgebase that answers common questions and provides solutions to known

More information

Server Administrator Version 8.2 Installation Guide Citrix XenServer

Server Administrator Version 8.2 Installation Guide Citrix XenServer Server Administrator Version 8.2 Installation Guide Citrix XenServer Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps you make better use of your computer. CAUTION:

More information

Dell License Manager Version 1.2 User s Guide

Dell License Manager Version 1.2 User s Guide Dell License Manager Version 1.2 User s Guide Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make better use of your computer. CAUTION: A CAUTION indicates either

More information

Dell Command Warranty. User s Guide

Dell Command Warranty. User s Guide Dell Command Warranty User s Guide Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps you make better use of your product. CAUTION: A CAUTION indicates either potential

More information

Embedded Management on PowerMax and VMAX All Flash

Embedded Management on PowerMax and VMAX All Flash Embedded Management on PowerMax and VMAX All Flash Embedded Management (emanagement) with Unisphere for PowerMax Dell EMC Engineering May 2018 A Dell EMC Technical White Paper Revisions Date May 2018 Description

More information

Securing 14th generation Dell EMC PowerEdge servers with System Erase

Securing 14th generation Dell EMC PowerEdge servers with System Erase Securing 14th generation Dell EMC PowerEdge servers with System Erase Overview of the System Erase feature used to repurpose or retire a PowerEdge server. Dell EMC Server Solutions June 2017 Authors Texas

More information

No Trade Secrets. Microsoft does not claim any trade secret rights in this documentation.

No Trade Secrets. Microsoft does not claim any trade secret rights in this documentation. [MS-WMSO]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation for protocols, file formats, languages,

More information

Cisco TelePresence Authenticating Cisco VCS Accounts Using LDAP

Cisco TelePresence Authenticating Cisco VCS Accounts Using LDAP Cisco TelePresence Authenticating Cisco VCS Accounts Using LDAP Deployment Guide Cisco VCS X8.2 D14465.07 June 2014 Contents Introduction 3 Process summary 3 LDAP accessible authentication server configuration

More information

Numerics. Index 1. SSH See SSH. connection inactivity time 2-3 console, for configuring authorized IP managers 11-5 DES 6-3, 7-3

Numerics. Index 1. SSH See SSH. connection inactivity time 2-3 console, for configuring authorized IP managers 11-5 DES 6-3, 7-3 Numerics 3DES 6-3, 7-3 802.1X See port-based access control. 8-1 A aaa authentication 4-8 aaa port-access See Web or MAC Authentication. access levels, authorized IP managers 11-3 accounting address authorized

More information

Aimetis Symphony Mobile Bridge. 2.7 Installation Guide

Aimetis Symphony Mobile Bridge. 2.7 Installation Guide Aimetis Symphony Mobile Bridge 2.7 Installation Guide Contents Contents Introduction...3 Installation... 4 Install the Mobile Bridge... 4 Upgrade the Mobile Bridge...4 Network configuration... 4 Configuration...

More information

Using the vrealize Orchestrator Chef Plug-In 1.0

Using the vrealize Orchestrator Chef Plug-In 1.0 Using the vrealize Orchestrator Chef Plug-In 1.0 Copyright 2016 VMware, Inc. All rights reserved. This product is protected by copyright and intellectual property laws in the United States and other countries

More information

DHCP Option 66 Auto Provisioning Guide

DHCP Option 66 Auto Provisioning Guide Overview UniFi VoIP Phones can be configured using a Configuration File through TFTP or HTTP/HTTPS download. When a UniFi VoIP Phone boots up or reboots, it attempts to get the provisioning server URL

More information

Managing and Monitoring a Virtualization Environment Using OpenManage Essentials

Managing and Monitoring a Virtualization Environment Using OpenManage Essentials Managing and Monitoring a Virtualization Environment Using OpenManage Essentials This Dell Technical White Paper explains how to manage and monitor a virtualization environment which includes VMware ESXi,

More information

Dell Lifecycle Controller GUI. v User's Guide

Dell Lifecycle Controller GUI. v User's Guide Dell Lifecycle Controller GUI v2.60.60.60 User's Guide Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps you make better use of your product. CAUTION: A CAUTION indicates

More information

Oracle Service Registry - Oracle Enterprise Gateway Integration Guide

Oracle Service Registry - Oracle Enterprise Gateway Integration Guide An Oracle White Paper June 2011 Oracle Service Registry - Oracle Enterprise Gateway Integration Guide 1 / 19 Disclaimer The following is intended to outline our general product direction. It is intended

More information

Release Notes P/N REV A01 February 23, 2006

Release Notes P/N REV A01 February 23, 2006 EMC AX-Series Navisphere SP Agent Version 6.20.0.3.12 for FLARE OE 02.20.yyy Release Notes P/N 300-003-516 REV A01 February 23, 2006 These release notes contain supplemental information about EMC Navisphere

More information

In this chapter, we cover the development and architecture decisions

In this chapter, we cover the development and architecture decisions Chapter18 Developing Solutions for Intel Active Management Technology Goto, n.: A programming tool that exists to allow structured programmers to complain about unstructured programmers. Ray Simard In

More information

Dell EMC Networking S4148-ON and S4128-ON

Dell EMC Networking S4148-ON and S4128-ON Dell EMC Networking S4148-ON and S4128-ON Switch Configuration Guide for Dell EMC SC Series SANs Abstract This document illustrates how to configure Dell EMC Networking S4148-ON and S4128-ON switches for

More information

Dell EMC Server Deployment Pack Version 4.0 for Microsoft System Center Configuration Manager. User's Guide

Dell EMC Server Deployment Pack Version 4.0 for Microsoft System Center Configuration Manager. User's Guide Dell EMC Server Deployment Pack Version 4.0 for Microsoft System Center Configuration Manager User's Guide Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps you make

More information

Lifecycle Controller with Dell Repository Manager

Lifecycle Controller with Dell Repository Manager Lifecycle Controller with Dell Repository Manager Dell, Inc. Dell Repository Manager Team Chandrasekhar G Dell Engineering October 2013 A Dell Technical White Paper Revisions Date October 2013 Description

More information

OpenManage Integration for VMware vcenter Quick Install Guide for vsphere Client, Version 2.3.1

OpenManage Integration for VMware vcenter Quick Install Guide for vsphere Client, Version 2.3.1 OpenManage Integration for VMware vcenter Quick Install Guide for vsphere Client, Version 2.3.1 Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make better use

More information

Advanced Service Design. vrealize Automation 6.2

Advanced Service Design. vrealize Automation 6.2 vrealize Automation 6.2 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments about this documentation, submit your feedback to

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Administering Web Services 12c (12.1.2) E28131-01 June 2013 Documentation for developers and administrators that describes how to administer Web services. Oracle Fusion Middleware

More information

Dell Lifecycle Controller 2 Web Services Interface Guide for Linux

Dell Lifecycle Controller 2 Web Services Interface Guide for Linux Dell Lifecycle Controller 2 Web Services Interface Guide for Linux Document Status: Published This document is for informational purposes only and may contain typographical errors and technical inaccuracies.

More information

TROUBLESHOOTING GUIDE. Backup and Recovery for Nutanix

TROUBLESHOOTING GUIDE. Backup and Recovery for Nutanix TROUBLESHOOTING GUIDE Backup and Recovery for Nutanix Version: 2.0.1 Product release date: February 2018 Document release date: February 2018 Legal notices Copyright notice 2017 2018 Comtrade Software.

More information

Dell EMC Ready Architectures for VDI

Dell EMC Ready Architectures for VDI Dell EMC Ready Architectures for VDI Designs for Citrix XenDesktop and XenApp for Dell EMC XC Family September 2018 H17388 Deployment Guide Abstract This deployment guide provides instructions for deploying

More information

Syncplicity Panorama with Isilon Storage. Technote

Syncplicity Panorama with Isilon Storage. Technote Syncplicity Panorama with Isilon Storage Technote Copyright 2014 EMC Corporation. All rights reserved. Published in USA. Published November, 2014 EMC believes the information in this publication is accurate

More information

Dell EMC Ready System for VDI on XC Series

Dell EMC Ready System for VDI on XC Series Dell EMC Ready System for VDI on XC Series Citrix XenDesktop for Dell EMC XC Series Hyperconverged Appliance March 2018 H16969 Deployment Guide Abstract This deployment guide provides instructions for

More information

Synchronization of Services between the IBM WebSphere Services Registry & Repository and SAP s Services Registry

Synchronization of Services between the IBM WebSphere Services Registry & Repository and SAP s Services Registry Synchronization of Services between the IBM WebSphere Services Registry & Repository and SAP s Services Registry Applies to: This document describes how to use the WebSphere Services Registry & Repository

More information

edocs Home > BEA AquaLogic Service Bus 3.0 Documentation > Accessing ALDSP Data Services Through ALSB

edocs Home > BEA AquaLogic Service Bus 3.0 Documentation > Accessing ALDSP Data Services Through ALSB Accessing ALDSP 3.0 Data Services Through ALSB 3.0 edocs Home > BEA AquaLogic Service Bus 3.0 Documentation > Accessing ALDSP Data Services Through ALSB Introduction AquaLogic Data Services Platform can

More information

DELL EMC UNITY: DR ACCESS AND TESTING. Dell EMC Unity OE 4.5

DELL EMC UNITY: DR ACCESS AND TESTING. Dell EMC Unity OE 4.5 DELL EMC UNITY: DR ACCESS AND TESTING Dell EMC Unity OE 4.5 1 The information in this publication is provided as is. Dell Inc. makes no representations or warranties of any kind with respect to the information

More information

Dell EMC Ready System for VDI on VxRail

Dell EMC Ready System for VDI on VxRail Dell EMC Ready System for VDI on VxRail Citrix XenDesktop for Dell EMC VxRail Hyperconverged Appliance April 2018 H16968.1 Deployment Guide Abstract This deployment guide provides instructions for deploying

More information

Intel Unite Solution Version 4.0

Intel Unite Solution Version 4.0 Intel Unite Solution Version 4.0 Cisco TelePresence* Application Guide Revision 1.0 October 2018 Document ID: XXX Legal Disclaimers and Copyrights This document contains information on products, services

More information