1847738 Members
4034 Online
104013 Solutions
New Discussion

Re: Firmware Inventory

 
SOLVED
Go to solution
Michael Perdue
Occasional Contributor

Firmware Inventory

I have been asked to create a process that quarterly gathers the firmware revisions of all installed hardware in our L's, N's, and A's. I would like to script this from the OS. However, it appears that using an Internal Consle Port (GSP) is not an option. I have not found the secret combination to extract this with cstm. Any ideas?
3 REPLIES 3
Uday_S_Ankolekar
Honored Contributor
Solution

Re: Firmware Inventory

Use 'stm'. to get firmware version.
# echo "selclass qualifier cpu;info;wait;infolog"|cstm > /tmp/stmout
# grep -i firmware /tmp/stmout


-USA..

Good Luck..
Michael Perdue
Occasional Contributor

Re: Firmware Inventory

Excellent! And if you put in "all" where "cpu" is in the string, it will query all the devices I am interested in! Thanks!
Uday_S_Ankolekar
Honored Contributor

Re: Firmware Inventory

Hello,

You can also use diskinfo command with -v option and look for rel level.

-USA..
Good Luck..