python-ipmi
python-ipmi copied to clipboard
A pure python IPMI library
I am packaging python-ipmi for Debian (see https://bugs.debian.org/969146) and it is strongly recommended that all binaries ship a man page. So please provide a man page for ipmitool.py. You could...
- virtual_env_3_7/lib64/python3.7/site-packages/pyipmi/msgs/message.py:371: DeprecationWarning: tostring() is deprecated. Use tobytes() instead. return data.tostring() - virtual_env_3_7/lib64/python3.7/site-packages/pyipmi/interfaces/ipmitool.py:144: DeprecationWarning: fromstring() is deprecated. Use frombytes() instead. req_data.push_string(encode_message(req)) - virtual_env_3_7/lib64/python3.7/site-packages/pyipmi/interfaces/ipmitool.py:147: DeprecationWarning: tostring() is deprecated. Use tobytes() instead....
import pyipmi import pyipmi.interfaces interface = pyipmi.interfaces.create_interface(interface='ipmitool', interface_type='lanplus') ipmi = pyipmi.create_connection(interface) ipmi.session.set_session_type_rmcp('10.20.100.40', port=623) ipmi.session.set_auth_type_user('admin', 'admin') ipmi.target = pyipmi.Target(ipmb_address=0x82, routing=[(0x81,0x20,0),(0x20,0x82,7)]) ipmi.session.establish() device_id = ipmi.get_device_id() Response : Traceback (most recent call last):...
In refference to issue #24. I've FINALLY had a bit of time to mess with this a little bit. Apologies for being so busy on other things. I'm trying to...
The result of command "ipmitool xxx sel list" are raw log, how to realize the "sel elist" result ? Thanks.
Hello, I was writing script which would pooling power usage from servers over IPMI and noticed that there is no DCIM section implemented in this module.
Were there ever any plans to support the -C arg of ipmitool to specify the cypher when sending a request?
Hello, I'm not sure if this is a library bug or something I'm doing wrong, but in one of my projects the IPMI library sometimes hangs within calls to `ipmi.get_chassis_status()`...
# The issue After PR #144 was merged, I tried to connect to a BMC using an "OPERATOR" user with interface "rmcp", but I kept getting error messages such as...
I am trying to use this ipmi library to read sdr and sensor data from VadaTech devices. Currently I can read data using ipmitool and freeipmi library. And I can...