a2cafc9802
- Change systems_list to systems_dict["<index>"] . The systems_dict will contain system objects, <index> is the redfish <index> as reported inside url.
50 lines
1.5 KiB
Python
50 lines
1.5 KiB
Python
# coding=utf-8
|
|
|
|
""" Simple example to use python-redfish with DMTF simulator """
|
|
|
|
import os
|
|
import sys
|
|
import json
|
|
import redfish
|
|
|
|
# Get $HOME environment.
|
|
HOME = os.getenv('HOME')
|
|
|
|
if HOME == '':
|
|
print("$HOME environment variable not set, please check your system")
|
|
sys.exit(1)
|
|
|
|
try:
|
|
with open(HOME + "/.redfish.conf") as json_data:
|
|
config = json.load(json_data)
|
|
json_data.close()
|
|
except IOError as e:
|
|
print("Please create a json configuration file")
|
|
print(e)
|
|
sys.exit(1)
|
|
|
|
URL = config["Managers"]["default"]["url"]
|
|
USER_NAME = config["Managers"]["default"]["login"]
|
|
PASSWORD = config["Managers"]["default"]["password"]
|
|
|
|
''' remoteMgmt is a redfish.RedfishConnection object '''
|
|
try:
|
|
remote_mgmt = redfish.connect(URL,
|
|
USER_NAME,
|
|
PASSWORD,
|
|
simulator=True,
|
|
enforceSSL=False)
|
|
except redfish.exception.RedfishException as e:
|
|
sys.stderr.write(e.message)
|
|
sys.stderr.write(e.advices)
|
|
sys.exit(1)
|
|
|
|
|
|
print("Redfish API version : {} \n".format(remote_mgmt.get_api_version()))
|
|
print("UUID : {} \n".format(remote_mgmt.Root.get_api_UUID()))
|
|
print("System 1 :\n")
|
|
print("Bios version : {}\n".format(remote_mgmt.Systems.systems_dict["1"].get_bios_version()))
|
|
print("System 2 :\n")
|
|
print("Bios version : {}\n".format(remote_mgmt.Systems.systems_dict["2"].get_parameter("SerialNumber")))
|
|
#print remoteMgmt.get_api_link_to_server()
|