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)

Feedback?

If this article contains any error, or leaves any of your questions unanswered, please help us out by opening up a github issue.
Open an issue