I'm having a few problems, two of which I put into the sourceforge bug
tracker, but if no one is paying attention there:
-If in SOL and a retry occurs, ipmitool 1.8.8 segfaults, because rsp is
NULL, at a particular point, the following patch seems to help:
diff -urN ipmitool-1.8.8/src/plugins/lanplus/lanplus.c
ipmitool-1.8.8.new/src/plugins/lanplus/lanplus.c
--- ipmitool-1.8.8/src/plugins/lanplus/lanplus.c 2006-04-21
12:34:30.000000000 -0400
+++ ipmitool-1.8.8.new/src/plugins/lanplus/lanplus.c 2006-07-06
10:41:51.961756158 -0400
@@ -2456,7 +2456,7 @@
{
struct ipmi_rs * rsp = ipmi_lan_poll_recv(intf);
- if(rsp->session.authtype != 0)
+ if(rsp != NULL && rsp->session.authtype != 0)
{
ack_sol_packet(intf, rsp);
--------------------------------------------------------------------
-When ipmitool does successfully attempt a retry in SOL, it does not
increment the IPMI sequence number, which at least some BMC vendor says
only the SOL sequence number stays the same, and the IPMI sequence number
should increase.
-Sometimes data comes in that isn't SOL that is spit out like SOL data.
For example, the client does chassis device command and the response
sometimes fall through to the output function in ipmi_sol.c (one such fall
through place is confirmed as ipmi_sol.c, line 1404 in ipmitool 1.8.8.
Should output ensure data is SOL data before spitting it out or not?
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Ipmitool-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/ipmitool-devel