<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>Comments on: IPMI light</title>
	<atom:link href="http://www.yellowkompressor.com/ipmi-touch/ipmi-light/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.yellowkompressor.com/ipmi-touch</link>
	<description>unKompressed Perspective</description>
	<lastBuildDate>Mon, 28 Apr 2014 03:44:37 +0000</lastBuildDate>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=4.0</generator>
	<item>
		<title>By: ambuman</title>
		<link>http://www.yellowkompressor.com/ipmi-touch/ipmi-light/comment-page-1/#comment-9882</link>
		<dc:creator><![CDATA[ambuman]]></dc:creator>
		<pubDate>Thu, 01 Dec 2011 12:00:05 +0000</pubDate>
		<guid isPermaLink="false">http://macbookpro.local/yellowKompressor/wp/?page_id=126#comment-9882</guid>
		<description><![CDATA[Hello,

i have IMPI light on my iphone 4S (and i&#039;m french). I don&#039;t arrive to use it. Can you explain how to put it on. When i refresh it say: unable to establish LAN session.
Thanks for your help.]]></description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>i have IMPI light on my iphone 4S (and i&#8217;m french). I don&#8217;t arrive to use it. Can you explain how to put it on. When i refresh it say: unable to establish LAN session.<br />
Thanks for your help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: yellowKompressor</title>
		<link>http://www.yellowkompressor.com/ipmi-touch/ipmi-light/comment-page-1/#comment-38</link>
		<dc:creator><![CDATA[yellowKompressor]]></dc:creator>
		<pubDate>Sun, 13 Jun 2010 05:06:47 +0000</pubDate>
		<guid isPermaLink="false">http://macbookpro.local/yellowKompressor/wp/?page_id=126#comment-38</guid>
		<description><![CDATA[Thank you for your comment! Making ipmitool work on iPhone was not exactly the easiest thing ever but it was pretty straightforward. There were four major areas of concern that I can think of.

1) Converting ipmitool into Xcode project
Original ipmitool relies on autoconf&#039;s configure script to setup proper compilation variables. This needed to be replicated to get it to compile under xcode. We have looked at several options like calling configure from a custom xcode build step. In the end the simplest way was to execute the configure one time outside of xcode and include the generated config.h in the project.

2) Crypto functions
IPMI protocol needs a variety of crypto functions (from MD5 to AES128 in V2.0). By default ipmitool uses OpenSSL which is not an ideal choice if your target is an iPhone like device. At first, we have got OpenSSL recompiled for ARM. However, vanilla OpenSLL happened to be too CPU intensive on iPhone (not to mention that getting an app approved with OpenSSL included is a big challenge). The solution was to redo the crypto support with Apple&#039;s CommonCrypto framework. As far as I know, many CommonCrypto functions are hardware accelerated on newer i-devices. After the change the app could do 16 simultaneous AES encrypted IPMI V2.0 sessions with no perceivable slowdown. 

3) Multithreading+
A big unexpected discovery was that as a command line utility ipmitool was not designed to run &#039;clean&#039; repeatedly without exiting. There are numerous places in the code that use uninitialized variables. A lot of down/close functions do not provide complete clean up. There is a concept of plugins but the implementation uses static variables all over the place so forget running on multiple threads. Time wise this was a big hit. Combing though code looking for statics was not fun at all :).

4) Race conditions
The code had several obscure bugs that were only triggered on a slower platform or when operating on a slow network like GPRS (not a joke, the app is tested and is fully usable even on GPRS network :)). Not a lot of issues but definitely the hardest to deal with. I think we ended up fixing about five different bugs.

Hopefully this can give you a good starting point… Best of luck with your iPhone development, it is a brave new world :)!]]></description>
		<content:encoded><![CDATA[<p>Thank you for your comment! Making ipmitool work on iPhone was not exactly the easiest thing ever but it was pretty straightforward. There were four major areas of concern that I can think of.</p>
<p>1) Converting ipmitool into Xcode project<br />
Original ipmitool relies on autoconf&#8217;s configure script to setup proper compilation variables. This needed to be replicated to get it to compile under xcode. We have looked at several options like calling configure from a custom xcode build step. In the end the simplest way was to execute the configure one time outside of xcode and include the generated config.h in the project.</p>
<p>2) Crypto functions<br />
IPMI protocol needs a variety of crypto functions (from MD5 to AES128 in V2.0). By default ipmitool uses OpenSSL which is not an ideal choice if your target is an iPhone like device. At first, we have got OpenSSL recompiled for ARM. However, vanilla OpenSLL happened to be too CPU intensive on iPhone (not to mention that getting an app approved with OpenSSL included is a big challenge). The solution was to redo the crypto support with Apple&#8217;s CommonCrypto framework. As far as I know, many CommonCrypto functions are hardware accelerated on newer i-devices. After the change the app could do 16 simultaneous AES encrypted IPMI V2.0 sessions with no perceivable slowdown. </p>
<p>3) Multithreading+<br />
A big unexpected discovery was that as a command line utility ipmitool was not designed to run &#8216;clean&#8217; repeatedly without exiting. There are numerous places in the code that use uninitialized variables. A lot of down/close functions do not provide complete clean up. There is a concept of plugins but the implementation uses static variables all over the place so forget running on multiple threads. Time wise this was a big hit. Combing though code looking for statics was not fun at all :).</p>
<p>4) Race conditions<br />
The code had several obscure bugs that were only triggered on a slower platform or when operating on a slow network like GPRS (not a joke, the app is tested and is fully usable even on GPRS network :)). Not a lot of issues but definitely the hardest to deal with. I think we ended up fixing about five different bugs.</p>
<p>Hopefully this can give you a good starting point… Best of luck with your iPhone development, it is a brave new world :)!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Todd</title>
		<link>http://www.yellowkompressor.com/ipmi-touch/ipmi-light/comment-page-1/#comment-36</link>
		<dc:creator><![CDATA[Todd]]></dc:creator>
		<pubDate>Sat, 05 Jun 2010 01:42:33 +0000</pubDate>
		<guid isPermaLink="false">http://macbookpro.local/yellowKompressor/wp/?page_id=126#comment-36</guid>
		<description><![CDATA[Hi there,

I have downloaded and used your app. Well designed and easy to navigate; I like it. This is a great idea, to use IPMI 2.0, which will accommodate many vendors&#039; servers and provide good security. As sort of a developer myself who is starting to dabble in iphone apps and xcode, I&#039;m curious how difficult it was for you to get the ipmitool c code compiled and working in the xcode environment. I have tried to do this previously, but had a heck of a time with it.  Any insight you would be willing to provide on that front would be appreciated.  Thanks!!]]></description>
		<content:encoded><![CDATA[<p>Hi there,</p>
<p>I have downloaded and used your app. Well designed and easy to navigate; I like it. This is a great idea, to use IPMI 2.0, which will accommodate many vendors&#8217; servers and provide good security. As sort of a developer myself who is starting to dabble in iphone apps and xcode, I&#8217;m curious how difficult it was for you to get the ipmitool c code compiled and working in the xcode environment. I have tried to do this previously, but had a heck of a time with it.  Any insight you would be willing to provide on that front would be appreciated.  Thanks!!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
