-
When you run the command #ipmitool fru it should list the "Chassis Type" read from SMBIOS. It looks like ipmitool was based on SMBIOS 2.3 Chassis Type table. This table is defined in ipmi_fru.h.
In the SMBIOS version 2.6.1 there are six additional Chassis Types defined: http://www.dmtf.org/standards/published_documents/DSP0134_2.6.1.pdf Look at page 23 for the Chassis Type table.
2009-12-17 18:10:16 UTC by kippglov
-
Thinking about this for another 10 seconds, I suppose if the ipmi response (rsp var) were cleared properly in each ipmitool interface (lan, open, etc.), then this problem might go away, although I feel the array out of bounds is probably always a bad thing to do. (note the array out of bounds is not going off the array of allocated memory, but rather going passed the "max index" of data read.)
2009-11-25 14:28:14 UTC by chu11
-
chu11 committed patchset 1048 of module ipmitool to the IPMItool CVS repository, changing 2 files.
2009-11-24 23:21:21 UTC by chu11
-
I was trying to figure out why some output in FreeIPMI was different
than in ipmitool, then I figured it out. In lib/ipmi_sensor.c in
several locations after a sensor reading, there is code like this:
printf("| 0x%-8x | %-10s | 0x%02x%02x",
val,
unitstr, rsp->data[2], rsp->data[3]);
Most notably, the code is reading data[2] and data[3] from the response,
which maps to...
2009-11-24 22:51:06 UTC by chu11
-
The condrestart action of the ipmievd redhat init script doesn't work - it tries to call a nonexistent "restart" function. Fix attached, along with some LSB action alias additions (force-reload, try-restart).
2009-10-31 08:54:19 UTC by scop
-
$ man ipmitool | grep -w kg_key
[-Y|[-K|-k ]
-- 2nd '[' is spurious
(in cvs)
2009-10-15 09:24:35 UTC by filbo
-
src/ipmitool.c brackets the references to ipmi_shell_main() with `#ifdef HAVE_READLINE'.
This is wrong because src/ipmishell.c handles this by printing "Compiled without readline,
shell is disabled".
Ironically, if you build without libreadline, `ipmitool shell` prints a syntax error while
`strings ipmitool | grep shell` clearly shows "Compiled without readline, shell is disabled" !
2009-10-15 09:22:08 UTC by filbo
-
I've noticed on our systems that ipmievd does not print the correct logging message for drive bay sensors. The drive bays are Compact Sensor (type 2) in the SDR, and indicate that this is a shared record (Share Count = 8).
The SDR has a single entry for drive slots, sensor #80 with share count = 8. The next sensor number in the SDR is #90. When a drive is pulled/inserted, the SEL will contain...
2009-10-14 20:24:01 UTC by nobody
-
Issue:
======
When using the following ipmitool command to set a users access, the Link Authorization (Link Auth) gets changed from true(1) to false (0).
# ipmitool user priv 3 4 2
How to replicate:
# ipmitool user list 2
ID Name Callin Link Auth IPMI Msg Channel Priv Limit
1 true true true USER
2 Operator true true.
2009-10-02 16:50:10 UTC by kippglov
-
Committed to CVS.
2009-10-02 14:35:45 UTC by isabellf