White Papers
35
SETTING DEFAULT NETWORK SHARE FOR SAVING COLLECTIONS
iDRAC GUI
1. Log in to the iDRAC GUI
2. Click Maintenance SupportAssist.
If the server is not registered for SupportAssist, the SupportAssist Registration wizard is displayed.
3. Click Cancel Cancel Registration.
4. Scroll to the bottom of the page and click Settings Collection Settings Set Archive Directory.
5. Select the protocol and enter the network share details.
6. Click Set as Default to set it as the default share for saving collections.
WSMAN
ApplyAttributes()
To set the default attributes for network share, send the following WSMAN SOAP packet.
Request SOAP packet:
<?xml version="1.0"?>
<s:Envelope xmlns:s="http://www.w3.org/2003/05/soap-envelope"
xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing"
xmlns:wsman="http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd"
xmlns:n1="http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/root/dcim/DCIM_iDRACCardService">
<s:Header>
<wsa:Action s:mustUnderstand="true">http://schemas.dmtf.org/wbem/wscim/1/cim-
schema/2/root/dcim/DCIM_iDRACCardService/ApplyAttributes</wsa:Action>
<wsa:To s:mustUnderstand="true">https://10.94.225.31:443/wsman</wsa:To>
<wsman:ResourceURI s:mustUnderstand="true">http://schemas.dmtf.org/wbem/wscim/1/cim-
schema/2/root/dcim/DCIM_iDRACCardService</wsman:ResourceURI>
<wsa:MessageID s:mustUnderstand="true">uuid:82de0cd8-4f16-1f16-8002-
6cbb576a0064</wsa:MessageID>
<wsa:ReplyTo>
<wsa:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</wsa:Address>
</wsa:ReplyTo>
<wsman:SelectorSet>
<wsman:Selector Name="Name">DCIM:iDRACCardService</wsman:Selector>
<wsman:Selector Name="SystemName">DCIM:ComputerSystem</wsman:Selector>
<wsman:Selector Name="CreationClassName">DCIM_iDRACCardService</wsman:Selector>
<wsman:Selector Name="SystemCreationClassName">DCIM_ComputerSystem</wsman:Selector>
</wsman:SelectorSet>
</s:Header>
<s:Body>
<n1:ApplyAttributes_INPUT>
<n1:Target>iDRAC.Embedded.1</n1:Target>
<n1:AttributeName>SupportAssist.1#DefaultProtocol</n1:AttributeName>
<n1:AttributeValue>NFS</n1:AttributeValue>
<n1:AttributeName>SupportAssist.1#DefaultIPAddress</n1:AttributeName>
<n1:AttributeValue>10.94.224.124</n1:AttributeValue>
<n1:AttributeName>SupportAssist.1#DefaultShareName</n1:AttributeName>
<n1:AttributeValue>/home/kiran_k2/nfsshare</n1:AttributeValue>
<n1:AttributeName>SupportAssist.1#DefaultUserName</n1:AttributeName>
<n1:AttributeValue>wsman</n1:AttributeValue>
<n1:AttributeName>SupportAssist.1#DefaultPassword</n1:AttributeName>
<n1:AttributeValue>password</n1:AttributeValue>
<n1:AttributeName>SupportAssist.1#DefaultWorkgroupName</n1:AttributeName>
<n1:AttributeValue>work</n1:AttributeValue>
</n1:ApplyAttributes_INPUT>
</s:Body>
</s:Envelope>