python-ipmi icon indicating copy to clipboard operation
python-ipmi copied to clipboard

A pure python IPMI library

Results 31 python-ipmi issues
Sort by recently updated
recently updated
newest added

Revised Pull Request of [the previous pull request](https://github.com/kontron/python-ipmi/pull/122). The Codacy Complaint should be addressed now.

Under the RMCP interface, I run get_device_sdr_list to get sensor info. The threshold of voltage would be over 100. And another question, could you provide the example of raw_command on...

question

package owns /usr/lib/python3.10/site-packages/tests and files within. This clashes with other packages owning (files in) that directory. Can we relocate the tests path?

enhancement

shell command: ipmitool -I lanplus -H $hostname -U admin -P xxxxxx sensor The document was not found. How in the python implementation? thx ~

When I run `ipmitool.py .. sdr show ` against one of the SDR records on my machine I get this error: ``` SDR record ID: 0x0045 SDR type: 0x13 Traceback...

bug

Add a couple of commands to talk to power supplies: heartbeat and output channel control.

import pyipmi import pyipmi.interfaces interface = pyipmi.interfaces.create_interface(interface='rmcp', slave_address=0x81, host_target_address=0x20, keep_alive_interval=1) ipmi = pyipmi.create_connection(interface) ipmi.session.set_session_type_rmcp(host='10.20.100.40', port=623) ipmi.session.set_auth_type_user(username='admin', password='admin') ipmi.target = pyipmi.Target(ipmb_address=0x20) ipmi.session.establish() device_id = ipmi.get_device_id() Response: File "rmcp.py", line 12, in...

Hi! So, I am trying to use the python module to get the health of my system using the sensors. So I have outragously took part of the code in...

bug

Hello Guys, anyone would know what am I doing wrong? Here's one of my servers: ``` $ ipmitool -H 10.8.1.18 -U root -P pass -I lanplus fru print 0 Board...

question

Do you have any plans to provide `-R` (retry) option? > -R retry Set the number of retries for lan/lanplus interface [default=4] If ipmitool request to a hostname that does...

enhancement