Configuring the BMC Atrium Orchestrator monitor adapter for NetApp Storage
You configure an adapter in BMC Atrium Orchestrator Grid Manager. The configuration provides information about how the adapter interacts with the NetApp DataFabric Manager application. Although each adapter must have a unique name, you can create multiple adapters with the same adapter type to allow for different configuration properties.
The form view provides an easy-to-use interface for configuring adapters. The form view prevents errors that might occur when you copy the configuration XML from the adapter documentation into the UI during configuration. You can switch to the XML view to configure those elements and attributes that are not available as fields or to configure all the elements and attributes using XML only. However, after you switch to the XML view and save the configuration in the XML from that view, you cannot thereafter use the form view for modifying that configuration.
To configure the monitor adapter
- Log on to BMC Atrium Orchestrator Grid Manager.
- Access the adapters page by clicking the Manage tab; then click the Adapters tab.
- In the Adapters in Repository list, select the bmc-adapter-netapp-storage-monitor check box to add a monitor adapter.
- Click Add to Grid to include the adapter in the Adapters on Grid list.
- Click Configure corresponding to the newly added adapter.
- On the Add an Adapter Configuration page, perform the following steps to configure the adapter by using the form view or skip to step 7 to configure the adapter by using the XML view:
Enter a name for the adapter.
- Enter a description for the adapter.
- Under Properties, enter or select values for the configuration elements.
The configuration elements for the monitor adapter are described in the following table. Required elements are indicated with an asterisk (*).
( Optional ) Click Switch to XML View and use the following steps to specify elements and attributes that are not in the form view.
- On the Warning message that appears, click Switch View.
- In the Properties text box, use XML format to enter the configuration elements and attributes not available as fields in the form view.
- Click OK.
- ( Optional ) Configure the adapter in the XML view, using the following steps:
- Enter a name and a description for the adapter.
- Click Switch to XML View.
- On the Warning message that appears, click Switch View.
Copy the configuration elements and attributes from the XML sample into the Properties text box, and then click OK.
On the Warning message that appears, click Save.
This saves the adapter configuration with settings in the XML view permanently. The newly configured adapter is now listed in the Adapters on Grid list.
The following table describes the configuration node elements and attributes for the monitor adapter for NetApp Storage that you can specify using the form view, XML view, or both. You cannot use the form view to configure elements and attributes that do not have an entry in the UI label column.
Node elements required for configuring the monitor adapterUI label
Element
Description
Required
None
<config>Specifies a container element for all other elements.
Yes
Target
<target>Specifies the target server on which the Data Fabric Manager (DFM) server is running
Yes
User Name
<user-name>Specifies the user name to be used for server authentication
Yes
Password
<password>Specifies the password that corresponds to the <user-name>
The password element can contain an encryption-type attribute.Yes
Encryption Type
<encryption-type>Indicates whether the password specified is encrypted; is an attribute of the < password > element, not an element itself
Valid values: Base64, Plain (default)No
Protocol
<protocol>Specifies the protocol which the adapter uses to contact the DFM server
Valid values: http (default), https.No
Netapp Server Port
<netapp-server-port>Specifies the port on which the adapter will contact the DFM server
The value depends upon the protocol selected.
Default value: 8088(for "http" protocol), 8488(for "https" protocol).No
Port
<port>Specifies the port on which to listen for SNMP traps
Yes
Version
<version>Specifies the SNMP version Default value: 1
Yes
Mibs Directory
<mibs-directory>Specifies the directory location for SNMP MIBS
Yes
The following figure shows an XML sample for configuring the adapter with the plain password
XML sample template for configuring the monitor adapter with the plain password
<target>172.11.11.111</target>
<user-name>username</user-name>
<password>password</password>
<protocol>http</protocol>
<netapp-server-port>8088</netapp-server-port>
<port>1620</port>
<version>1</version>
<mibs-directory>C:netapp-mibs</mibs-directory>
</config>
The following figure shows an XML sample for configuring the adapter with the encrypted Base64 password
XML sample template for configuring the monitor adapter with the encrypted Base64 password
<target>172.11.11.111</target>
<user-name>username</user-name>
<password encryption-type="Base64">cGFzc3dvcmQ=</password>
<protocol>http</protocol>
<netapp-server-port>8088</netapp-server-port>
<port>1620</port>
<version>1</version>
<mibs-directory>C:netapp-mibs</mibs-directory>
</config>