Question

I'd like to use IPMI to set a machine to PXE boot (i.e. ipmitool -I lan -U username -P password -H ipaddress chassis bootdev pxe) and then power cycle it (i.e. ipmitool -I lan -U username -P password -H ipaddress chassis power cycle). However, I'd like to do this in a python script so I'm trying to use OpenIPMI and its python bindings.

I can't seem to find any documentation on OpenIPMI for a python script and I'm not sure how to correctly apply IPMI commands (making sure the machine is in the right state so the commands don't fail). Can someone please show me some pointers or resources on using OpenIPMI (or an alternative) to operate IPMI commands in python? Thanks!

Was it helpful?

Solution

For something so simple it is much easier to just run those commands using the subprocess module.

However, if you still choose the openimpi module here is an example of how to use it:
http://www.mail-archive.com/ipmitool-devel@lists.sourceforge.net/msg01445.html

OTHER TIPS

I found the document IPMI – A Gentle Introduction with OpenIPMI very helpful. It gives good understanding where/how to get the information. As I understood Python can talk to "shared Library" over using Swig. I hope it will help you.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top