分页: 1 / 1

HP-UX上查询HBA、阵列卡或者网卡的固件版本

发表于 : 2014年 8月 8日 17:29 星期五
admin
Get firmware version of I/O cards on HPUX Integrity systems

It depends on the card type.

For fibre cards you can try this:

# fcmsutil /dev/XXX vpd

(where xxxx is the device file for the card - ie /dev/fcd0 - this isnt supported on all HBA models)


For U320 SCSI cards using the 'mpt' driver you can use the following:

# mptutil /dev/mptX


(where X is the device instance for the card - ie /dev/mpt0)



For HP-UX 11.31 you can try the following on other SCSI cards:

# scsimgr get_info -H 0/0/10/1/0/6/0


(hardware path to the controller)


For SAS controllers:

# sasmgr get_info -D /dev/sasdX


For Smart Array controllers:

# sautil /dev/cissX


Not sure if missed anything, but for other cards, you may have to use CSTM's infolog to see if the card reports the data you are looking for.

=============
Quoted from HP Enterprise Business Community

Re: Get firmware version of I/O cards on HPUX Integrity syst

发表于 : 2014年 8月 10日 17:35 星期天
LEO
不错不错,那么如何查询网卡的driver或者firmware版本呢?

Re: Get firmware version of I/O cards on HPUX Integrity syst

发表于 : 2014年 8月 11日 10:10 星期一
MUDBOY
网卡的话在HP-UX下面可以试试下面这个命令。

#nwmgr -q vpd -c lan0
lan0 VITAL PRODUCT DATA:
Product Description : Dual Port Flex10 10GbE BL8XXc i2 Embedded CNIC
Part Number: N/A
Engineering Date Code : N/A
Part Serial Number : 0123456789
Misc. Information : N/A
Mfd. Date : N/A
Check Sum : 0xe4
EFI Version : 5.2.53
ROM Firmware Version : 5.2.70
Asset Tag : N/A

(其中lan0为网卡对应的ID号)