September 1, 2014


Get IPMI info for BMS

Retrieve IPMI address, username, and password for all hardware on the account
import SoftLayer
from pprint import pprint as pp
 
client = SoftLayer.Client()
      
mask = """mask[networkManagementIpAddress,remoteManagementAccounts[username,password],id,fullyQualifiedDomainName]"""
         
result = client['SoftLayer_Account'].getHardware(mask=mask)
pp(result)