- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- HBA models/drivers
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2004 05:50 AM
02-24-2004 05:50 AM
How can find out what HBA models/drivers are using in the hosts?
Thanks,
Nikee
Solved! Go to Solution.
- Tags:
- HBA
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2004 05:53 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2004 05:56 AM
02-24-2004 05:56 AM
Re: HBA models/drivers
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2004 06:00 AM
02-24-2004 06:00 AM
Re: HBA models/drivers
DO a
#swlist | grep- i fibre
and you should see the driver for the type of fibre card your have .
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2004 06:01 AM
02-24-2004 06:01 AM
Re: HBA models/drivers
swlist | grep -i fibre
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2004 06:02 AM
02-24-2004 06:02 AM
Re: HBA models/drivers
I don't think the xstm will show that information.
From the ioscan you know what to look form in mstm
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2004 06:12 AM
02-24-2004 06:12 AM
Re: HBA models/drivers
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2004 06:25 AM
02-24-2004 06:25 AM
Re: HBA models/drivers
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 .
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2004 07:35 AM
02-24-2004 07:35 AM
Re: HBA models/drivers
#!/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