Re: [Ipmitool-devel] Loosing SOL packet when KeepAlive feature is ON

2006-11-13 Thread Audet, Jean-Michel








Hi,

    I found the problem in the ipmitool source.  Here is what
occur step by step.




 Receiving a sol packet ID 4, length 24 bytes  24 bytes
 are displayed on the console
 Sending a sol acknowledge ID 4, length 0 (only ack)
 Sending the keepalive GetDevice Id
 Waiting for an answer (to the IPMI Get Device Id) but 
 Receiving a sol packet ID 5, length 24 bytes
 Check that CC is OK for IPMI Get Device ID (it occurs that yes, the
 completion code is 0)




SOL received packet is used as the answer for the GetDeviceID instead
of the real GetDeviceId answer.  Then, the answer to the GetDeviceId is
interpreted by the SOL red pill function and some garbage is thrown on the
screen (I had already solve a month ago the garbage on the screen bug by
ignoring the answer).





This brings me to a
bigger problem.  It looks like IPMITOOL is not done in a way that question and
answer can be dissociated.  There is no guarantee that packet of a different
payload type could be received in between of question/answer of another type
or of the same type.   For example, a SOL packet can be sent in between a
getDeviceId question/answer.  This is for 99% of the time not a problem.



Here is what I propose.   Instead
of using a getDeviceId for the keepalive mechanism, we could use a simple empty
SOL transmit.  (Valid sequence number, no acknowledge, length of 0).  This will
trig no work on the BMC side and will no generate also an answer.  The impact
on the traffic is lower and we bypass the problem describe above.  Also, I can
reset the keepalive timestamp when some other sol packet is transmit.. This
way, no extra traffic if there is already running traffic/



Any problem with that?



When the IPMITOOL release
is schedule (1.8.9??) ?



I have tried the fix and
for our implementation, it works correctly.



Jean-Michel Audet

















De:
Audet, Jean-Michel 
Envoyé: Monday,
November 13, 2006 1:59 PM
À:
ipmitool-devel@lists.sourceforge.net
Objet: Loosing SOL packet
when KeepAlive feature is ON





Hi,


I am currently developing a SOL implementation on our products. I
periodically loose some data and I just found something. During a short
moment, when the keep alive mechanism send a GetDeviceID packet to the bmc, the
transmit packet to the console are not displayed (not received).

I have some way to verify the traffic on our BMC and
the problem occur always during a keep alive GetDeviceID. When I am
disabling the keep alive feature, my problem disappears. I checked a
little bit on the code and so far, I am not sure where the problem is.



Anyone see this problem? Any ideas where the
problem might be? It looks like when the GetDeviceId is sent, that no SOL
packet can be sent before the answer is received..



Thanks!



Jean-Michel Audet














-
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=lnkkid=120709bid=263057dat=121642___
Ipmitool-devel mailing list
Ipmitool-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ipmitool-devel


Re: [Ipmitool-devel] KCS with interrupts

2006-12-05 Thread Audet, Jean-Michel
It is for KCS transaction speed.  

Today, with the latest kernel and new timers with better resolution, the 
difference is not very big between an implementation in interrupt or in 
polling.  

When no high resolution timer was available, the KCS speed was at least 20 
times slower than now.  A transaction that is now taking 5ms to 10ms was taking 
200ms before. 

Jean-Michel Audet

-Message d'origine-
De : [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] De la part de David A. Ranch
Envoyé : Monday, December 04, 2006 9:37 PM
À : ipmitool-devel
Objet : Re: [Ipmitool-devel] KCS with interrupts


Curious, what's the benefit of an interrupt-based IPMI setup?  Better 
response for things like traps, SOL, etc. compared to polling?  As it 
stands, the dmidecode for these Supermicro cards doesn't say anything 
about interrupts:

...
Handle 0x0030
DMI type 38, 12 bytes.
IPMI Device Information

[that's it for IPMI]

--Davod

 Hi,
 Was anyone able to enable interrupts on KCS interface (Open IPMI driver)?

 When I send: 
 modprobe ipmi_si type=kcs irqs=9

 after 'dmesg |grep ipmi' I get:
 ipmi message handler version 33.11
 ipmi_si: Found SMBIOS-specified state machine at I/O address 0xca2, slave 
 addres
 s 0x20

 and 'cat /proc/ipmi/0/si_stats' shows:
 interrupts_enabled:0 

 Regards,
 Andrzej 

 
 Komedia dla całej rodziny - Wpuszczony w kanał - nowa, rewelacyjna
 animacja twórców Shreka i Madagaskaru w kinach od 1 grudnia!
 http://klik.wp.pl/?adr=http%3A%2F%2Fadv.reklama.wp.pl%2Fas%2Fwkanal.htmlsid=957



 -
 Take Surveys. Earn Cash. Influence the Future of IT
 Join SourceForge.net's Techsay panel and you'll get the chance to share your
 opinions on IT  business topics through brief surveys - and earn cash
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 ___
 Ipmitool-devel mailing list
 Ipmitool-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/ipmitool-devel
   


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Ipmitool-devel mailing list
Ipmitool-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ipmitool-devel
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Ipmitool-devel mailing list
Ipmitool-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ipmitool-devel


Re: [Ipmitool-devel] KCS with interrupts

2006-12-05 Thread Audet, Jean-Michel
Open IPMI does check that and use it when available.

If your KCS transaction time is less than 20ms, open ipmi use it.

Otherwise, use make menuconfig to select the high resolution timer, after 
rebuild your kernel.

JM

-Message d'origine-
De : Andrzej Niemcewicz [mailto:[EMAIL PROTECTED] 
Envoyé : Tuesday, December 05, 2006 10:31 AM
À : Audet, Jean-Michel
Cc : David A. Ranch; ipmitool-devel
Objet : Re: [Ipmitool-devel] KCS with interrupts

How can I check if high resolution timer is available in my system?

Andrzej

Dnia 5-12-2006 o godz. 14:52 Audet Jean-Michel napisał(a):
 It is for KCS transaction speed.  
 
 Today, with the latest kernel and new timers with better resolution, the 
 difference is not very big between an implementation in interrupt or in 
 polling.  
 
 When no high resolution timer was available, the KCS speed was at least 
 20 times slower than now.  A transaction that is now taking 5ms to 10ms 
 was taking 200ms before. 
 
 Jean-Michel Audet
 
 -Message d'origine-
 De : [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] De la part de 
 David A. Ranch
 EnvoyÊ : Monday, December 04, 2006 9:37 PM
 À : ipmitool-devel
 Objet : Re: [Ipmitool-devel] KCS with interrupts
 
 
 Curious, what's the benefit of an interrupt-based IPMI setup?  Better 
 response for things like traps, SOL, etc. compared to polling?  As it 
 stands, the dmidecode for these Supermicro cards doesn't say anything 
 about interrupts:
 
 ...
 Handle 0x0030
 DMI type 38, 12 bytes.
 IPMI Device Information
 
 [that's it for IPMI]
 
 --Davod
 
  Hi,
  Was anyone able to enable interrupts on KCS interface (Open IPMI 
 driver)?
 
  When I send: 
  modprobe ipmi_si type=kcs irqs=9
 
  after 'dmesg |grep ipmi' I get:
  ipmi message handler version 33.11
  ipmi_si: Found SMBIOS-specified state machine at I/O address 0xca2, 
 slave addres
  s 0x20
 
  and 'cat /proc/ipmi/0/si_stats' shows:
  interrupts_enabled:0 
 
  Regards,
  Andrzej 
 
  
  Komedia dla całej rodziny - Wpuszczony w kanał - nowa, rewelacyjna
  animacja twórców Shreka i Madagaskaru w kinach od 1 grudnia!
  
 http://klik.wp.pl/?adr=http%3A%2F%2Fadv.reklama.wp.pl%2Fas%2Fwkanal.htmlsid=957
 
 
 
  
 -
  Take Surveys. Earn Cash. Influence the Future of IT
  Join SourceForge.net's Techsay panel and you'll get the chance to 
 share your
  opinions on IT  business topics through brief surveys - and earn cash
  
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
  ___
  Ipmitool-devel mailing list
  Ipmitool-devel@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/ipmitool-devel

 
 
 -
 Take Surveys. Earn Cash. Influence the Future of IT
 Join SourceForge.net's Techsay panel and you'll get the chance to share 
 your
 opinions on IT  business topics through brief surveys - and earn cash
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 ___
 Ipmitool-devel mailing list
 Ipmitool-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/ipmitool-devel
 -
 Take Surveys. Earn Cash. Influence the Future of IT
 Join SourceForge.net's Techsay panel and you'll get the chance to share 
 your
 opinions on IT  business topics through brief surveys - and earn cash
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 ___
 Ipmitool-devel mailing list
 Ipmitool-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/ipmitool-devel
 


2016 stron, 5000 ilustracji, 321 map i ponad 120 tys. definicji!
Encyklopedia Powszechna Larousse - Idealny prezent gwiazdkowy
nie tylko dla uczniów! Zobacz najbardziej popularną encyklopedię:
http://klik.wp.pl/?adr=http%3A%2F%2Fadv.reklama.wp.pl%2Fas%2Fd49.htmlsid=955


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Ipmitool-devel mailing list
Ipmitool-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ipmitool-devel


Re: [Ipmitool-devel] new release?

2007-01-16 Thread Audet, Jean-Michel
Hi,
I can probably help a little.  Let me know what needs to be done and I 
will pick some stuff...  
Anyway, I have and will continue my testing on Kontron IPMI implementations.

Jean-Michel Audet
Kontron Canada

-Message d'origine-
De : [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] De la part de Carol Hebert
Envoyé : Monday, January 15, 2007 11:07 PM
À : [EMAIL PROTECTED]
Cc : ipmitool-devel@lists.sourceforge.net; [EMAIL PROTECTED]
Objet : Re: [Ipmitool-devel] new release?

Hi,

So, to recap the story thus far:  Duncan Laurie -- ipmitool maintainer
par excellence -- was swallowed up by real life (new job, new house, new
baby) and has admitted that he doesn't have the bandwidth currently to
continue active maintainership of ipmitool.  Since then, we've found the
following people who have indicated their willingness to help maintain
ipmitool (or, speaking for myself, at least willing to do some of the
testing  reviewing gruntwork involved) and to help with the roll to
v1.8.9 (although no one has yet indicated that they have the bandwidth
to take over the full workload):

Petter Reinholdtsen  (maintainer for Debian ipmitool)
Jarrod Johnson
Arkadiusz Miskiewicz
Carol Hebert
possibly another victim I'm working on :-} 


Any others?   It seems like we almost have critical mass ... :-}  What
needs to be done to roll to 1.8.9?  Duncan, do you have a list of
outstanding work items for the version roll that you can send us to work
on?  Maybe the four of us listed can somehow fill in for (the one of)
you and finish 1.8.9. Please let us know what needs to be done.

Thank you. :-)

Carol Hebert


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Ipmitool-devel mailing list
Ipmitool-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ipmitool-devel

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Ipmitool-devel mailing list
Ipmitool-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ipmitool-devel


Re: [Ipmitool-devel] ipmitool v1.8.9 ready to roll?

2007-02-27 Thread Audet, Jean-Michel
Hi, I am doing my final testing with our Kontron ATCA blades and got new 
strange behavior.  Is there any change to SOL recently that may affect the 
behavior?  I am getting new problems after a short moment of sending bytes.  
It's working for like 5 seconds and then, scrambled bytes?

Any idea?

JM

-Message d'origine-
De : [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] De la part de Carol Hebert
Envoyé : Monday, February 26, 2007 5:03 PM
À : ipmitool-devel@lists.sourceforge.net; [EMAIL PROTECTED]
Objet : [Ipmitool-devel] ipmitool v1.8.9 ready to roll?


Hi,

I've completed regression testing of the 2/26/07 cvs tree on several
different distros/kernels with no problems found.  Does anyone else
have any last regression tests to run or can we roll the current cvs
tree to v1.8.9?

Thanks,

Carol Hebert


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Ipmitool-devel mailing list
Ipmitool-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ipmitool-devel

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Ipmitool-devel mailing list
Ipmitool-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ipmitool-devel


Re: [Ipmitool-devel] ipmitool v1.8.9 ready to roll?

2007-02-28 Thread Audet, Jean-Michel
Problem is on my side.  I apologize for this last time freak out warning !!! :o)

Ready to roll!
Jean-Michel Audet


-Message d'origine-
De : [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] De la part de Audet, 
Jean-Michel
Envoyé : Wednesday, February 28, 2007 9:43 AM
À : Jarrod B Johnson
Cc : ipmitool-devel@lists.sourceforge.net; [EMAIL PROTECTED]; Carol Hebert
Objet : Re: [Ipmitool-devel] ipmitool v1.8.9 ready to roll?

Hi,
I am still trying to figure out what has changed.  I am not able to 
successfully transfer data when the retry-count and retry-interval is set to 0. 
 This was working fine with build that I had.

I will try to let you know as soon as possible.

Jean-Michel Audet
Kontron Canada.

-Message d'origine-
De : Jarrod B Johnson [mailto:[EMAIL PROTECTED] 
Envoyé : Tuesday, February 27, 2007 11:28 AM
À : Audet, Jean-Michel
Cc : Carol Hebert; ipmitool-devel@lists.sourceforge.net; [EMAIL PROTECTED]
Objet : Re: [Ipmitool-devel] ipmitool v1.8.9 ready to roll?

The only thing I see in relatively recent past is a one line change you
submitted four days ago...  We are still using the Get Device ID for
keepalive, since it is a strategy that works on more BMCs, but it should
have been cleaned up, done a wireshark/ethereal capture with -C 0 to see
what's up?  Get Device ID return misinterpreted was the common cause of
this, but there should be no way that can happen anymore.. (sol handler
checks to make sure it is an SOL packet before outputting even if all
else fails).  I cannot reproduce an SOL problem with today's CVS on my
sample of 11 IBM rackmount systems, but I'll keep them running.

On Tue, 2007-02-27 at 09:45 -0500, Audet, Jean-Michel wrote:
 Hi, I am doing my final testing with our Kontron ATCA blades and got new 
 strange behavior.  Is there any change to SOL recently that may affect the 
 behavior?  I am getting new problems after a short moment of sending bytes.  
 It's working for like 5 seconds and then, scrambled bytes?
 
 Any idea?
 
 JM
 
 -Message d'origine-
 De : [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] De la part de Carol Hebert
 Envoyé : Monday, February 26, 2007 5:03 PM
 À : ipmitool-devel@lists.sourceforge.net; [EMAIL PROTECTED]
 Objet : [Ipmitool-devel] ipmitool v1.8.9 ready to roll?
 
 
 Hi,
 
 I've completed regression testing of the 2/26/07 cvs tree on several
 different distros/kernels with no problems found.  Does anyone else
 have any last regression tests to run or can we roll the current cvs
 tree to v1.8.9?
 
 Thanks,
 
 Carol Hebert
 
 
 -
 Take Surveys. Earn Cash. Influence the Future of IT
 Join SourceForge.net's Techsay panel and you'll get the chance to share your
 opinions on IT  business topics through brief surveys-and earn cash
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 ___
 Ipmitool-devel mailing list
 Ipmitool-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/ipmitool-devel
 
 -
 Take Surveys. Earn Cash. Influence the Future of IT
 Join SourceForge.net's Techsay panel and you'll get the chance to share your
 opinions on IT  business topics through brief surveys-and earn cash
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 ___
 Ipmitool-devel mailing list
 Ipmitool-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/ipmitool-devel


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Ipmitool-devel mailing list
Ipmitool-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ipmitool-devel

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Ipmitool-devel mailing list
Ipmitool-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ipmitool-devel


[Ipmitool-devel] Test

2007-07-10 Thread Audet, Jean-Michel
Sorry if you receive this, this is a test.

 

Jean-Michel Audet

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/___
Ipmitool-devel mailing list
Ipmitool-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ipmitool-devel


[Ipmitool-devel] TR: dual bridge support

2007-09-12 Thread Audet, Jean-Michel

Hi Dmitry and Corey, 
Looks like some of you are trying to get in touch with me!!
Sorry, I miss the e-mail or I never received it... Anyway, do you still
have problem with the dual bridge option.

The DUAL bridge option with RMCP+ is used to send a remote command to
the shelf-manager, bridge it to a ATCA blade and double-bride it to an
AMC.

Let me know.

Jean-Michel Audet


Dmitry Frolov wrote:
 open.h is conditionally included if no other OpenIPMI header is
 available.

 Currenlty there is a feature called dual bridge support that
 is incompatible with mainline OpenIPMI, that causes ipmitool
 compile to fail on Linux when kernel headers are installed. I added
 --disable-intf-open-dual-bridge configure option to disable parts of
the
 code that fails.

 However I want to ask developers, and especially Jean-Michel Audet,
what
 they think about disabling this code by default, or even auto-detect
if
 appropriate OpenIPMI header is available?
   
What is this feature?  Does the IPMI driver need to be modified to allow

it to work?

-corey


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
Ipmitool-devel mailing list
Ipmitool-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ipmitool-devel

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
Ipmitool-devel mailing list
Ipmitool-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ipmitool-devel


Re: [Ipmitool-devel] TR: dual bridge support

2007-09-12 Thread Audet, Jean-Michel
Not sure I understand correctly the private and native.  This is currently 
working without any modification or support from the driver side.  We just add 
a layer of send message and wait for multiple answers.

Let me know!
Jean-Michel Audet




-Message d'origine-
De : Dmitry Frolov [mailto:[EMAIL PROTECTED] 
Envoyé : Wednesday, September 12, 2007 10:47 AM
À : Audet, Jean-Michel
Cc : Ipmitool-devel@lists.sourceforge.net
Objet : Re: [Ipmitool-devel] TR: dual bridge support

* Audet, Jean-Michel [EMAIL PROTECTED] [12.09.2007 21:25]:

 
 Hi Dmitry and Corey, 
   Looks like some of you are trying to get in touch with me!!
 Sorry, I miss the e-mail or I never received it... Anyway, do you still
 have problem with the dual bridge option.
 
 The DUAL bridge option with RMCP+ is used to send a remote command to
 the shelf-manager, bridge it to a ATCA blade and double-bride it to an
 AMC.

Hi, Jean-Michel!

It used struct ipmi_ipmb_addr fields that are present only in ipmitool's
private ipmi.h but not in native openipmi header.  This caused problems
when building with native openipmi headers installed.  I added a check
to configure if these fields are present in used header file and it
seems to work.

It looks like this feature needs in-band driver support, so I'm
interesed in status of this feature in openipmi - is it a proprietary
extension and will it be integrated in openipmi?

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
Ipmitool-devel mailing list
Ipmitool-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ipmitool-devel


Re: [Ipmitool-devel] IPMI BMC with dedicated management port(RJ-45).... connecting over LAN??

2009-02-26 Thread Audet, Jean-Michel
The problem you are describing seems to be related to a specific hardware 
problem.  IOL is working perfectly on most of the hardware.  IOL is definitely 
a good way to access the IPMI (management).  

 

However, I am not sure about the cluster fencing thing but more information 
will be required to know if it's a good interface for that.

 

For your problem, I would bet in a configuration problem.  You need to:

 

Configure IPMI IOL channel

-  IP Address, Mask, gateway.

-  Enable corresponding LAN (IOL) channel.

 

Sometimes, hardware offer BIOS menu to do the configuration.

 

P.S.:  SOL is not what you are looking for except if you want to access to a 
serial port using the LAN interfaces (Serial-Over-LAN).

 

To debug more your setup, we will need more meat.

 

Regards,

Jean-Michel Audet

 



De : Randall Walls [mailto:randall.wa...@gmail.com] 
Envoyé : Thursday, February 26, 2009 12:36 PM
À : ipmitool-devel@lists.sourceforge.net
Objet : [Ipmitool-devel] IPMI BMC with dedicated management port(RJ-45) 
connecting over LAN??

 

Greetings, 

This is my first post to this mailing list and I'm hoping that someone can help 
me better understand how to connect to IPMI through a dedicated management 
port. I've read pretty much everything I can get my hands on and I'm still a 
bit in the dark. 

I have 2 servers that will eventually be members of a cluster, and my initial 
plan was to use IPMI over LAN for cluster fencing. The servers have a 
'management port' (RJ-45) that I connected to a switch via standard CAT-5e. I 
used IPMItool to assign IP addresses/netmask, with the intention of having a 
small network specifically for IPMI traffic. 

The problem is that I can't connect to any remote machines using the LAN 
interface. Using the -vvv option I can see the initial ping-discovery packet, 
and it is being sent to the correct address, but nothing ever comes back. I can 
only assume that either there is no communication, or I've setup something 
wrong. 

The strange thing is that the management port does not show up as an interface 
when I do an ifconfig -a. However, I'm not sure if it is supposed to. This 
isn't a normal NIC, it is supposed to be hooked directly into the BMC and 
useable even if the server is powered down. That is why I wanted to use it for 
fencing. 

Has anyone seen this type of setup before? From what I've read the LAN 
interface of IPMI seems to make reference to interfaces that the OS is aware 
of. Is SOL what I need in order to use the management interface? 

Any help would be appreciated. I can confirm that IPMI is working locally, it's 
just getting to a remote machine over the network that is not working. 

-- 
Randall

--
Open Source Business Conference (OSBC), March 24-25, 2009, San Francisco, CA
-OSBC tackles the biggest issue in open source: Open Sourcing the Enterprise
-Strategies to boost innovation and cut costs with open source participation
-Receive a $600 discount off the registration fee with the source code: SFAD
http://p.sf.net/sfu/XcvMzF8H___
Ipmitool-devel mailing list
Ipmitool-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ipmitool-devel


[Ipmitool-devel] CVS access

2009-07-28 Thread Audet, Jean-Michel
Hi, 

Just want to verify if there is currently a problem with the CVS 
access to IPMITool.

 

When trying the following command:

cvs -z3 -d:ext:aude...@ipmitool.cvs.sourceforge.net:/cvsroot/ipmitool co -P 
ipmitool

 

Got the following output:

ssh: connect to host ipmitool.cvs.sourceforge.net port 22: Connection refused

cvs [checkout aborted]: end of file from server (consult above messages

 

 

Problem may be on my side...

 

Jean-Michel Audet | Software Designer | KONTRON Canada | T 450 437-4661 
ext.2233 | E jean-michel.au...@ca.kontron.com 
mailto:jean-michel.au...@ca.kontron.com 

Prendre note que nous sommes déménagés // Please note that we moved.
Nouvelle adresse // New address:
Kontron Canada
4555 Rue Ambroise-Lafortune
Boisbriand (Québec) J7H 0A4

L'information contenue dans le présent document est la propriété de Kontron 
Canada Inc. et est divulguée en toute confidentialité. Cette information ne 
doit pas être utilisée, divulguée ou reproduite sans le consentement écrit 
explicite de Kontron Canada Inc. Si vous n'êtes pas le destinataire prévu et 
avez reçu cette communication par erreur, veuillez contacter l'originateur et 
supprimer toute copie.  The information contained in this document is 
confidential and property of Kontron Canada Inc. Any unauthorized review, use, 
disclosure or distribution is prohibited without express written consent of 
Kontron Canada Inc. If you are not the intended recipient, please contact the 
sender and destroy all copies of the original message and enclosed attachments.

 

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july___
Ipmitool-devel mailing list
Ipmitool-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ipmitool-devel


Re: [Ipmitool-devel] ipmitool breakage with kernel 2.6.37

2011-02-10 Thread Audet, Jean-Michel
Hi Corey, 
  I observe the same issue.  It is related to polling rate.  What I have 
observed on my side was that when polling time is slower, it is working.  In 
interrupt mode, it was working. In interrupt mode without working interrupt 
(means that polling rate is lower), it is working.  It is all related to the 
time to process the transmission from the BMC to the CPU host interface.  On my 
side, it was OK from Host Side to BMC.  

Jean-Michel Audet

-Original Message-
From: Corey Minyard [mailto:miny...@acm.org]
Sent: Thu 2/10/2011 5:10 PM
To: mika.lansiri...@stonesoft.com
Cc: ipmitool-devel@lists.sourceforge.net; 
openipmi-develo...@lists.sourceforge.net; m...@redhat.com
Subject: Re: [Ipmitool-devel] ipmitool breakage with kernel 2.6.37
 
This has been reported by others on different hardware, so I'm beginning 
to think this is a problem in the driver.

-corey

On 02/09/2011 07:48 AM, mika.lansiri...@stonesoft.com wrote:
 Hello,

 We noticed recently that ipmitool started randomly having problems when we
 upgraded the kernel from 2.6.32.(28) to 2.6.37. For example:

 # ipmitool sdr
 Unable to obtain SDR reservation
 Unable to open SDR for reading

 And at the same time dmesg was populated with these kinds of messages:
 [ 1248.568274] IPMI message handler: BMC returned incorrect response,
 expected netfn b cmd 22, got netfn b cmd 20
 [ 1248.570735] IPMI message handler: BMC returned incorrect response,
 expected netfn 7 cmd 35, got netfn b cmd 22
 [ 2035.155582] IPMI message handler: BMC returned incorrect response,
 expected netfn b cmd 22, got netfn b cmd 20
 [ 2459.722198] IPMI message handler: BMC returned incorrect response,
 expected netfn b cmd 22, got netfn b cmd 20

 The command was many times successful without any problems, but every now
 and then (quite often) the above problems were seen. The ipmitool used is
 from debian lenny: ipmitool version 1.8.9 and the motherboard of the
 machine is Supermicro X8DTI-F.


 As it looked like the problem is in the kernel, I started to revert
 possible commits concerning ipmi, and indeed find out that this is the one
 after which it started to fail:

 commit 3326f4f2276791561af1fd5f2020be0186459813
 Author: Matthew Garrettm...@redhat.com
 Date:   Wed May 26 14:43:49 2010 -0700

  ipmi: reduce polling

  We can reasonably alter the poll rate depending on whether we're
  performing a transaction or merely waiting for an event.



 And the parts in that commit, which should be reverted to make it stable
 again are:

 @@ -899,13 +899,10 @@ static void sender(void*send_info,
   printk(**Enqueue: %d.%9.9d\n, t.tv_sec, t.tv_usec);
   #endif

   mod_timer(smi_info-si_timer, jiffies + SI_TIMEOUT_JIFFIES);

 - if (smi_info-thread)
 - wake_up_process(smi_info-thread);
 -
   if (smi_info-run_to_completion) {
   /*
* If we are running to completion, then throw it in
* the list and run transactions until everything is
* clear.  Priority doesn't matter here.
 @@ -1022,12 +1019,10 @@ static int ipmi_thread(void *data)
   busy_until);
   if (smi_result == SI_SM_CALL_WITHOUT_DELAY)
   ; /* do nothing */
   else if (smi_result == SI_SM_CALL_WITH_DELAY  busy_wait)
   schedule();
 - else if (smi_result == SI_SM_IDLE)
 - schedule_timeout_interruptible(100);
   else
   schedule_timeout_interruptible(1);
   }
   return 0;
   }




 Please, let me know if you need any additional assistance regarding the
 problem.



 Best regards,
   Mika Länsirinne



 --
 The ultimate all-in-one performance toolkit: Intel(R) Parallel Studio XE:
 Pinpoint memory and threading errors before they happen.
 Find and fix more than 250 security defects in the development cycle.
 Locate bottlenecks in serial and parallel code that limit performance.
 http://p.sf.net/sfu/intel-dev2devfeb
 ___
 Ipmitool-devel mailing list
 Ipmitool-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/ipmitool-devel



--
The ultimate all-in-one performance toolkit: Intel(R) Parallel Studio XE:
Pinpoint memory and threading errors before they happen.
Find and fix more than 250 security defects in the development cycle.
Locate bottlenecks in serial and parallel code that limit performance.
http://p.sf.net/sfu/intel-dev2devfeb
___
Ipmitool-devel mailing list
Ipmitool-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ipmitool-devel




--
The ultimate all-in-one 

[Ipmitool-devel] Login to CVS repository

2011-02-14 Thread Audet, Jean-Michel
Hi, 

I need to commit a fix to ipmitool and the server always reject me 
when trying to login.  I have not login since a while.  I reset my password 
because of the sourceforge big changes.  I am able to login to sourceforge web 
interface.  

I tried to following from the command linux in a SUSE linux environment:

 

 

 

cvs -d:pserver:aude...@ipmitool.cvs.sourceforge.net:/cvsroot/ipmitool login

Logging in to 
:pserver:aude...@ipmitool.cvs.sourceforge.net:2401/cvsroot/ipmitool

CVS password: 

cvs login: authorization failed: server ipmitool.cvs.sourceforge.net rejected 
access to /cvsroot/ipmitool for user audetjm

 

 

 

Any help will be greatly appreciated!

Jean-Michel Audet | Software Designer | KONTRON Canada | T 450 437-4661 
ext.2233 | E jean-michel.au...@ca.kontron.com 
mailto:jean-michel.au...@ca.kontron.com 

Kontron Canada
4555 Rue Ambroise-Lafortune
Boisbriand (Québec) J7H 0A4

P Est-ce nécessaire d'imprimer ce courriel ? |Before printing this e-mail, 
think if it is necessary.

L'information contenue dans le présent document est la propriété de Kontron 
Canada Inc. et est divulguée en toute confidentialité. Cette information ne 
doit pas être utilisée, divulguée ou reproduite sans le consentement écrit 
explicite de Kontron Canada Inc. Si vous n'êtes pas le destinataire prévu et 
avez reçu cette communication par erreur, veuillez contacter l'originateur et 
supprimer toute copie.  The information contained in this document is 
confidential and property of Kontron Canada Inc. Any unauthorized review, use, 
disclosure or distribution is prohibited without express written consent of 
Kontron Canada Inc. If you are not the intended recipient, please contact the 
sender and destroy all copies of the original message and enclosed attachments.

 

--
The ultimate all-in-one performance toolkit: Intel(R) Parallel Studio XE:
Pinpoint memory and threading errors before they happen.
Find and fix more than 250 security defects in the development cycle.
Locate bottlenecks in serial and parallel code that limit performance.
http://p.sf.net/sfu/intel-dev2devfeb___
Ipmitool-devel mailing list
Ipmitool-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ipmitool-devel


[Ipmitool-devel] Roadmap? Any plan for a new release (1.8.12???)

2011-06-21 Thread Audet, Jean-Michel
Hi All / Duncan / Carol / Petter,

 

I would like to know if anybody have an idea about a
possible new release of IPMITool?  Latest release is now more than 2
years old (2009-02-25). Since we do have made many fixes, it could be a
good idea to have a new release?

 

Any idea?

 

Thanks!

 

Jean-Michel Audet

 

--
EditLive Enterprise is the world's most technically advanced content
authoring tool. Experience the power of Track Changes, Inline Image
Editing and ensure content is compliant with Accessibility Checking.
http://p.sf.net/sfu/ephox-dev2dev___
Ipmitool-devel mailing list
Ipmitool-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ipmitool-devel