<?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: HBA firmware data in VMware PowerCLI Discussions</title>
    <link>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/HBA-firmware-data/m-p/2909721#M106709</link>
    <description>&lt;P&gt;Unfortunately this script does not obtain a fware version.&lt;/P&gt;&lt;P&gt;I had already tested this one.&lt;/P&gt;&lt;P&gt;I found a way to obtain this data via racadm call using the hwinventory function.&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;$i = 0&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;$cards = $hbacards.output&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;while ($i -ne $cards.count) {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;$slot = $cards[$i].split(":")[0].trim()&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;$hbaware = invoke-sshcommand -index 0 -command "hwinventory $slot"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;$HbaFware = $hbaware.output |select-string "Family Version"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;$Hfware = $hbafware.line.split(":")[1].trim()&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;write-host "current hba fware = "$Hfware&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;$i++&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;That will give me the correct output from idrac ssh session.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 18 May 2022 13:09:54 GMT</pubDate>
    <dc:creator>briance71</dc:creator>
    <dc:date>2022-05-18T13:09:54Z</dc:date>
    <item>
      <title>HBA firmware data</title>
      <link>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/HBA-firmware-data/m-p/2909288#M106695</link>
      <description>&lt;P&gt;I am trying to obtain the HBA firmware from the host, but the problem I am running into is that the host is reporting a "flash firmware" version, which is not what I am looking for.&lt;/P&gt;&lt;P&gt;15.30.10 - I know is the correct firmware by going through idrac and looking at code levels.&lt;/P&gt;&lt;P&gt;However when I attempt to do this via code, whether is get-vmhosthba, esxcli, or vmkmgmt_keyval, these always return a value of&lt;/P&gt;&lt;P&gt;9.07.00 - which is labled as&amp;nbsp; "flash firmware" which cannot even be found via idrac and hardware inventory.&lt;/P&gt;&lt;P&gt;Has anyone figured out where to obtain the "true" firmware version for an HBA card from the esxi host?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 16 May 2022 19:16:17 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/HBA-firmware-data/m-p/2909288#M106695</guid>
      <dc:creator>briance71</dc:creator>
      <dc:date>2022-05-16T19:16:17Z</dc:date>
    </item>
    <item>
      <title>Re: HBA firmware data</title>
      <link>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/HBA-firmware-data/m-p/2909456#M106699</link>
      <description>&lt;P&gt;Found this old post, that might (or not) be off some assistance..&lt;/P&gt;&lt;P&gt;&lt;A href="https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/PowerCli-to-get-HBA-Firmware-details/td-p/1336046" target="_blank"&gt;https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/PowerCli-to-get-HBA-Firmware-details/td-p/1336046&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 17 May 2022 12:45:15 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/HBA-firmware-data/m-p/2909456#M106699</guid>
      <dc:creator>ravjyo</dc:creator>
      <dc:date>2022-05-17T12:45:15Z</dc:date>
    </item>
    <item>
      <title>Re: HBA firmware data</title>
      <link>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/HBA-firmware-data/m-p/2909721#M106709</link>
      <description>&lt;P&gt;Unfortunately this script does not obtain a fware version.&lt;/P&gt;&lt;P&gt;I had already tested this one.&lt;/P&gt;&lt;P&gt;I found a way to obtain this data via racadm call using the hwinventory function.&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;$i = 0&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;$cards = $hbacards.output&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;while ($i -ne $cards.count) {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;$slot = $cards[$i].split(":")[0].trim()&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;$hbaware = invoke-sshcommand -index 0 -command "hwinventory $slot"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;$HbaFware = $hbaware.output |select-string "Family Version"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;$Hfware = $hbafware.line.split(":")[1].trim()&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;write-host "current hba fware = "$Hfware&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;$i++&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;That will give me the correct output from idrac ssh session.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 18 May 2022 13:09:54 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/VMware-PowerCLI-Discussions/HBA-firmware-data/m-p/2909721#M106709</guid>
      <dc:creator>briance71</dc:creator>
      <dc:date>2022-05-18T13:09:54Z</dc:date>
    </item>
  </channel>
</rss>

