-
-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ipmitool dcmi power reading #101
Comments
We currently use
So, unless your stack can do DCMI over LAN (using the IPMI 1.5 protocol) it won't work out of the box. I'm not sure if that exists though. The easiest way to check is with # hostname/ip of ipmi
ipmiHost=""
# user
ipmiUser=""
# password
ipmiPassword=""
# `all` or something from `ipmi-sensors --list-sensor-types`
ipmiSensorTypes="all"
ipmi-sensors --driver-type=LAN \
--hostname="${ipmiHost}" \
--username="${ipmiUser}" \
--password="${ipmiPassword}" \
--privilege-level=USER \
--sensor-types="${ipmiSensorTypes}" \
--output-sensor-thresholds \
--ignore-not-available-sensors \
--comma-separated-output If the output contains values for the Is DCMI an Intel thing or do SuperMicro IPMIs also support it? |
It is a feature of Supermicro motherboard. Unfortunately, the dcmi power reading is not in the ipmi-sensors output for Supermicro X10DriT board. |
I couldnt find template for the power reading. For example ipmitool can be used as follows:
Is there a way to get this information from your templates?
The text was updated successfully, but these errors were encountered: