<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to view the HBA cards in linux (redhat) in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/how-to-view-the-hba-cards-in-linux-redhat/m-p/4604925#M40187</link>
    <description>Hi&lt;BR /&gt;&lt;BR /&gt;This was the correction that SEP was pointing out to me.  'lspci' as a command, /proc/scsi/ to check the kernel. I.e.,&lt;BR /&gt;&lt;BR /&gt;HBA is a QLogic with model # qla#####&lt;BR /&gt;&lt;BR /&gt;In /proc/scsi you would check for ...&lt;BR /&gt;&lt;BR /&gt;cat /proc/scsi/qla#####&lt;BR /&gt;</description>
    <pubDate>Wed, 24 Mar 2010 13:31:27 GMT</pubDate>
    <dc:creator>Michael Steele_2</dc:creator>
    <dc:date>2010-03-24T13:31:27Z</dc:date>
    <item>
      <title>How to view the HBA cards in linux (redhat)</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-view-the-hba-cards-in-linux-redhat/m-p/4604915#M40177</link>
      <description>Hi All,&lt;BR /&gt;&lt;BR /&gt;Just now we have purchase on HP ProLiant DL 380 G6 and installed RHEL 5.3&lt;BR /&gt;&lt;BR /&gt;It has 2 HBA Qlogic cards with two prots.&lt;BR /&gt;&lt;BR /&gt;I am not able to see the Qlogic cards in linux.&lt;BR /&gt;&lt;BR /&gt;I used following method to see:&lt;BR /&gt;&lt;BR /&gt;# cd /proc/scsi&lt;BR /&gt;&lt;BR /&gt;# ll -d qla2xxx&lt;BR /&gt;&lt;BR /&gt;But here it showing nothing.&lt;BR /&gt;&lt;BR /&gt;1)Do we need to install the driver for Qlogic?&lt;BR /&gt;&lt;BR /&gt;2)If yes, how to install the driver and from where we can get the drivers?&lt;BR /&gt;&lt;BR /&gt;3)If not, how to solve this?&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 22 Mar 2010 14:44:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-view-the-hba-cards-in-linux-redhat/m-p/4604915#M40177</guid>
      <dc:creator>senthil_kumar_1</dc:creator>
      <dc:date>2010-03-22T14:44:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to view the HBA cards in linux (redhat)</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-view-the-hba-cards-in-linux-redhat/m-p/4604916#M40178</link>
      <description>lspci&lt;BR /&gt;&lt;BR /&gt;drivers should already be in RHEL 5.3 (lsmod |grep qla) if not go get from qlogic ( I would at least get the qlogic utilities as they let you rescan and view the fabric)&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 22 Mar 2010 17:24:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-view-the-hba-cards-in-linux-redhat/m-p/4604916#M40178</guid>
      <dc:creator>Tim Nelson</dc:creator>
      <dc:date>2010-03-22T17:24:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to view the HBA cards in linux (redhat)</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-view-the-hba-cards-in-linux-redhat/m-p/4604917#M40179</link>
      <description>&lt;P&gt;First, can the card be detected on the system bus?&lt;BR /&gt;&lt;BR /&gt;# lspci&lt;BR /&gt;&lt;BR /&gt;If not, double-check that the card is properly inserted in the slot.&lt;BR /&gt;&lt;BR /&gt;Second, has the default Qlogic driver been loaded successfully?&lt;BR /&gt;&lt;BR /&gt;# lsmod | grep qla2xxx&lt;BR /&gt;&lt;BR /&gt;If the driver has not auto-detected the card, you will probably need a newer version of the driver. If the card was purchased through HP, the driver should be available at &lt;A href="https://support.hpe.com/hpesc/public/home" target="_blank" rel="noopener"&gt;https://support.hpe.com/hpesc/public/home&lt;/A&gt;&amp;nbsp;&amp;nbsp;as usual.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;If the old /proc/scsi/qla2xxx exists but is empty, it might mean all the data has already been moved to /sys in that driver version.&lt;BR /&gt;&lt;BR /&gt;In RHEL4 and older, each FC driver had its own way of reporting statistics and other information. There was no easily-scriptable way to e.g. find out the firmware version numbers of FC cards.&lt;BR /&gt;&lt;BR /&gt;Then the Linux developers started to standardize the FC driver interface a bit. In RHEL 5, the work is still on-going, but you can expect to find the HBA information in two places:&lt;BR /&gt;&lt;BR /&gt;- the FC-specific information should be available in virtual files at /sys/class/fc_host/host*/ directories (one for each FC port).&lt;BR /&gt;&lt;BR /&gt;- the information that's applicable to any SCSI-like device should be available at /sys/class/scsi_host/host*/ directories. &lt;BR /&gt;&lt;BR /&gt;The Emulex programmers seemed to get this wrong at first: the standard lpfc driver in RHEL 5.3 puts a lot of FC-specific parameters to /sys/class/scsi_host/host*/ directory, using custom lpfc_ -prefixed file names.&lt;BR /&gt;&lt;BR /&gt;Once the interface becomes well-defined and stable, it will be possible to develop uniform tools, applicable to all FC cards, like "ifconfig" for NICs, or "fcmsutil" on HP-UX. Maybe in RHEL 6 or 7...&lt;BR /&gt;&lt;BR /&gt;MK&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;[Note: broken link removed by Mod]&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Nov 2020 04:15:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-view-the-hba-cards-in-linux-redhat/m-p/4604917#M40179</guid>
      <dc:creator>Matti_Kurkela</dc:creator>
      <dc:date>2020-11-04T04:15:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to view the HBA cards in linux (redhat)</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-view-the-hba-cards-in-linux-redhat/m-p/4604918#M40180</link>
      <description>&lt;P&gt;RHEL 5.3 has moved everything to /sys&lt;BR /&gt;&lt;BR /&gt;This package contains hp_rescan which will help you see the controllers&lt;BR /&gt;&lt;BR /&gt;Linux Fibre Channel Enablement Kit for RHEL 5.3/5.4, SLES 10 SP3 and SLES 11&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://access.redhat.com/solutions/528683" target="_blank" rel="noopener"&gt;https://access.redhat.com/solutions/528683&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;[Note: broken link removed by Mod]&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Nov 2020 04:13:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-view-the-hba-cards-in-linux-redhat/m-p/4604918#M40180</guid>
      <dc:creator>Jimmy Vance</dc:creator>
      <dc:date>2020-11-04T04:13:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to view the HBA cards in linux (redhat)</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-view-the-hba-cards-in-linux-redhat/m-p/4604919#M40181</link>
      <description>Hi All,&lt;BR /&gt;&lt;BR /&gt;I am able to find the Qlogic HBA cards from my RHEL 5.3.&lt;BR /&gt;&lt;BR /&gt;I have found that using following methods as you described above.&lt;BR /&gt;&lt;BR /&gt;method 1: Cheked whether the qlogic is detected&lt;BR /&gt;&lt;BR /&gt;#lspci&lt;BR /&gt;&lt;BR /&gt;07:00.0 Fibre Channel: QLogic Corp. ISP2432-based 4Gb Fibre Channel to PCI Express HBA (rev 03)&lt;BR /&gt;07:00.1 Fibre Channel: QLogic Corp. ISP2432-based 4Gb Fibre Channel to PCI Express HBA (rev 03)&lt;BR /&gt;0a:00.0 Fibre Channel: QLogic Corp. ISP2432-based 4Gb Fibre Channel to PCI Express HBA (rev 03)&lt;BR /&gt;0a:00.1 Fibre Channel: QLogic Corp. ISP2432-based 4Gb Fibre Channel to PCI Express HBA (rev 03)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;1)So they are detected , am i correct?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;method 2: Checked whether driver (modules) available for Qlogic:&lt;BR /&gt;&lt;BR /&gt;# lsmod | grep qla2xxx&lt;BR /&gt;qla2xxx              1107173  0&lt;BR /&gt;scsi_transport_fc      73801  1 qla2xxx&lt;BR /&gt;scsi_mod              196569  9 scsi_dh,sr_mod,sg,usb_storage,qla2xxx,scsi_transport_fc,libata,cciss,sd_mod&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;2)So Qlogic drivers are available , am i correct?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;method 3: Checked FC information in /sys&lt;BR /&gt;&lt;BR /&gt;# cd /sys/class/scsi_host&lt;BR /&gt;ll&lt;BR /&gt;total 0&lt;BR /&gt;drwxr-xr-x 2 root root 0 Mar 23 06:25 host0&lt;BR /&gt;drwxr-xr-x 2 root root 0 Mar 23 06:25 host1&lt;BR /&gt;drwxr-xr-x 2 root root 0 Mar 23 06:25 host2&lt;BR /&gt;drwxr-xr-x 2 root root 0 Mar 23 06:25 host3&lt;BR /&gt;drwxr-xr-x 2 root root 0 Mar 23 06:25 host4&lt;BR /&gt;drwxr-xr-x 2 root root 0 Mar 23 06:25 host5&lt;BR /&gt;&lt;BR /&gt;              AND&lt;BR /&gt;&lt;BR /&gt;# cd /sys/class/fc_host/&lt;BR /&gt;ll&lt;BR /&gt;total 0&lt;BR /&gt;drwxr-xr-x 3 root root 0 Mar 23 06:52 host2&lt;BR /&gt;drwxr-xr-x 3 root root 0 Mar 23 06:25 host3&lt;BR /&gt;drwxr-xr-x 3 root root 0 Mar 23 06:25 host4&lt;BR /&gt;drwxr-xr-x 3 root root 0 Mar 23 06:25 host5&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;3) So I believe host2, host3, host4 and host5 are Qlogic FC and host0 &amp;amp; host1 are local SCSI ports available in mother board, Am I correct?&lt;BR /&gt;&lt;BR /&gt;4)So as per above outputs my Qlogic FC card has been detected and I can use them in SAN network with out installing any drivers further, am i correct?&lt;BR /&gt;&lt;BR /&gt;5)The purpose of "Fibre Channel Enablement Kit" is to see available FC controllers and rescan the FC controller to check for new LUNs with out restarting the linux, am i correct?&lt;BR /&gt;&lt;BR /&gt;Please answer to my questions one by one.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 23 Mar 2010 11:24:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-view-the-hba-cards-in-linux-redhat/m-p/4604919#M40181</guid>
      <dc:creator>senthil_kumar_1</dc:creator>
      <dc:date>2010-03-23T11:24:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to view the HBA cards in linux (redhat)</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-view-the-hba-cards-in-linux-redhat/m-p/4604920#M40182</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;The way I learned, because lspci didn't always work, was to go through the /proc/pci directory and find the HBA device there.  For qlogic, you need to know the model ahead of time and the look for it.  I.e., '...qla###.."&lt;BR /&gt;&lt;BR /&gt;cd /proc/pci&lt;BR /&gt;ls | grep -i "*qla*"</description>
      <pubDate>Tue, 23 Mar 2010 12:19:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-view-the-hba-cards-in-linux-redhat/m-p/4604920#M40182</guid>
      <dc:creator>Michael Steele_2</dc:creator>
      <dc:date>2010-03-23T12:19:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to view the HBA cards in linux (redhat)</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-view-the-hba-cards-in-linux-redhat/m-p/4604921#M40183</link>
      <description>lspci&lt;BR /&gt;&lt;BR /&gt;Why are you using a pci bus command successfully to find the qlogic devices, but then use a SCSI command to fail to find them?&lt;BR /&gt;&lt;BR /&gt;A pci device isn't going to be on a SCSI bus.</description>
      <pubDate>Tue, 23 Mar 2010 14:37:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-view-the-hba-cards-in-linux-redhat/m-p/4604921#M40183</guid>
      <dc:creator>Michael Steele_2</dc:creator>
      <dc:date>2010-03-23T14:37:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to view the HBA cards in linux (redhat)</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-view-the-hba-cards-in-linux-redhat/m-p/4604922#M40184</link>
      <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;These hba cards act like scsi cards, as in they provide disk in a format that the OS understands.&lt;BR /&gt;&lt;BR /&gt;Clearly above, method 1 does appear to work.&lt;BR /&gt;&lt;BR /&gt;The drivers are build into the OS for these HBA's however full functionality with HP tools did not work for me without installation of PSP.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Tue, 23 Mar 2010 15:21:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-view-the-hba-cards-in-linux-redhat/m-p/4604922#M40184</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2010-03-23T15:21:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to view the HBA cards in linux (redhat)</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-view-the-hba-cards-in-linux-redhat/m-p/4604923#M40185</link>
      <description>SEP &lt;BR /&gt;&lt;BR /&gt;Really?&lt;BR /&gt;&lt;BR /&gt;(* Still learning. *)</description>
      <pubDate>Tue, 23 Mar 2010 15:25:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-view-the-hba-cards-in-linux-redhat/m-p/4604923#M40185</guid>
      <dc:creator>Michael Steele_2</dc:creator>
      <dc:date>2010-03-23T15:25:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to view the HBA cards in linux (redhat)</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-view-the-hba-cards-in-linux-redhat/m-p/4604924#M40186</link>
      <description>Hi All,&lt;BR /&gt;&lt;BR /&gt;Could you please answer to my questions one by one so that it will be very useful to me?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Hi Michael Steele,&lt;BR /&gt;&lt;BR /&gt;I am not able to cd in to /proc/pci.&lt;BR /&gt;&lt;BR /&gt;I believe the directory "/proc/pci" is not available.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Hi Steven E. Protter,&lt;BR /&gt;&lt;BR /&gt;I have downloaded HP Fibre Channel Enablement Kit.&lt;BR /&gt;&lt;BR /&gt;1)Are you saying that we need to install PSP even after installing HP Fibre Channel Enablement Kit to work the full functionality of HP tools in linux?&lt;BR /&gt;&lt;BR /&gt;2)what is PSP?&lt;BR /&gt;&lt;BR /&gt;3)Where we can download PSP from?</description>
      <pubDate>Wed, 24 Mar 2010 10:08:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-view-the-hba-cards-in-linux-redhat/m-p/4604924#M40186</guid>
      <dc:creator>senthil_kumar_1</dc:creator>
      <dc:date>2010-03-24T10:08:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to view the HBA cards in linux (redhat)</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-view-the-hba-cards-in-linux-redhat/m-p/4604925#M40187</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;This was the correction that SEP was pointing out to me.  'lspci' as a command, /proc/scsi/ to check the kernel. I.e.,&lt;BR /&gt;&lt;BR /&gt;HBA is a QLogic with model # qla#####&lt;BR /&gt;&lt;BR /&gt;In /proc/scsi you would check for ...&lt;BR /&gt;&lt;BR /&gt;cat /proc/scsi/qla#####&lt;BR /&gt;</description>
      <pubDate>Wed, 24 Mar 2010 13:31:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-view-the-hba-cards-in-linux-redhat/m-p/4604925#M40187</guid>
      <dc:creator>Michael Steele_2</dc:creator>
      <dc:date>2010-03-24T13:31:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to view the HBA cards in linux (redhat)</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-view-the-hba-cards-in-linux-redhat/m-p/4604926#M40188</link>
      <description>Michael: As was already mentioned, in RHEL 5 the FC information has been moved to /sys filesystem, and /proc/scsi/qla2xxx contains so little information that it's useless.&lt;BR /&gt;&lt;BR /&gt;senthil_kumar:&lt;BR /&gt;1) Yes, the cards can be detected on the bus, so the physical connection is fine.&lt;BR /&gt;&lt;BR /&gt;2) Yes, the qla2xxx driver has automatically been loaded and is using the various SCSI-layer service modules. Looks good.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; 3) So I believe host2, host3, host4 and host5 are Qlogic FC and host0 &amp;amp; host1 are local SCSI ports available in mother board, Am I correct? &lt;BR /&gt;&lt;BR /&gt;Yes, that's true.&lt;BR /&gt;&lt;BR /&gt;Both /sys/class/fc_host/hostX and the equivalent /sys/class/scsi_host/hostX refer to the same FC port.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; 4)So as per above outputs my Qlogic FC card has been detected and I can use them in SAN network with out installing any drivers further, am i correct? &lt;BR /&gt;&lt;BR /&gt;Yes, looks like it.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; 5)The purpose of "Fibre Channel Enablement Kit" is to see available FC controllers and rescan the FC controller to check for new LUNs with out restarting the linux, am i correct?&lt;BR /&gt;&lt;BR /&gt;Yes... but rescanning the controllers is possible even without the Fibre Channel Enablement Kit, but the procedure is slightly more difficult.&lt;BR /&gt;&lt;BR /&gt;See RedHat Online Storage Reconfiguration Guide:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://www.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/html/Online_Storage_Reconfiguration_Guide/index.html" target="_blank"&gt;https://www.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/html/Online_Storage_Reconfiguration_Guide/index.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;MK</description>
      <pubDate>Wed, 24 Mar 2010 13:58:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-view-the-hba-cards-in-linux-redhat/m-p/4604926#M40188</guid>
      <dc:creator>Matti_Kurkela</dc:creator>
      <dc:date>2010-03-24T13:58:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to view the HBA cards in linux (redhat)</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-view-the-hba-cards-in-linux-redhat/m-p/4604927#M40189</link>
      <description>Hi Michael Steele, &lt;BR /&gt;&lt;BR /&gt;Please refer Jimmy Vance's post.</description>
      <pubDate>Wed, 24 Mar 2010 14:10:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-view-the-hba-cards-in-linux-redhat/m-p/4604927#M40189</guid>
      <dc:creator>senthil_kumar_1</dc:creator>
      <dc:date>2010-03-24T14:10:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to view the HBA cards in linux (redhat)</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-view-the-hba-cards-in-linux-redhat/m-p/4604928#M40190</link>
      <description>Thanks!&lt;BR /&gt;(still learning how to be a hobbyist :-) *)</description>
      <pubDate>Wed, 24 Mar 2010 17:17:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-view-the-hba-cards-in-linux-redhat/m-p/4604928#M40190</guid>
      <dc:creator>Michael Steele_2</dc:creator>
      <dc:date>2010-03-24T17:17:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to view the HBA cards in linux (redhat)</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-view-the-hba-cards-in-linux-redhat/m-p/4604929#M40191</link>
      <description>Shalom again Sentil,&lt;BR /&gt;&lt;BR /&gt;PSP&lt;BR /&gt;Proliant Service Pack&lt;BR /&gt;&lt;BR /&gt;It is a set of tools available for Proliant Servers that make managing the systems, especially fiber attached storage much easier.&lt;BR /&gt;&lt;BR /&gt;There are web based tools, even disk partitioning tools that are a system administrators friend.&lt;BR /&gt;&lt;BR /&gt;On certain Proliant systems with qlogic cards, I have had to install PSP to insure stable access to HBA/Fiber attached storage.&lt;BR /&gt;&lt;BR /&gt;Sorry, I though using G6 servers you knew about PSP. My bad. No points for me please.&lt;BR /&gt;&lt;BR /&gt;SEP&lt;BR /&gt;22 Points to Linux Olympus with a penguin on top.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 24 Mar 2010 18:48:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-view-the-hba-cards-in-linux-redhat/m-p/4604929#M40191</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2010-03-24T18:48:58Z</dc:date>
    </item>
    <item>
      <title>Re: TO FIND HBA FIRMWARE VERSION SEE BELOW</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-view-the-hba-cards-in-linux-redhat/m-p/6038189#M54232</link>
      <description>&lt;P&gt;2.&amp;nbsp;&lt;STRONG&gt;systool -c scsi_host -v&lt;/STRONG&gt;&amp;nbsp;gives the serial number (if available), firmware, and other information of HBAs. For example:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;# systool -c scsi_host -v&lt;BR /&gt;Class = “scsi_host”&lt;/P&gt;&lt;P&gt;Class Device = “host0″&lt;BR /&gt;Class Device path = “/sys/class/scsi_host/host0″&lt;BR /&gt;84xx_fw_version = “”&lt;BR /&gt;beacon = “Disabled”&lt;BR /&gt;cmd_per_lun = “3″&lt;BR /&gt;driver_version = “8.03.01.04.05.05-k”&lt;BR /&gt;fabric_param = “1280″&lt;BR /&gt;flash_block_size = “0×10000″&lt;BR /&gt;fw_state = “0×3 0×3 0xb100 0×0 0×4″&lt;BR /&gt;fw_version = “4.04.09 (85)”&lt;BR /&gt;host_busy = “0″&lt;BR /&gt;isp_id = “0000 0000 0000 0000″&lt;BR /&gt;isp_name = “ISP2532″&lt;BR /&gt;max_npiv_vports = “255″&lt;BR /&gt;model_desc = “HP 8Gb Single Channel PCI-e 2.0 FC HBA”&lt;BR /&gt;model_name = “HPAK344A”&lt;BR /&gt;mpi_version = “”&lt;BR /&gt;npiv_vports_inuse = “0″&lt;BR /&gt;optrom_bios_version = “2.12″&lt;BR /&gt;optrom_efi_version = “2.05″&lt;BR /&gt;optrom_fcode_version= “2.03″&lt;BR /&gt;optrom_fw_version = “4.04.04 128″&lt;BR /&gt;pci_info = “PCIe (5.0Gb/s x4)”&lt;BR /&gt;phy_version = “”&lt;BR /&gt;proc_name = “”&lt;BR /&gt;scan =&lt;BR /&gt;serial_num = “”&lt;BR /&gt;sg_tablesize = “255″&lt;BR /&gt;state = “Link Up – F_Port”&lt;BR /&gt;total_isp_aborts = “0″&lt;BR /&gt;uevent =&lt;BR /&gt;unchecked_isa_dma = “0″&lt;BR /&gt;unique_id = “0″&lt;BR /&gt;vlan_id = “”&lt;BR /&gt;vn_port_mac_address = “”&lt;BR /&gt;vport_create =&lt;BR /&gt;vport_delete =&lt;BR /&gt;zio_timer = “200 us”&lt;BR /&gt;zio = “Disabled”&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ref :&amp;nbsp;&lt;A href="http://www.doxer.org/learn-linux/resolved-linux-check-qlogicemulex-hba-firmware-version-and-model-name-type-howto/" target="_blank" rel="nofollow"&gt;http://www.doxer.org/learn-linux/resolved-linux-check-qlogicemulex-hba-firmware-version-and-model-na...&lt;/A&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Tue, 23 Apr 2013 09:43:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-view-the-hba-cards-in-linux-redhat/m-p/6038189#M54232</guid>
      <dc:creator>hari07</dc:creator>
      <dc:date>2013-04-23T09:43:37Z</dc:date>
    </item>
    <item>
      <title>Re: TO FIND HBA FIRMWARE VERSION SEE BELOW</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-view-the-hba-cards-in-linux-redhat/m-p/6488724#M54622</link>
      <description>&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try below command&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;#dmesg | grep -i fibre&lt;/P&gt;</description>
      <pubDate>Tue, 27 May 2014 13:13:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-view-the-hba-cards-in-linux-redhat/m-p/6488724#M54622</guid>
      <dc:creator>Dinakar16</dc:creator>
      <dc:date>2014-05-27T13:13:03Z</dc:date>
    </item>
  </channel>
</rss>

