1836995 Members
2056 Online
110111 Solutions
New Discussion

Re: HBA models/drivers

 
SOLVED
Go to solution
Nikee Reddy
Regular Advisor

HBA models/drivers

Hello,

How can find out what HBA models/drivers are using in the hosts?

Thanks,
Nikee
8 REPLIES 8
Ashwani Kashyap
Honored Contributor
Solution

Re: HBA models/drivers

ioscan -fnkCfc
should give you the HBA model i.e Tachyon XL A5158A or Tachyon/TL XL/2 A6795A .

and swlist should give you the friver info too .
Nikee Reddy
Regular Advisor

Re: HBA models/drivers

Hello,

Here si the out put from the following command:

root@titan# ioscan -fnkCfc

Class I H/W Path Driver S/W State H/W Type Description
=================================================================
fc 0 0/2/0/0 td CLAIMED INTERFACE HP Tachyon TL/TS Fibre Channel Mass Storage Adapter
/dev/td0
fc 1 0/5/0/0 td CLAIMED INTERFACE HP Tachyon TL/TS Fibre Channel Mass Storage Adapter
/dev/td1
fc 2 0/6/0/0 td CLAIMED INTERFACE HP Tachyon TL/TS Fibre Channel Mass Storage Adapter
/dev/td2

The output doesn't show the model number.

-Nikee
Ashwani Kashyap
Honored Contributor

Re: HBA models/drivers

looks like you have a A5158A fibre card .
DO a
#swlist | grep- i fibre
and you should see the driver for the type of fibre card your have .
Ashwani Kashyap
Honored Contributor

Re: HBA models/drivers

sorry ,,
swlist | grep -i fibre
Steven E. Protter
Exalted Contributor

Re: HBA models/drivers

you can get the model information from the cstm or mstm utility.

I don't think the xstm will show that information.

From the ioscan you know what to look form in mstm

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
Nikee Reddy
Regular Advisor

Re: HBA models/drivers

Hello,

Thanks for the inputs.

I have received the following output:

root@earth:/root# swlist | grep -i fibre

PHKL_19416 1.0 Fibre Channel Mass Storage Driver Patch
PHKL_20207 B.11.00.AA Fibre Channel Mass Storage Driver Patch
PHKL_21381 B.11.00.AA Fibre Channel Mass Storage Driver Patch
PHKL_21834 B.11.00.AA Fibre Channel Mass Storage Driver Patch
PHKL_23939 1.0 Fibre Channel Mass Storage Driver Patch
PHNE_14453 1.0 Fibre Channel cumulative patch
PHSS_17199 1.0 Fibre Channel Mass Storage Driver Patch
PHSS_18136 1.0 Fibre Channel Mass Storage Driver Patch

root@earth:/root# ioscan -fnkCfc

Class I H/W Path Driver S/W State H/W Type Description
============================================================
fc 0 8/8 fcT1 CLAIMED INTERFACE HP Fibre Channel Mass Storage Adapter
fc 1 8/12 fcT1 CLAIMED INTERFACE HP Fibre Channel Mass Storage Adapter
fc 2 10/8 fcT1 CLAIMED INTERFACE HP Fibre Channel Mass Storage Adapter
fc 3 14/8 fcT1 CLAIMED INTERFACE HP Fibre Channel Mass Storage Adapter
fc 4 14/12 fcT1 CLAIMED INTERFACE HP Fibre Channel Mass Storage Adapter

How to find the Model number and the driver in this situation?

Thanks,
Nikee
Ashwani Kashyap
Honored Contributor

Re: HBA models/drivers

Ok , if this is a K class box and your Fibre Card is in an HSC slot and running in LOOP mode , then it must be A3404A card and the patches that you just listed work o this card .

TO find put whether it is in loop mode or not do ,
#/opt/fcms/bin/fcmsutil /dev/fcmsX .
where X is the number 1,2 etc when you do ll /dev/fc* .
Check for TOpology .

The driver for this card does not give much information , so the only sure way is to look at the card itself . There should be the model number printed on it .
But I bet it is A3404A .
Geoff Wild
Honored Contributor

Re: HBA models/drivers

Here's a scripts I use:

#!/bin/sh
# Script to find out tachyon model installed - Geoff Wild
for i in `echo 'map;q;ok' |/usr/sbin/cstm |grep "Fibre Channel Interface"|awk '{print $1}'`
do
echo "select device $i;CurrDevStatus;done;q;ok" |/usr/sbin/cstm |grep Tachyon
done



Rgds...Geoff
Proverbs 3:5,6 Trust in the Lord with all your heart and lean not on your own understanding; in all your ways acknowledge him, and he will make all your paths straight.