Analysis to gather ALOM (Sun Solaris server management port) version

(imported topic written by tigger0191)

Hello, I’m trying to work into our Solaris server hardware analysis an item that reports back the ALOM firmware version. If I were logged on to the servers, I’d type “scadm version” and it return something like this:

SC Version v1.6

SC Bootmon Version: v1.6.9

SC Firmware Version: v1.6.9

I’d then grep for the line that contains the word “firmware” Are you familiar with a way to make this work in an analysis?

Thanks, Eric.

(imported comment written by BenKus)

Hi Eric,

Yes… To do this, you could do the following (it has 2 parts):

Make a Task that will run on Solaris, that will have an action of something like:

waithidden scadm version >> /somelocation/scadmversion

Then you would have an Analysis with a property of something like:

lines whose (it as lowercase contains “firmware”) of file “/somelocation/scadmversion”

You would then sent the Task action to all the Solaris computers and then the property should fill in…

Ben