I currently am being tasked to cross-reference ENVSTAT data with IPMITOOL data. I managed to get envstat working well without too much pain, but I have been stuck at configuring iPMITOOL for quite awhile now.
As far as I am aware, the only way to use IPMITOOL is using a valid IP. This shouldn't be a problem, as I could just direct it to either the computers main address or just '127.0.0.1'. I do the following command:
ipmitool -I lanplus -H 127.0.0.1 -U root -P <password> chassis status
as well as
ipmitool -I lanplus -H <IP_ADDRESS> -U root -P <password> chassis status
on two different computers which result in the same output:
Error: UNable to establish IPMI v2 / RMCP+ session
Error: sending Chassis Status command
I am working on a Mac station with NetBSD on a local VM.
My question is twofold:
Can you use
ipmitool
to gather local data?How do you configure
ipmitool
and/or the OS to acceptipmitool
commands?