How to update any VMware ESXi Hypervisor to the latest using ESXCLI for easy download and install

Posted by Paul Braren on Sep 14 2018 (updated on Mar 4 2024) in
  • ESXi
  • HowTo
  • HomeLab
  • Virtualization
  • vSphere7
  • vSphere8
  • Mar 4 2024 - My ESXi 8.0U2b testing is now underway on my Xeon D-1541 system, with the release finally indicated officially at VMware by Broadcom here.


    vSphere_Display_Ad_Banners_040422_728x90
    Advertising Disclosure - This VMware ad earns the vExpert author a commission when used for purchases at vmware.com, a free way to demonstrate that you value his dozen+ years of long-form technical content creation.

    Table of Contents

    Google-Analytics-easy-update-to-latest-esxi-2023-06-28
    As of June 27 2023, this article has been visited 320,933 times by 267,807 folks [that don't block analytics] since it was first published on Aug 14 2018. It's been refined and updated hundreds of times since.

    Use Cases

    The below list of one-liner SSH commands allow all ESXi enthusiasts to get to the very latest ESXi version (or any particular version) at any time. Seriously easy, much like apt get in Linux. Yes, even these folks:

    2018-08-15_11-19-33
    1. users of the Free Hypervisor
      (limited functionality)
    2. sysadmins for small labs with ESXi only and no vCenter or VCSA, thus, no VMware Update Manager (VUM), the preferred way to upgrade
    3. folks like me who have a VCSA appliance on an ESXi cluster, and we're trying to update ESXi but it won't let us proceed because we don't have DRS set to on for our small cluster (or even a single-node cluster, aka stan82d-alone)
      quote-01_1
    4. VMUG Advantage EVALExperience Subscribers, well worth every penny
      (full functionality, no need to rebuild, just re-up every year)
    5. for those interim periods where there is no ISO available for easiest import into LifeCycle Manager, such as when ESXi 7.0U1d patch came out, but the latest ISO was only available for 7.0 U1c

    Let that sink in for a moment. It doesn't really matter that the Free Hypervisor and EVALExperience download sites aren't updated very often, you don't have to wait to get the latest version of the ESXi Hypervisor! For example, you can easily test the very latest Hypervisor-Specific Mitigations.

    Warnings

    Warning!
    All operating system/hypervisor upgrades come with risks, including the slight possibility of losing your network connections and access to your VMs.

    Proceed only AFTER you:

    1. Read the entire article below which includes crucial usage instructions, risk reduction, and troubleshooting.
    2. AND update your VCSA [there's even a walk-thru video].
    3. AND back up your hypervisor [there's even a walk-thru video].

    Follow

    TinkerTry's comprehensive list of ESXCLI commands below includes 6.5.x and 6.7.x and 7.0.x releases, see also this extremely popular (over 2 million views) post:

    2143832

    even though historically it's not always been updated promptly, which I've politely reported on twitter recently, and via email back when I was a VMware employee.

    2019-11-20_13-56-11

    See also Andreas Peetz fine work at:

    and follow his @VFrontDe handle, and/or add his RSS feed, to be notified of new releases promptly.

    TinkerTry--VMware-KB-2143832-on-Mar-04-2024-cropped
    Screenshot of VMware KB 2143832 on Mar 04 2024, click/tap to view the full article.

    Any bolded section below can be right-clicked to "Copy link address" then share, since sharing the ESXCLI command directly on social or discussion may ruin the formatting, and/or lose all context.

    Instructions

    You'll need to temporarily enable SSH on your ESXi host(s) before you'll have remote access over SSH.
    The one-liners to copy-and-paste into your SSH session below, but you'll need to read the Detailed Instructions Below first to be really be sure you stay out of trouble.

    Always upgrade to the latest level of VCSA before attempting to upgrade ESXi host(s).

    My focus tends to be on testing the latest releases with my Xeon D-1500 and Xeon D-2100 Series of processors in my home lab.

    ESXCLI commands for ESXi 8.0.x releases

    For Xeon D-1500 series system like mine, I had to add the --no-hardware-warning flag to be able to execute these ESXCLI commands successfully, you might not need to use that flag. Also, I was getting the "Unable to download from any URLs" error if I didn't bother with the firewall commands that didn't seem necessary on 7.0.x, so I've added them back in. These 3 lines worked great, so now both my VCSA 7.0 to 8.0 upgrade (seen on video here) and my ESXi 7 to 8 upgrades are both now complete!

    I have just started testing VCSA 8.0U1c and ESXi 8.0U1c, always be sure to backup first before trying either, especially if you don't have a VMware support contract!


    Version Release Name | Release Date | Build Number


    ESXi 8.0 Update 2b 2024/02/29 23319993

    Release Notes.

    esxcli network firewall ruleset set -e true -r httpClient
    esxcli software profile update -p ESXi-8.0U2b-23305546-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml --no-hardware-warning
    esxcli network firewall ruleset set -e false -r httpClient

    If you get this error

    "[MemoryError]
    Please refer to the log file for more details.

    I give a hat tip to William Lam's Quick Tip - Using ESXCLI to upgrade ESXi 8.x throws MemoryError or Got no data from process article, published at about 7pm eastern on March 4 2024. It has a workaround to this error that me and many others were getting. If you get that error, try this sequence of commands that worked for me, adding William's suggested (UNSUPPORTED) lines:

    esxcli network firewall ruleset set -e true -r httpClient
    esxcli system settings advanced set -o /VisorFS/VisorFSPristineTardisk -i 0
    cp /usr/lib/vmware/esxcli-software /usr/lib/vmware/esxcli-software.bak
    sed -i 's/mem=300/mem=500/g' /usr/lib/vmware/esxcli-software.bak
    mv /usr/lib/vmware/esxcli-software.bak /usr/lib/vmware/esxcli-software -f
    esxcli system settings advanced set -o /VisorFS/VisorFSPristineTardisk -i 1
    esxcli software profile update -p ESXi-8.0U2b-23305546-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml --no-hardware-warning
    esxcli network firewall ruleset set -e false -r httpClient

    ESXi 8.0 Update 2 2023/09/21 22380479

    Release Notes.

    esxcli network firewall ruleset set -e true -r httpClient
    esxcli software profile update -p ESXi-8.0U2-22380479-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml --no-hardware-warning
    esxcli network firewall ruleset set -e false -r httpClient

    ESXi 8.0 Update 1c 2023/07/27 22088125

    Release Notes.

    esxcli network firewall ruleset set -e true -r httpClient
    esxcli software profile update -p ESXi-8.0U1c-22088125-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml --no-hardware-warning
    esxcli network firewall ruleset set -e false -r httpClient

    ESXi 8.0 Update 1a 2023/06/01 21813344

    Release Notes.

    esxcli network firewall ruleset set -e true -r httpClient
    esxcli software profile update -p ESXi-8.0U1a-21813344-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml --no-hardware-warning
    esxcli network firewall ruleset set -e false -r httpClient

    ESXi 8.0 Update 1 2023/04/18 21495797

    Release Notes.

    esxcli network firewall ruleset set -e true -r httpClient
    esxcli software profile update -p ESXi-8.0U1-21495797-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml --no-hardware-warning
    esxcli network firewall ruleset set -e false -r httpClient

    ESXi 8.0c 2023/03/30 21493926

    Release Notes.

    esxcli network firewall ruleset set -e true -r httpClient
    esxcli software profile update -p ESXi-8.0c-21493926-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml --no-hardware-warning
    esxcli network firewall ruleset set -e false -r httpClient

    ESXi 8.0b 2023/02/14 21203435

    Release Notes.

    esxcli network firewall ruleset set -e true -r httpClient
    esxcli software profile update -p ESXi-8.0b-21203435-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml --no-hardware-warning
    esxcli network firewall ruleset set -e false -r httpClient

    ESXi 8.0a Patch 2022/12/08 20842819

    Release Notes.

    esxcli network firewall ruleset set -e true -r httpClient
    esxcli software profile update -p ESXi-8.0a-20842819-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml --no-hardware-warning
    esxcli network firewall ruleset set -e false -r httpClient

    ESXi 8.0 IA 2022/10/11 20513097

    Release Notes.

    esxcli network firewall ruleset set -e true -r httpClient
    esxcli software profile update -p ESXi-8.0.0-20513097-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml --no-hardware-warning
    esxcli network firewall ruleset set -e false -r httpClient

    ESXCLI commands for ESXi 7.0.x releases

    Note, I'm no longer testing any of the 7.0 ESXCLI commands, moving my entire home lab to 8.0.


    Version Release Name | Release Date | Build Number


    ESXi 7.0 Update 3i 2022/12/08 20842708

    Release Notes.

    esxcli software profile update -p ESXi-7.0U3i-20842708-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 7.0 Update 3g 2022/09/01 20328353

    Release Notes.

    esxcli software profile update -p ESXi-7.0U3g-20328353-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 7.0 Update 3f 2022/07/12 20036589

    Release Notes.

    esxcli software profile update -p ESXi-7.0U3f-20036589-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 7.0 Update 3e 2022/06/14 19898904

    Release Notes.

    esxcli software profile update -p ESXi-7.0U3e-19898904-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 7.0 Update 3d 2022/03/29 19482537

    Release Notes.

    esxcli software profile update -p ESXi-7.0U3d-19482537-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 7.0 Update 3c 2022/01/27 19193900

    Release Notes.

    esxcli software profile update -p ESXi-7.0U3c-19193900-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 7.0 Update 3b 2021/11/12 18905247

    Release Notes.

    esxcli software profile update -p ESXi-7.0U3b-18905247-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 7.0 Update 3a 2021/10/28 18825058

    Release Notes.

    esxcli software profile update -p ESXi-7.0U3a-18825058-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 7.0 Update 3 2021/10/05 18644231

    Release Notes.

    esxcli software profile update -p ESXi-7.0U3-18644231-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 7.0 Update 2d 2021/09/14 18538813

    Release Notes.

    esxcli software profile update -p ESXi-7.0U2d-18538813-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 7.0 Update 2c 2021/08/24 18426014

    Release Notes.

    esxcli software profile update -p ESXi-7.0U2c-18426014-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 7.0 Update 2a 2021/04/29 17867351

    Release Notes.

    esxcli software profile update -p ESXi-7.0U2a-17867351-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 7.0 Update 2 03/09/2021 17630552

    Release Notes.
    This 7.0U2 update command worked on Mar 10th, but failed on March 12th, and VMware has pulled this bundle offline for now. See details at KB 83063.

    esxcli software profile update -p ESXi-7.0.2-17630552-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 7.0 Update 1d 02/04/2021 17551050

    Release Notes.

    esxcli software profile update -p ESXi-7.0U1d-17551050-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 7.0 Update 1c 12/17/2020 17325551

    Release Notes.

    esxcli software profile update -p ESXi-7.0U1c-17325551-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 7.0 Update 1b 11/19/2020 17168206

    Release Notes.

    esxcli software profile update -p ESXi-7.0U1b-17168206-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-ind```

    ESXi 7.0 Update 1a 11/04/2020 17119627

    Release Notes.

    esxcli software profile update -p ESXi-7.0U1a-17119627-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 7.0 Update 1 10/06/2020 16850804

    Release Notes.

    esxcli software profile update -p ESXi-7.0.1-16850804-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 7.0b 06/23/2020 16324942

    Release Notes.

    esxcli software profile update -p ESXi-7.0b-16324942-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 7.0 GA ESXi 7.0 GA 04/02/2020 15843807

    Release Notes.

    esxcli software profile update -p ESXi-7.0.0-15843807-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXCLI commands for ESXi 6.7.x releases

    Note, I'm no longer testing any of the 6.7 ESXCLI commands as 6.7 is pretty old at this point. I have stopped updating this 6.7 section.


    Version Release Name | Release Date | Build Number


    ESXi 6.7 P04 ESXi 670-202011002 11/19/2020 17167734

    Release Notes.

    esxcli software profile update -p ESXi-6.7.0-20201104001-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 6.7 EP 17 ESXi670-202011001 11/04/2020 17098360

    Release Notes.

    esxcli software profile update -p ESXi-6.7.0-20201103001-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 6.7 EP 16 ESXi670-202010001 10/15/2020 16773714

    Release Notes.

    esxcli software profile update -p ESXi-6.7.0-20201004001-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 6.7 P03 ESXi670-202008001 08/20/2020 16713306

    Release Notes.

    esxcli software profile update -p ESXi-6.7.0-20200804001-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 6.7 EP 15 ESXi670-202006001 06/09/2020 16316930

    Release Notes.

    esxcli software profile update -p  ESXi-6.7.0-20200604001-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 6.7 P02 ESXi670-202004002 04/28/2020 16075168

    Release Notes.

    esxcli software profile update -p ESXi-6.7.0-20200404001-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 6.7 EP 14 ESXi670-202004001 04/07/2020 15820472

    Release Notes.

    esxcli software profile update -p ESXi-6.7.0-20200403001-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 6.7 P01 ESXi670-201912001 12/05/2019 15160138

    Release Notes.

    esxcli software profile update -p ESXi-6.7.0-20191204001-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 6.7 EP 13 ESXi670-201911001 11/12/2019 15018017

    Release Notes.

    esxcli software profile update -p ESXi-6.7.0-20191104001-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 6.7 Update 3 ESXi 6.7 U3 08/20/2019 14320388

    Release Notes.

    esxcli software profile update -p ESXi-6.7.0-20190802001-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 6.7 EP 10 ESXi670-201906002 06/20/2019 13981272

    Release Notes.

    esxcli software profile update -p ESXi-6.7.0-20190604001-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 6.7 EP 09 ESXi670-201905001 05/14/2019 13644319

    Release Notes.

    esxcli software profile update -p ESXi-6.7.0-20190504001-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 6.7 EP 08 ESXi670-201904001 04/30/2019 13473784

    Release Notes.

    esxcli software profile update -p ESXi-6.7.0-20190404001-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 6.7 U2 ESXi 6.7 U2 04/11/2019 13006603

    Release Notes.

    esxcli software profile update -p ESXi-6.7.0-20190402001-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 6.7 EP 06 ESXi670-201901001 01/17/2019 11675023

    Release Notes.

    esxcli software profile update -p ESXi-6.7.0-20190104001-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 6.7 EP 05 ESXi670-201811001 11/09/2018 10764712

    Release Notes.

    esxcli software profile update -p ESXi-6.7.0-20181104001-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 6.7 U1 ESXi 6.7 U1 10/16/2018 10302608

    Release Notes.

    esxcli software profile update -p ESXi-6.7.0-20181002001-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 6.7 EP 04 ESXi670-201810001 10/02/2018 10176752

    KB 58848.

    esxcli software profile update -p ESXi-6.7.0-20181004001-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 6.7 EP 03 ESXi670-201808001 8/14/2018 9484548

    KB 56534.

    esxcli software profile update -p ESXi-6.7.0-20180804001-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 6.7 EP 02a ESXi670-201807001 7/26/2018 9214924

    KB 56539.

    esxcli software profile update -p ESXi-6.7.0-20180704001-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 6.7 EP 02 ESXi670-201806001 6/28/2018 8941472

    KB 55917.

    esxcli software profile update -p ESXi-6.7.0-20180604001-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 6.7 GA ESXi 6.7 GA 4/17/2018 8169922

    Release Notes.

    esxcli software profile update -p ESXi-6.7.0-8169922-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXCLI commands for ESXi 6.5.x releases

    Note, I'm no longer testing any of the 6.x ESXCLI commands.


    Version Release Name | Release Date | Build Number


    ESXi 6.5 Update 3 ESXi 6.5 Update 3 07/02/2019 13932383

    KB 58848.

    esxcli software profile update -p ESXi-6.5.0-20190702001-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 6.5 EP 14 ESXi650-201905001 05/14/2019 13635690

    KB 58848.

    esxcli software profile update -p ESXi-6.5.0-20190504001-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 6.5 EP 14 ESXi650-201905001 05/14/2019 13635690

    KB 58848.

    esxcli software profile update -p ESXi-6.5.0-20190504001-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 6.5 EP 13 ESXi650-201903001 03/28/2019 13004031

    Release Notes.

    esxcli software profile update -p ESXi-6.5.0-20190304001-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 6.5 EP 12 ESXi650-201901001 01/31/2019 11925212

    Release Notes.

    esxcli software profile update -p ESXi-6.5.0-20190304001-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 6.5 P03 ESXi650-201811002 11/29/2018 10884925

    Release Notes.

    esxcli software profile update -p ESXi-6.5.0-20181104001-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 6.5 EP 11 ESXi650-201811001 11/09/2018 10719125

    Release Notes.

    esxcli software profile update -p ESXi-6.5.0-20181103001-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 6.5 EP 10 ESXi650-201810002 10/23/2018 10390116

    Release Notes.

    esxcli software profile update -p ESXi-6.5.0-20181004002-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 6.5 EP9 ESXi650-201806001 10/02/2018 10175896

    KB 58852.

    esxcli software profile update -p ESXi-6.5.0-20181004001-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 6.5 U2b ESXi650-201806001 6/28/2018 8935087

    KB 55912.

    esxcli software profile update -p ESXi-6.5.0-20180604001-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 6.5 U2 GA ESXi 6.5 U2 GA 5/3/2018 8294253

    KB 53097.

    esxcli software profile update -p ESXi-6.5.0-20180502001-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 6.5 U1g ESXi650-201803001 3/20/2018 7967591

    KB 52456.

    esxcli software profile update -p ESXi-6.5.0-20180304001-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 6.5 Patch 02 ESXi650-201712001 12/19/2017 7388607

    KB 2151102.

    esxcli software profile update -p ESXi-6.5.0-20171204001-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 6.5 U1 Express Patch 4 ESXi650-201710001 10/5/2017 6765664

    KB 2151081.

    esxcli software profile update -p ESXi-6.5.0-20171004001-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 6.5 U1 ESXi 6.5 U1 7/27/2017 5969303

    KB 2149910.

    esxcli software profile update -p ESXi-6.5.0-20170702001-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 6.5.0d ESXi650-201704001 4/18/2017 5310538

    KB 2149217.

    esxcli software profile update -p ESXi-6.5.0-20170404001-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 6.5. Express Patch 1a ESXi650-201703002 3/28/2017 5224529

    KB 2149572.

    esxcli software profile update -p ESXi-6.5.0-20170304101-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 6.5. Patch 01 ESXi650-201703001 3/9/2017 5146846

    KB 2148989.

    esxcli software profile update -p ESXi-6.5.0-20170304001-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    SXi 6.5.0 a ESXi650-201701001 2/2/2017 4887370

    KB 2147869.

    esxcli software profile update -p ESXi-6.5.0-20170104001-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    ESXi 6.5 GA ESXi 6.5 GA 11/15/2016 4564106

    Release Notes.

    esxcli software profile update -p ESXi-6.5.0-4564106-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    3262786803

    Detailed Instructions

    If you skim through The Difference Between An ESXi Patch, Express Patch, and Update, and the VMware Patch Portal (which is where I manually harvested the profiles from), it can be a bit tough to figure out what's what. Guess what. Even when whatever latest emergency patch arrives such as Aug 14 2018's release of VMware Security Advisory VMSA-2018-0020 and VMSA-2018-0021 – L1 Terminal Fault (L1TF): CVE-2018-3646, CVE-2018-3620, and CVE-2018-3615, this article will be ready for you quickly, with me just needing to prepend a new one-liner ESXCLI command each time a new ESXi build appears. I already get notified automatically by signing up for Security Advisories here, apparently so does Alex Lopez @iVirtuAlex, who tweeted it out within 1 minute of the email arriving!

    clone-esxi-with-usb-image-tool

    Let's start with this new Aug 14 2018 ESXi build, for example. The potential vulnerability it's intended to mitigate might not be quite so important in a home lab, but perhaps you want to give it a go for testing purposes. What better place to learn than in a lab? Besides, you do back up your ESXi before messing with it, don't you?

    This Build 9484548 is so new it hasn't shown up on the handy VMware KB article Build numbers and versions of VMware ESXi/ESX (2143832) quite yet. But there is a rather universal way to download and install it, in one command. Works great if your ESXi host has internet access. William Lam and Andreas Peetz have actually blogged about using esxcli for ESXi updates back in 2012 here and here. This article revisits that particular technique. Why, even in this day and age when VCSA has VUM baked in? Because of its universality, and because it removes the need for folks to do crazy stuff to workaround My VMware login issues or entitlement/permissions issues.

    Yeah, it's that easy! While you do have to temporarily enable SSH on your ESXi host(s) first for remote access over SSH. You really should read this ENTIRE article before upgrading. Why? Well, if you rush, you may find yourself with ESXi 6.5 Update 2, which has no valid upgrade path to ESXi 6.7 currently. Yeah, details matter, so be very careful out there!

    You should be updating your VCSA before your ESXi, see how at TinkerTry:

    easy-update-to-vcsa-67

    You may also want to read Eric Siebert's Important information to know before upgrading to vSphere 6.7 and Brandon Lee's VMware vSphere ESXi 6.7 New Features Installing and Upgrading.

    The ESXCLI method of updating is a more universal way to upgrade ESXi that works even for the free hypervisor. It's actually a one-liner that side-steps the preferred VUM method for those without VCSA, and/or those without a My VMware account or and expired trial, instead downloading the patch directly. This ESXCLI method doesn't have quite as easy a way to revert (aka roll-back) if things go wrong. If you have access to the latest ESXi ISO, downloading and booting from that and choosing Upgrade is safer. If you have VCSA 6.7, using vSphere Update Manager VUM is safer too. It's a lot more fun to have VCSA in your home lab, and doing so beyond the 60 day trial has gotten a whole lot more affordable too, with the 365 day renewable VMUG Advantage EVALExperience. See also VMware ESXi Upgrade.

    Warning
    I cannot feasibly provide support for your upgrade, especially given the variety of unsupported hardware out there, see full disclaimer below. This article is focused mostly on small home labs, and was voluntarily authored.

    If you don't have a backup, and you don't have any support contract with VMware (such as VMUG Advantage EVALExperience), you are putting yourself at risk if you don't take a moment to back up your ESXi before proceeding, and note that I have full walk through video of free Windows software that allows you to do it.

    Don't rush things. At a minimum, even for a home lab, you'll want to read this entire article before patching anything! Special thanks go out to VCDX 194 Matt Kozloski, whose invaluable feedback improved my recent update articles.

    Step 1 - do your homework

    VMware ESXI Release Notes

    Read them all, for both the major release such as vSphere 6.7 Release Notes, and for the patch release, such as ESXi 6.7 EP 02a.

    Step 2 - Follow Prerequisites

    Once you've completed ALL of the following preparation steps:

    1. Upgrade to the latest VCSA.
      This is very important for 7.0, you won't be able to connect ESXi 7.0 hosts to VCSA 6.7! Yes, I tried in a lab, and it prevents this terrible idea, which is good!
    2. I tend to put my modern systems BIOS setting to UEFI mode (instead of Dual), see details here, as a bit of future proofing. You should also read Mike Foley's warnings in Secure Boot for ESXi 6.5 – Hypervisor Assurance

      ...
      Possible upgrade issues
      UEFI secure boot requires that the original VIB signatures are persisted. Older versions of ESXi do not persist the signatures, but the upgrade process updates the VIB signatures.

      If your host was upgraded using the ESXCLI command then your bootloader wasn’t upgraded and doesn’t persist the signatures. When you enable Secure Boot after the upgrade, an error occurs. You can’t use Secure Boot on these installations and will have to re-install from scratch to gain that support.
      ...

    3. Backed up the ESXi hypervisor you've already installed and configured, for easy roll-back in case things go wrong. If it's on USB or SD, it's best to clone to a new USB drive and boot from it, to be sure your "backup" is good, it's all explained at USB Image Tool for Windows easily backs up and restores your complete VMware ESXi hypervisor on USB or SD flash drives, a simple/free clone for peace of mind before patching or upgrading.
      If you don't wish to do either, at least follow this VMware KB article:
      How to back up ESXi host configuration (2042141)
    4. Ensured your ESXi host has a working internet connection.
    5. Read this entire article, yes, even the entire set of prerequisites above.

    Step 3 - Perform Upgrade using VUM (vSphere Update Manager)

    Helpful for folks who have VCSA already installed and configured. Instructions here and here.

    - OR -

    Step 3 - Perform Upgrade using ESXCLI

    Step-by-Step Instructions

    Download and upgrade to the latest VMware ESXI using the patch bundle that comes directly from the VMware Online Depot

    The entire process including reboot is usually well under 10 minutes, and many of the steps below are optional, making it appear more difficult than it is. Triple-clicking on a line of code below highlights the whole thing with a carriage return, so you can then right-click and copy it into your clipboard, which gets executed immediately upon pasting into your SSH session. If you want to edit the line before it's executed, manually swipe your mouse across each line of code with no trailing spaces at the end.

    1. Open an SSH session (eg. PuTTY) to your ESXi 6.x server
      (if you forgot to enable SSH, here's how)

    2. OPTIONAL - Turn on Maintenance Mode - Or you can just be sure to manually shutdown all the VMs gracefully that you care about, including VCSA. These instructions are geared to a home lab without High Availability enabled. This is also a good time to ensure you've also set ESXi host to automatically gracefully shutdown all VMs upon host reboot, or if you don't use vCenter or VCSA, use this Host Client method.

    3. OPTIONAL - Reboot (Pro Tip courtesy of VCDX 194 Matt Kozloski) - Consider rebooting your ESXi server and maybe even a hard power cycle before updating. Matt explains:

      if people are running on SD cards or USB sticks and they haven't rebooted the server in a LONG time to patch/update, I would strongly recommend doing a reboot of the server before applying any updates. I've seen, more than once, the SD card or the controller goes into some funky state and as ESXi is running largely in memory, it can comes up half patched or not patched at all. A [cold] reboot before update helps with that (again, if a server has been running for a long period of time - like a year+ - since it was rebooted last). Cold (remove the power cables) can be important, if the SD card or USB stick is actually running on an embedded controller like iLO or iDRAC.

    4. OPTIONAL - See a list of all available ESXi profiles - VMware's Upgrade or Update a Host with Image Profiles documentation tells you how this command was formed. Paste the one line below into into your SSH session, then press enter:

      esxcli software sources profile list --depot=https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

      You can cut-and-paste the output from the above command into a spreadsheet if you'd like, so you can then sort it, making it apparent which profile is the most recent.

    5. OPTIONAL - Firewall allow outbound http requests - This command is likely not needed if you're upgrading from 6.5.x or later, and is here just in case you get an error about https access. I'm trying to make these instructions applicable to the broadest set of readers. Paste the one line below into into your SSH session, then press enter:

      esxcli network firewall ruleset set -e true -r httpClient

      More details about the firewall here.

    6. Dry Run - Taking this extra step will help you be sure of what is about to happen, before it actually happens.
      Here's the simple command to cut-and-paste into your SSH session:

      [command pasted from above] --dry-run

      Copy and paste the results into a text editor and save it. If you see some VIBs that are going to be removed that you require, you'll need to be fully prepared to manually re-install them after the actual upgrade below. If it's a network VIB that is used for your ESXi service console, you'll want to be extra careful to re-install that same VIB before rebooting your just-patched host(s). Don't just assume some later VIB version will work fine with your hardware, use what you know works, and carefully double-check the VMware Compatibility Guide for the recommended/supported version of firmware and device driver.

    7. ACTUAL RUN - This is it, the all-in-one download and patch command, assuming your ESXi host has internet access. This will pull down the ESXi Image Profile using https, then it will run the patch script.
      When you paste this line into your SSH session and hit enter, you'll need to be patient, as nothing seems to happen at first. It will take somewhere between roughly 3 to 10 minutes before the completion screen (sample below) appears:

      [command pasted from above]
    8. Firewall disallow outbound http requests - - To return your firewall to how it was before (optional) step 4 above, simply copy and paste the following:
      esxcli network firewall ruleset set -e false -r httpClient
    9. OPTIONAL - Xeon D-1500 Owners Only - This workaround for odd Hardware Health readings was required for ESXi 6.5, but so far, Xeon D-1500 systems seem to work fine with 6.7 as-is, this is good! 7.0 testing underway. See also How to find NVMe SSD firmware versions in a VMware ESXi 6.5 Server. As for the Intel I350 1GbE and X557 10GbE NICs, the inbox (included) drivers in 6.7 itself seem to work fine as-is too, but there are certainly much newer drivers available, installable with this set of 3 commands. Not sure about ESXi 7.0 inbox drivers yet. Note, you will have to reboot after an ESXCLI upgrade before you'll be able to install a different than inbox I350 driver, such as this example:

      esxcli software vib install -v https://cdn.tinkertry.com/files/INT_bootbank_ixgben_1.7.1-1OEM.670.0.0.7535516.vib
      reboot
      esxcli software vib install -v https://cdn.tinkertry.com/files/igbn-1.4.4-1OEM.670.0.0.7535516.x86_64.vib
    10. Reboot - This is needed for the new hypervisor version to be loaded upon restart. You may want to watch the DCUI (local console) as it boots, to see if any errors show up.

      reboot
    11. OPTIONAL - If you turned on Maintenance Mode in step 3 above, you'll need to turn it off.

    12. You're Done! - You may want to be continue with checking whether everything is working correctly after your systems is back up again, but you are done with the update itself. You can also watch DCUI during the boot if you'd like, to see if you spot any warnings.

    13. Test things out - Log in with ESXi Host Client (pointing your browser directly at your IP address or ESXi servername), and be sure everything seems to function fine. You may need to re-map USB devices to VMs that use USB, and you may need to re-map VT-d (passthrough) devices to VMs that use passthrough devices like GPUs.

    14. You're Really Done! - If you're happy that everything seems to be working well, that's a wrap, but keep that backup, just in case you notice something odd later on.

    Version Confirmation

    Now that you've updated and rebooted, various UIs will show your ESXi version, depending upon where you look. Here's just an example below, your version numbers will vary.

    ESXi 8.0

    Host Client:

    • Version: 8.0.0 (Build 20513097)
    • Image profile: (Updated) ESXi-8.0.0-20513097-standard (VMware, Inc.)

    vSphere Client (HTML5):

    • Hypervisor: VMware ESXi, 8.0.0, 20513097
    • Image Profile (Updated) ESXi-8.0.0-20513097-standard

    ESXi 7.0

    Host Client:

    • Version: 7.0.0 (Build 15843807)
    • Image profile: (Updated) ESXi-6.5.0-4564106-standard (VMware, Inc.)

    • Deprecated, so not applicable.

    vSphere Client (HTML5):

    • Hypervisor: VMware ESXi Version: 7.0.0 (Build 15843807)
    • Image Profile: (Updated) ESXi-7.0.0-15843807-standard (VMware, Inc.)

    ESXi 6.7

    Host Client:

    • Version: 6.7.0 (Build 9484548)
    • Image profile: (Updated) ESXi-6.5.0-4564106-standard (VMware, Inc.)

    vSphere Web Client (Flash):

    • Hypervisor: VMware ESXi, 6.7.0, 9484548
    • Image Profile: (Updated) ESXi-6.5.0-4564106-standard

    vSphere Client (HTML5):

    • Hypervisor: VMware ESXi, 6.7.0, 9484548
    • Image Profile: (Updated) ESXi-6.5.0-4564106-standard

    SSH session to updated ESXi host:

    ESXi 8.0

    vmware -vl
    • VMware ESXi 8.0.0 build-20513097
    • VMware ESXi 8.0 GA
    
    uname -a
    • VMkernel xd-1541-5028d.lab.local 8.0.0 #1 SMP Release build-20513097 Sep 23 2022 11:15:23 x86_64 x86_64 x86_64 ESXi

    ESXi 7.0

    vmware -vl
    • VMware ESXi 7.0.0 build-15843807
    • VMware ESXi 7.0 GA
    uname -a
    • VMkernel xd-1541-5028d.lab.local 7.0.0 #1 SMP Release build-15843807 Mar 16 2020 03:29:53 x86_64 x86_64 x86_64 ESXi

    ESXi 6.7

    vmware -vl
    • VMware ESXi 6.7.0 build-9484548
    • VMware ESXi 6.7.0 GA
    uname -a
    • VMkernel xd-1541-5028d.lab.local 6.7.0 #1 SMP Release build-9484548 Aug 8 2018 12:22:30 x86_64 x86_64 x86_64 ESXi

    Notes for Xeon D Owners

    • There is now BIOS 2.1 for Xeon D.
    • The default ESXi 7.0 install seems to work great, according to my preliminary testing, and William Lam's testing. See also basically the same news on 6.7 at:
      How to easily install VMware ESXi 6.7 on an Intel Xeon D Supermicro SuperServer
    • There may be a better, recommended I350 1GbE driver and/or a better X557 10GbE driver, but the default/included inbox drivers seem to work fine with preliminary initial tests. I have more homework to do there. There's also no longer any need to "fix" odd RPM and temperature readings that were evident in 6.5, perhaps that SR# I filed finally paid off?

    Video

    Step-by-step video showing me upgrading a Xeon D from 6.7U3 to 7.0 in my home lab.

    How to update any 6.x VMware ESXi Hypervisor to 7.0 using ESXCLI for easy download and install
    USB Image Tool for Windows easily backs up and restores complete VMware ESXi installed on USB or SD

    Closing Thoughts

    vCenter-Server-Appliance-Update--TinkerTry
    See how easy updates to VCSA have become in 6.5, and 6.7 even adds native backup and roll-back abilities too!

    Honestly, I wish updates were even easier, with a vSphere Host Client mechanism available to anybody that would be similar to what VMware already does with the Photon OS based VCSA appliance, where you'll find an easy to use built-in "Check Updates" function in VAMI. Even better would be automatic image backups, and easy roll-back.

    If these notions actually become real someday, I'd be more than happy to have this article become completely obsolete, and I'd happily point folks to built-in product capabilities instead.

    Disclaimer/Disclosure

    I cannot feasibly provide support for your upgrade, especially given the variety of unsupported hardware out there, see full disclaimer at below-left. This article is focused mostly on small home labs, was voluntarily authored, and not associated with my employment at VMware. It is not official documentation. I worked in the storage division at VMware from 2017-2019, which was separate from the group developing and supporting the hypervisor.

    1030300685601005575
    Side-steps in the sense that you can worry less about access, since Free or EVALExperience users can get to particular version without access.

    Aug 17 2018 Update

    I noticed that this great reference at virten.net:

    now lists Build 9484548 as 6.7 EP3, so I've updated my table above accordingly, since VMware hasn't updated its Build numbers and versions of VMware ESXi/ESX (2143832) KB article yet.


    Aug 19 2019 Update

    Section above about Xeon D updated with newer VIBs for networking.


    Apr 14 2019 Update

    On my first test, I get this error, on a system that has been upgraded with ease many times before.

    [root@xd-1541-5028d:~] esxcli software profile update -p ESXi-6.7.0-20190402001-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml
     [InstallationError]
     [Errno 28] No space left on device
           vibs = VMware_locker_tools-light_10.3.5.10430147-12986307

    I found a work-around for this error here, reported by jjwatmyself at 3:30pm eastern time 2019-04-13 at TinkerTry here, but his suggestion didn't seem to work for me, see also set swap procedure at https://kb.vmware.com/s/article/1007638.

    This issue has also been reported by secconse in the VMware Communities here with this workaround:

    [user@host:~] cd /tmp
    
    [user@host:/tmp] wget http://hostupdate.vmware.com/software/VUM/PRODUCTION/main/esx/vmw/vib20/tools-light/VMware_locker_tools-light_10.3.5.10430147-12986307.vib
    
    [user@host:/tmp] esxcli software vib install -f -v /tmp/VMware_locker_tools-light_10.3.5.10430147-12986307.vib
    
    Installation Result
    
       Message: Operation finished successfully.
    
       Reboot Required: false
    
       VIBs Installed: VMware_locker_tools-light_10.3.5.10430147-12986307
    
       VIBs Removed: VMware_locker_tools-light_10.3.2.9925305-10176879
    
       VIBs Skipped:

    So if that work-around works, it's not really swap at play here. I have not finished testing this yet, but I'm certainly hoping to find a more elegant way to address this error. This same problem struck some folks on 6.7 Update 1 too, it seems.

    Any ideas? Drop a comment below.


    Apr 28 2019 Update

    Success! All I had to do was reboot after doing that swap file fix, then the next attempt to do the update worked just fine. Session transcript below.


    Oct 31 2019 Update

    Some feedback in this tweet by JD Wallace:

    Ran into "[Errno 28] No space left on device" but was able to work around by doing this > https://www.eknori.de/2019-09-01/esxi-6-7-update-no-space-left-on-device/

    1189938328449105921

    It appears that updates to 6.7.x can be done via ESXi Host Client, pointing your browser right to the individual ESXi host, choosing the "Help" drop-down menu, selecting Update, then when prompted to "Enter the URL or datastore path of the VIB below", paste the following URL in:

    https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/esx/vmw/vib20/tools-light/VMware_locker_tools-light_10.3.10.12406962-14141615.vib
    2019-10-31_22-24-36
    2019-10-31_22-17-45

    I have more research and testing to do. I do wonder why this URL isn't pre-populating that field automatically by default, so the user doesn't have to dig it up from the internets.


    Apr 02 2020 Update

    I removed this wording from the article above:

    ~~
    It's not available yet, see also at TinkerTry:

    no-esxi-7-yet--esxcli-TinkerTry
    ESXCLI command reveals the ESXi 7.0 code isn't published yet, at least not at the backend depot at the usual hostupdate.vmware.com server.

    ~~


    Apr 16 2020 Update

    1250932869498798081

    William Lam published Important – NVMe SSD not found after upgrading to ESXi 7.0:

    Instead of using "esxcli software vib update" command, folks should be using "esxcli software profile update" which has always been the correct command to use when upgrading an ESXi image. In fact, this has been in the vSphere documentation for quite some time and here is the ESXi 7.0 version of that documentation. More importantly, the incorrect command only upgrades the ESXi 6.7 VIBs that exists and does not install any of the ESXi 7.0 VIBs, which means after the upgrade, you are not only missing the nvme-pcie VIB but many other ESXi 7.0 VIBs!

    My article above is doing these upgrades the proper way. This is good!


    Jul 01 2020 Update

    It appears that my article lost the 7.0b updates I made back on Jun 24, something to do with my sftp file sync, so sorry about that. I've resolved the issue, and submitted the article to Google indexing so that upgrade seekers can once again find this article.


    Jul 02 2020 Update

    If you are just looking for the 7.0bs release that is just security patches but not the feature changes, then here's how (I have not tested this):

    ESXi 7.0bs ESXi 7.0bs 06/23/2020 16321839 N/A

    Release Notes.

    esxcli software profile update -p ESXi-7.0bs-16321839-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    Aug 17 2020 Update

    I've moved all the of the prepended sections from the article top to this section below, for archive and search reasons, and to make the article clearer and more to the point.

    Jun 24 2020 8:15am ET Update - The first vSphere 7 patches called 7.0b and 7.0bs are here, article below already updated, testing underway.

    Apr 02 2020 7:15am ET Update - vSphere 7 is here, article below already updated! See also VMware vSphere 7.0 is now GA, here's how to download it right away!.

    Apr 02 2020 Update - As of 8:10am ET, my first test on my Xeon D-1541 system went well, upgraded successfully from 6.7 to 7.0 using the ESXCLI command below, with video of the process here.

    Apr 02 2020 11:00am ET Update - TinkerTry's vSphere 6.7 to 7.0 easy ESXCLI upgrade video available here.

    Apr 06 2020 6:47 ET Update - If you have a host at ESXi 6.7 Update 3 with patch release ESXi670-201911001 (Build 15160138) applied, that patch came out February 5 2020. It appears it wasn't tested with the ESXi 7.0 GA code that was published internally on Mar 16 2020, as you can see here below. This also could be the reason I'm getting errors (with no upgrade success) when trying to use ESXCLI to update this host, they're seen in detail in my ssh transcript here below. Errors include:

    The transaction is not supported: VIB VMW_bootbank_vmw-ahci_1.3.9-1vmw.700.1.0.15843807 cannot be live installed.

    I got this error when trying to update using the new Lifecycle Manager:

    Status: Cannot run upgrade script on host.
    Details: com.vmware.vcIntegrity.VciHostRemediateTask

    Jun 24 2020 Update - Testing upgrade process from 7.0 GA to 7.0b now. First attempt on Xeon D-1541 resulted in the following common error:

      [root@xd-1541-5028d:~] esxcli software profile update -p ESXi-7.0b-16324942-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml
      [InstallationError]
      Failed to update bootloader: [Errno 28] No space left on device
            cause = [Errno 28] No space left on device
            vibs = ['VMware_bootbank_esx-base_7.0.0-1.25.16324942']
      Please refer to the log file for more details.
      [root@xd-1541-5028d:~]

    Interesting that I tried the same command on the same system an hour or so later, and it worked fine the second time, with a full transcript of the ssh session below Then I tested this on a Xeon D-2123-IT system, failed first, immediately ran it again, worked like a charm, very quickly on that second try too, seen right here on video. This feels a little like I may have stumbled across a little bug, we'll see. I look forward to hearing how others do with upgrading when their 7.0 GA was a fresh install versus an upgrade from 6.7.

    Jul 01 2020 Update - See Virten.net's Jun 29 article ESXi Update Error "(Errno 28) No space left on device for a fix.

    Oct 06 2020 Update - Virten.net's article came in handy trying to move from 7.0b to 7.0 Update 1 today, when I encountered this error:

      [root@xd-2123it-mb51ps0:~] esxcli software profile update -p ESXi-7.0.1-16850804-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml
      [InstallationError]
      Failed to update bootloader: [Errno 28] No space left on device
            cause = [Errno 28] No space left on device
            vibs = ['VMware_bootbank_esx-base_7.0.1-0.0.16850804']
      Please refer to the log file for more details.
      [root@xd-2123it-mb51ps0:~]

    Strangely, after setting the swap, even though the upgrade appeared to fail showing no VIBs installed and all VIBs skipped, it had actually succeeded.

    I have more testing to do.


    Nov 04 2020 08:15am Update

    This release just came out today early today, and my first hour of successful initial testing of the 7.0U1a ESXCLI command is complete, seems to work well on Xeon D-1500. VMware hasn't updated VMware KB 2143832 Build numbers and versions of VMware ESXi/ESX (2143832) yet, but I confirmed the release date of Nov 4 2020 on VMware's Product Patches site. I also noticed that ESXi host client no longer shows the Build number, so I went with the vSphere Client the screenshot above.*


    Nov 20 2020 11:00am Update

    This release just came out yesterday, and my first successful tests of the 7.0U1b upgrade via the ESXCLI command went well on my Xeon D-1541 system.*


    Mar 13 2021 Update

    ESXCLI-command-fails-due-to-pulled-bundle--TinkerTry-2021-Mar-13
    My ESXCLI command worked on Mar 10, but fails on Mar 13, the bundle has been pulled, "VMware recommends to NOT upgrade to 7.0 U2 until this patch is available."

    Warning! - Mar 13 2021 Update - Don't upgrade to 7.0 Update 2 yet.
    If you try to upgrade now anyway, you may experience one of these two errors:

    1) Using vLCM (Lifecycle Manager)

    to update your ESXi host, you see this error:

      Loading /boot.cfg
      Failed to load crypto64.efi
      Fatal error: 15 (Not found)

    2) Using ESXCLI

    to update your ESXi host, you see this error:

      [root@xd-1541-5028d:~] esxcli software profile update -p ESXi-7.0.2-17630552-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml
      [NoMatchError]
      No image profile found with name 'ESXi-7.0.2-17630552-standard'
            id = ESXi-7.0.2-17630552-standard
      Please refer to the log file for more details.
      [root@xd-1541-5028d:~]

    you'll want to see this excerpt from VMware KB 83063 published on Mar 12 2021:

    As of March 12th, VMware has removed the ESXi 7.0 U2 offline depot from all sites as a result of this failure, For more information, please see KB 83107
    VMware is currently working on building a new Patch to resolve this issue.
    As a result VMware recommends to NOT upgrade to 7.0 U2 until this patch is available.

    If you have encountered this issue, please follow the workarounds below to recover your host
    Post this, please pause all upgrade activity if possible

    Please refer to KB 1033604 for details on how to roll back an ESXi host to a previous version.

    Should you need to continue with the upgrade, an upgrade using the ESX7.0U2 ISO file will avoid this issue.
    However, as per the above, this is not recommended at this time.
    https://docs.vmware.com/en/VMware-vSphere/7.0/com.vmware.esxi.upgrade.doc/GUID-77D42D81-F47E-4FE9-B4B2-B15AB16C9C1A.html

    Special thanks are in order for TinkerTry commenter Slennox, who tipped me off to this issue affecting ESXCLI command users too, confirmed by Erki Rajangu @vSymbiosis. See also William Lam's post on Mar 10 2021, as well as Florian @virten's tweet that references his Mar 12 2021 article Failed to load crypto64.efi - ESXi 7.0 U2 Upgrade Error.


    Apr 29 2021 Update

    ESXi 7.0 Update 2a was released, so the warning notes from the top of this article have been moved to the March 13 2021 Update section.


    Sep 14 2021 Update

    Sep 14 2021 9:15 AM Eastern - TinkerTry testing underway, updated one Xeon D-1541 host so far and it seemed to go well. From the release notes you'll see that in addition to fixes, there is only one "What's New" item:

    ESXi 7.0 Update 2d delivers a fix for ESXi hosts failing with a purple diagnostic screen due to a PCPU preemption error on Dell EMC PowerFlex. For more information, see the Resolved Issues section.


    Oct 31 2021 Update

    I'm super grateful for this extremely helpful comment for folks using vSphere LifeCycle Manager (vLCM), see what Hans Boot was posted yesterday:

    Hans Boot • 16 hours ago
    Having been used to doing my upgrades via the lifecycle manager (the update tab) in the vsphere client (vcenter), I found that the upgrade from 7.0 U3 build 18644231 to 7.0 U3a build 18825058 was rather rocky. I post this because I think the problems I encountered also apply to those only doing cmdline updates.

    What I think being at the root of this: the sensitivity of the lifecycle manager to anything out of the normal, and the renaming from i40en (in 7.0.2 17630552) to i40enu and back (in build 7.0.3 18644231).

    In my case, the update to the latest software via the predefined baselines failed.

    Lifecycle manager will not tell you anything useful, and esxi's /var/run/log/esxupdate.log is of not much help either. In that file, you might see "ValueError: Expected 1 component, found 2", without the explanation of what VIBs are causing that. So here is what I had to do:

    cmdline update to the last:
    # esxcli software profile update -p ESXi-7.0U3a-18825058-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

    That also failed, with the "ValueError: Expected 1 component, found 2" message.

    via
    # esxcli software vib list
    I saw an rather old i40en and a new i40enu.
    So I did:
    # esxcli software vib remove --vibname=i40en
    reboot
    then update to the before-last software:
    # esxcli software profile update -p ESXi-7.0U3-18644231-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml
    That went OK.
    reboot
    # esxcli software profile update -p ESXi-7.0U3a-18825058-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml
    But that failed again, with the same error.
    This time I did:
    # esxcli software vib remove --vibname=i40enu
    reboot
    # esxcli software profile update -p ESXi-7.0U3a-18825058-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml
    Now that was OK.
    Consequently, I had to go through some iterations of lifecycle manager updates and cmdline re-updates, because these two did not seem to agree with each other.
    At one point, lifecycle manager crashed again, when doing an update that contained only vmd VIB updates.
    So I did:
    # esxcli software vib remove --vibname=intel-nvme-vmd
    because I saw conflicting VIBs again.

    In the end, either Lifecyle manager is happy, either cmdline updates are happy.
    Lifecycle manager insists on adding both the i40en and the i40enu VIBs, and subsequent cmdline (re-)updates then fail.
    When you remove the offending VIB, then cmdline is OK, but Lifecyle manager freaks out.
    So I guess I'll stay with cmdline updates until this is solved.
    Probably until this log message is no longer generated:
    Limiting the blanket i40en replace relation in VIB VMW_bootbank_i40enu_1.8.1.136-1vmw.702.0.0.17867351

    Messy.


    Jan 28 2022 Update

    With Jan 27th's release of 7.0u3c, I've archived this paragraph that was originally up top:

    WARNING - VMware vSphere 7.0 Update 3 was released on Oct 5 2021, but was pulled on Nov 18 2021, all the details at TinkerTry here. The below ESXCLI command for 7.0U3b still works, so VMware hasn't pulled ESXi-7.0U3b-18905247-standard from their repository, at least not yet.

    VMware-KB-2143832-crop-from-Jan-06-2022
    Partial screenshot of VMware KB 2143832 on Jan 06 2022, click/tap to view the full article.

    Oct 16 2022 Update

    I tried using the ESXCLI method to upgrade my ESXi 7.0U3 host to 8.0, but sadly, I get this unexpected error:

    esxcli software profile update -p ESXi-8.0.0-20513097-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml --no-hardware-warning
     [VibDownloadError]
     Unable to download from any URLs: ('https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/esx/vmw/vib20/rd1173-esxio/VMW_bootbank_rd1173-esxio_0.1-1vmw.800.1.0.20513097.vib', '/var/vmware/lifecycle/hostSeed/esxioCachedVibs/VMW_bootbank_rd1173-esxio_0.1-1vmw.800.1.0.20513097.vib', '<urlopen error [Errno 113] No route to host>')
            url = https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/esx/vmw/vib20/rd1173-esxio/VMW_bootbank_rd1173-esxio_0.1-1vmw.800.1.0.20513097.vib
      localfile = /var/vmware/lifecycle/hostSeed/esxioCachedVibs/VMW_bootbank_rd1173-esxio_0.1-1vmw.800.1.0.20513097.vib
     Please refer to the log file for more details.

    While it seems to find the repo just fine, something goes sideways after that, I'm just not sure what quite yet. I'll likely try again tomorrow...


    Apr 21 2023 Update

    Archive from 2022:
    *My ESXi 8.0 testing is underway on my Xeon D-1541 system, bumping into an issue during my Oct 16 2022 attempt at 8, but getting past it quickly, thanks to TinkerTry reader Joe's comment. It's been going well ever since, patching to 8.0a was easy too. See also VMware's article to help you get ready, explained in my Prepare for VMware vSphere 8.0 / vSphere.Next by reading updated KB 85685 "SD card/USB boot device revised guidance" article.


    See also at TinkerTry

    clone-esxi-with-usb-image-tool

    vmug-advantage-has-esxi-and-vcsa-6-7-with-365-day-keys

    easy-update-to-vcsa-67

    downloadvsphere67

    how-to-install-esxi-on-xeon-d-1500-supermicro-superserver

    easy-update-to-esxi-65u1-20180304001-standard

    supermicro-superservers-vcg-updated-to-65u1

    supermicro-sys-e300-9d-superserver-is-the-only-xeon-d-2100-for-home-labs

    meltdown-and-spectre-info

    check-nvme-ssd-firmware

    my-vmwares-you-either-are-not-entitled-or-do-not-have-permissions-to-download-this-product-error-and-what-to-do-about-it

    superservers


    See also

    vsphere-esxi-67-upgrade-guide
    • VMware ESXi Upgrade

      Upgrading Hosts That Have Third-Party Custom VIBs
      A host can have custom vSphere installation bundles (VIBs) installed, for example, for third-party drivers or management agents. When you upgrade an ESXi host to 6.7, all supported custom VIBs are migrated, regardless of whether the VIBs are included in the installer ISO.
      If the host or the installer ISO image contains a VIB that creates a conflict and prevents the upgrade, an error message identifies the VIB that created the conflict. To upgrade the host, take one of the following actions:

      • Remove the VIB that created the conflict from the host and retry the upgrade. If you are using vSphere Update Manager, select the option to remove third-party software modules during the remediation process. For more information, see the Installing and Administering VMware vSphere Update Manager documentation. You can also remove the VIB that created the conflict from the host by using esxcli commands. For more information, see Remove VIBs from a Host.

      • Use the vSphere ESXi Image Builder CLI to create a custom installer ISO image that resolves the conflict. For more information about vSphere ESXi Image Builder CLI installation and usage, see the vCenter Server Installation and Setup documentation.

    GUID-FE668788-1F32-4CB2-845C-5547DD59EB48-cropped

    which hasn't been updated for 6.7, but holds valuable information.

    ESXi-6.5.0

    There is no 6.7 version of this document yet.

    GUID-E51C5DB6-F28E-42E8-ACA4-0EBDD11DF55D

    Upgrade Log

    Below, I've pasted the full text of my update. It will help you see what drivers are touched. Just use the horizontal scroll bar or shift + mousewheel to look around, and Ctrl+F to Find stuff quickly:

    As also seen in my video, here's the full contents of my ssh session, as I completed my Xeon D-1541 upgrade from a fresh install of 6.5 that was from the original ISO, using no 3rd party VIBs:

    Version: 6.5.0 (Build 4564106)
    to:
    Version: 6.7.0 (Build 9484548)

    login as: root
    Using keyboard-interactive authentication.
    Password:
    The time and date of this login have been sent to the system logs.
    
    VMware offers supported, powerful system administration tools.  Please
    see www.vmware.com/go/sysadmintools for details.
    
    The ESXi Shell can be disabled by an administrative user. See the
    vSphere Security documentation for more information.
    [root@xd-1541-5028d:~] esxcli network firewall ruleset set -e true -r httpClient
    [root@xd-1541-5028d:~] esxcli software profile update -p ESXi-6.7.0-20180804001-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml --dry-run
    Update Result
       Message: Dryrun only, host not changed. The following installers will be applied: [BootBankInstaller, LockerInstaller]
       Reboot Required: true
       VIBs Installed: VMW_bootbank_ata-libata-92_3.00.9.2-16vmw.670.0.0.8169922, VMW_bootbank_ata-pata-amd_0.3.10-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-atiixp_0.4.6-4vmw.670.0.0.8169922, VMW_bootbank_ata-pata-cmd64x_0.2.5-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-hpt3x2n_0.3.4-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-pdc2027x_1.0-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-serverworks_0.4.3-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-sil680_0.4.8-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-via_0.3.3-2vmw.670.0.0.8169922, VMW_bootbank_block-cciss_3.6.14-10vmw.670.0.0.8169922, VMW_bootbank_bnxtnet_20.6.101.7-11vmw.670.0.0.8169922, VMW_bootbank_brcmfcoe_11.4.1078.0-8vmw.670.0.0.8169922, VMW_bootbank_char-random_1.0-3vmw.670.0.0.8169922, VMW_bootbank_ehci-ehci-hcd_1.0-4vmw.670.0.0.8169922, VMW_bootbank_elxiscsi_11.4.1174.0-2vmw.670.0.0.8169922, VMW_bootbank_elxnet_11.4.1094.0-5vmw.670.0.0.8169922, VMW_bootbank_hid-hid_1.0-3vmw.670.0.0.8169922, VMW_bootbank_i40en_1.3.1-18vmw.670.0.0.8169922, VMW_bootbank_iavmd_1.2.0.1011-2vmw.670.0.0.8169922, VMW_bootbank_igbn_0.1.0.0-15vmw.670.0.0.8169922, VMW_bootbank_ima-qla4xxx_2.02.18-1vmw.670.0.0.8169922, VMW_bootbank_ipmi-ipmi-devintf_39.1-4vmw.670.0.0.8169922, VMW_bootbank_ipmi-ipmi-msghandler_39.1-4vmw.670.0.0.8169922, VMW_bootbank_ipmi-ipmi-si-drv_39.1-4vmw.670.0.0.8169922, VMW_bootbank_iser_1.0.0.0-1vmw.670.0.0.8169922, VMW_bootbank_ixgben_1.4.1-11vmw.670.0.0.8169922, VMW_bootbank_lpfc_11.4.33.1-6vmw.670.0.0.8169922, VMW_bootbank_lpnic_11.4.59.0-1vmw.670.0.0.8169922, VMW_bootbank_lsi-mr3_7.702.13.00-4vmw.670.0.0.8169922, VMW_bootbank_lsi-msgpt2_20.00.04.00-4vmw.670.0.0.8169922, VMW_bootbank_lsi-msgpt35_03.00.01.00-10vmw.670.0.0.8169922, VMW_bootbank_lsi-msgpt3_16.00.01.00-1vmw.670.0.0.8169922, VMW_bootbank_misc-cnic-register_1.78.75.v60.7-1vmw.670.0.0.8169922, VMW_bootbank_misc-drivers_6.7.0-0.0.8169922, VMW_bootbank_mtip32xx-native_3.9.6-1vmw.670.0.0.8169922, VMW_bootbank_ne1000_0.8.3-4vmw.670.0.0.8169922, VMW_bootbank_nenic_1.0.11.0-1vmw.670.0.0.8169922, VMW_bootbank_net-bnx2_2.2.4f.v60.10-2vmw.670.0.0.8169922, VMW_bootbank_net-bnx2x_1.78.80.v60.12-2vmw.670.0.0.8169922, VMW_bootbank_net-cdc-ether_1.0-3vmw.670.0.0.8169922, VMW_bootbank_net-cnic_1.78.76.v60.13-2vmw.670.0.0.8169922, VMW_bootbank_net-e1000_8.0.3.1-5vmw.670.0.0.8169922, VMW_bootbank_net-e1000e_3.2.2.1-2vmw.670.0.0.8169922, VMW_bootbank_net-enic_2.1.2.38-2vmw.670.0.0.8169922, VMW_bootbank_net-fcoe_1.0.29.9.3-7vmw.670.0.0.8169922, VMW_bootbank_net-forcedeth_0.61-2vmw.670.0.0.8169922, VMW_bootbank_net-igb_5.0.5.1.1-5vmw.670.0.0.8169922, VMW_bootbank_net-ixgbe_3.7.13.7.14iov-20vmw.670.0.0.8169922, VMW_bootbank_net-libfcoe-92_1.0.24.9.4-8vmw.670.0.0.8169922, VMW_bootbank_net-mlx4-core_1.9.7.0-1vmw.670.0.0.8169922, VMW_bootbank_net-mlx4-en_1.9.7.0-1vmw.670.0.0.8169922, VMW_bootbank_net-nx-nic_5.0.621-5vmw.670.0.0.8169922, VMW_bootbank_net-tg3_3.131d.v60.4-2vmw.670.0.0.8169922, VMW_bootbank_net-usbnet_1.0-3vmw.670.0.0.8169922, VMW_bootbank_net-vmxnet3_1.1.3.0-3vmw.670.0.0.8169922, VMW_bootbank_nhpsa_2.0.22-1vmw.670.0.0.8169922, VMW_bootbank_nmlx4-core_3.17.9.12-1vmw.670.0.0.8169922, VMW_bootbank_nmlx4-en_3.17.9.12-1vmw.670.0.0.8169922, VMW_bootbank_nmlx4-rdma_3.17.9.12-1vmw.670.0.0.8169922, VMW_bootbank_nmlx5-core_4.17.9.12-1vmw.670.0.0.8169922, VMW_bootbank_nmlx5-rdma_4.17.9.12-1vmw.670.0.0.8169922, VMW_bootbank_ntg3_4.1.3.0-1vmw.670.0.0.8169922, VMW_bootbank_nvme_1.2.1.34-1vmw.670.0.0.8169922, VMW_bootbank_nvmxnet3-ens_2.0.0.21-1vmw.670.0.0.8169922, VMW_bootbank_nvmxnet3_2.0.0.27-1vmw.670.0.0.8169922, VMW_bootbank_ohci-usb-ohci_1.0-3vmw.670.0.0.8169922, VMW_bootbank_pvscsi_0.1-2vmw.670.0.0.8169922, VMW_bootbank_qcnic_1.0.2.0.4-1vmw.670.0.0.8169922, VMW_bootbank_qedentv_2.0.6.4-10vmw.670.0.17.9214924, VMW_bootbank_qfle3_1.0.50.11-9vmw.670.0.0.8169922, VMW_bootbank_qfle3f_1.0.25.0.2-14vmw.670.0.0.8169922, VMW_bootbank_qfle3i_1.0.2.3.9-3vmw.670.0.0.8169922, VMW_bootbank_qflge_1.1.0.11-1vmw.670.0.0.8169922, VMW_bootbank_sata-ahci_3.0-26vmw.670.0.0.8169922, VMW_bootbank_sata-ata-piix_2.12-10vmw.670.0.0.8169922, VMW_bootbank_sata-sata-nv_3.5-4vmw.670.0.0.8169922, VMW_bootbank_sata-sata-promise_2.12-3vmw.670.0.0.8169922, VMW_bootbank_sata-sata-sil24_1.1-1vmw.670.0.0.8169922, VMW_bootbank_sata-sata-sil_2.3-4vmw.670.0.0.8169922, VMW_bootbank_sata-sata-svw_2.3-3vmw.670.0.0.8169922, VMW_bootbank_scsi-aacraid_1.1.5.1-9vmw.670.0.0.8169922, VMW_bootbank_scsi-adp94xx_1.0.8.12-6vmw.670.0.0.8169922, VMW_bootbank_scsi-aic79xx_3.1-6vmw.670.0.0.8169922, VMW_bootbank_scsi-bnx2fc_1.78.78.v60.8-1vmw.670.0.0.8169922, VMW_bootbank_scsi-bnx2i_2.78.76.v60.8-1vmw.670.0.0.8169922, VMW_bootbank_scsi-fnic_1.5.0.45-3vmw.670.0.0.8169922, VMW_bootbank_scsi-hpsa_6.0.0.84-3vmw.670.0.0.8169922, VMW_bootbank_scsi-ips_7.12.05-4vmw.670.0.0.8169922, VMW_bootbank_scsi-iscsi-linux-92_1.0.0.2-3vmw.670.0.0.8169922, VMW_bootbank_scsi-libfc-92_1.0.40.9.3-5vmw.670.0.0.8169922, VMW_bootbank_scsi-megaraid-mbox_2.20.5.1-6vmw.670.0.0.8169922, VMW_bootbank_scsi-megaraid-sas_6.603.55.00-2vmw.670.0.0.8169922, VMW_bootbank_scsi-megaraid2_2.00.4-9vmw.670.0.0.8169922, VMW_bootbank_scsi-mpt2sas_19.00.00.00-2vmw.670.0.0.8169922, VMW_bootbank_scsi-mptsas_4.23.01.00-10vmw.670.0.0.8169922, VMW_bootbank_scsi-mptspi_4.23.01.00-10vmw.670.0.0.8169922, VMW_bootbank_scsi-qla4xxx_5.01.03.2-7vmw.670.0.0.8169922, VMW_bootbank_shim-iscsi-linux-9-2-1-0_6.7.0-0.0.8169922, VMW_bootbank_shim-iscsi-linux-9-2-2-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libata-9-2-1-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libata-9-2-2-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libfc-9-2-1-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libfc-9-2-2-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libfcoe-9-2-1-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libfcoe-9-2-2-0_6.7.0-0.0.8169922, VMW_bootbank_shim-vmklinux-9-2-1-0_6.7.0-0.0.8169922, VMW_bootbank_shim-vmklinux-9-2-2-0_6.7.0-0.0.8169922, VMW_bootbank_shim-vmklinux-9-2-3-0_6.7.0-0.0.8169922, VMW_bootbank_smartpqi_1.0.1.553-10vmw.670.0.0.8169922, VMW_bootbank_uhci-usb-uhci_1.0-3vmw.670.0.0.8169922, VMW_bootbank_usb-storage-usb-storage_1.0-3vmw.670.0.0.8169922, VMW_bootbank_usbcore-usb_1.0-3vmw.670.0.0.8169922, VMW_bootbank_vmkata_0.1-1vmw.670.0.0.8169922, VMW_bootbank_vmkfcoe_1.0.0.0-1vmw.670.0.0.8169922, VMW_bootbank_vmkplexer-vmkplexer_6.7.0-0.0.8169922, VMW_bootbank_vmkusb_0.1-1vmw.670.0.0.8169922, VMW_bootbank_vmw-ahci_1.2.0-6vmw.670.0.0.8169922, VMW_bootbank_xhci-xhci_1.0-3vmw.670.0.0.8169922, VMware_bootbank_cpu-microcode_6.7.0-0.20.9484548, VMware_bootbank_elx-esx-libelxima.so_11.4.1184.0-0.0.8169922, VMware_bootbank_esx-base_6.7.0-0.20.9484548, VMware_bootbank_esx-dvfilter-generic-fastpath_6.7.0-0.0.8169922, VMware_bootbank_esx-ui_1.25.1-9210161, VMware_bootbank_esx-xserver_6.7.0-0.0.8169922, VMware_bootbank_lsu-hp-hpsa-plugin_2.0.0-13vmw.670.0.0.8169922, VMware_bootbank_lsu-lsi-lsi-mr3-plugin_1.0.0-12vmw.670.0.0.8169922, VMware_bootbank_lsu-lsi-lsi-msgpt3-plugin_1.0.0-8vmw.670.0.0.8169922, VMware_bootbank_lsu-lsi-megaraid-sas-plugin_1.0.0-9vmw.670.0.0.8169922, VMware_bootbank_lsu-lsi-mpt2sas-plugin_2.0.0-7vmw.670.0.0.8169922, VMware_bootbank_native-misc-drivers_6.7.0-0.0.8169922, VMware_bootbank_qlnativefc_3.0.1.0-5vmw.670.0.0.8169922, VMware_bootbank_rste_2.0.2.0088-7vmw.670.0.0.8169922, VMware_bootbank_vmware-esx-esxcli-nvme-plugin_1.2.0.32-0.0.8169922, VMware_bootbank_vsan_6.7.0-0.20.9484548, VMware_bootbank_vsanhealth_6.7.0-0.20.9484548, VMware_locker_tools-light_10.2.1.8267844-8941472
       VIBs Removed: VMW_bootbank_ata-libata-92_3.00.9.2-16vmw.650.0.0.4564106, VMW_bootbank_ata-pata-amd_0.3.10-3vmw.650.0.0.4564106, VMW_bootbank_ata-pata-atiixp_0.4.6-4vmw.650.0.0.4564106, VMW_bootbank_ata-pata-cmd64x_0.2.5-3vmw.650.0.0.4564106, VMW_bootbank_ata-pata-hpt3x2n_0.3.4-3vmw.650.0.0.4564106, VMW_bootbank_ata-pata-pdc2027x_1.0-3vmw.650.0.0.4564106, VMW_bootbank_ata-pata-serverworks_0.4.3-3vmw.650.0.0.4564106, VMW_bootbank_ata-pata-sil680_0.4.8-3vmw.650.0.0.4564106, VMW_bootbank_ata-pata-via_0.3.3-2vmw.650.0.0.4564106, VMW_bootbank_block-cciss_3.6.14-10vmw.650.0.0.4564106, VMW_bootbank_char-random_1.0-3vmw.650.0.0.4564106, VMW_bootbank_ehci-ehci-hcd_1.0-3vmw.650.0.0.4564106, VMW_bootbank_elxnet_11.1.91.0-1vmw.650.0.0.4564106, VMW_bootbank_hid-hid_1.0-3vmw.650.0.0.4564106, VMW_bootbank_i40en_1.1.0-1vmw.650.0.0.4564106, VMW_bootbank_igbn_0.1.0.0-12vmw.650.0.0.4564106, VMW_bootbank_ima-qla4xxx_2.02.18-1vmw.650.0.0.4564106, VMW_bootbank_ipmi-ipmi-devintf_39.1-4vmw.650.0.0.4564106, VMW_bootbank_ipmi-ipmi-msghandler_39.1-4vmw.650.0.0.4564106, VMW_bootbank_ipmi-ipmi-si-drv_39.1-4vmw.650.0.0.4564106, VMW_bootbank_ixgben_1.0.0.0-8vmw.650.0.0.4564106, VMW_bootbank_lpfc_11.1.0.6-1vmw.650.0.0.4564106, VMW_bootbank_lsi-mr3_6.910.18.00-1vmw.650.0.0.4564106, VMW_bootbank_lsi-msgpt2_20.00.01.00-3vmw.650.0.0.4564106, VMW_bootbank_lsi-msgpt3_12.00.02.00-11vmw.650.0.0.4564106, VMW_bootbank_misc-cnic-register_1.78.75.v60.7-1vmw.650.0.0.4564106, VMW_bootbank_misc-drivers_6.5.0-0.0.4564106, VMW_bootbank_mtip32xx-native_3.9.5-1vmw.650.0.0.4564106, VMW_bootbank_ne1000_0.8.0-9vmw.650.0.0.4564106, VMW_bootbank_nenic_1.0.0.2-1vmw.650.0.0.4564106, VMW_bootbank_net-bnx2_2.2.4f.v60.10-2vmw.650.0.0.4564106, VMW_bootbank_net-bnx2x_1.78.80.v60.12-1vmw.650.0.0.4564106, VMW_bootbank_net-cdc-ether_1.0-3vmw.650.0.0.4564106, VMW_bootbank_net-cnic_1.78.76.v60.13-2vmw.650.0.0.4564106, VMW_bootbank_net-e1000_8.0.3.1-5vmw.650.0.0.4564106, VMW_bootbank_net-e1000e_3.2.2.1-2vmw.650.0.0.4564106, VMW_bootbank_net-enic_2.1.2.38-2vmw.650.0.0.4564106, VMW_bootbank_net-fcoe_1.0.29.9.3-7vmw.650.0.0.4564106, VMW_bootbank_net-forcedeth_0.61-2vmw.650.0.0.4564106, VMW_bootbank_net-igb_5.0.5.1.1-5vmw.650.0.0.4564106, VMW_bootbank_net-ixgbe_3.7.13.7.14iov-20vmw.650.0.0.4564106, VMW_bootbank_net-libfcoe-92_1.0.24.9.4-8vmw.650.0.0.4564106, VMW_bootbank_net-mlx4-core_1.9.7.0-1vmw.650.0.0.4564106, VMW_bootbank_net-mlx4-en_1.9.7.0-1vmw.650.0.0.4564106, VMW_bootbank_net-nx-nic_5.0.621-5vmw.650.0.0.4564106, VMW_bootbank_net-tg3_3.131d.v60.4-2vmw.650.0.0.4564106, VMW_bootbank_net-usbnet_1.0-3vmw.650.0.0.4564106, VMW_bootbank_net-vmxnet3_1.1.3.0-3vmw.650.0.0.4564106, VMW_bootbank_nhpsa_2.0.6-3vmw.650.0.0.4564106, VMW_bootbank_nmlx4-core_3.16.0.0-1vmw.650.0.0.4564106, VMW_bootbank_nmlx4-en_3.16.0.0-1vmw.650.0.0.4564106, VMW_bootbank_nmlx4-rdma_3.16.0.0-1vmw.650.0.0.4564106, VMW_bootbank_nmlx5-core_4.16.0.0-1vmw.650.0.0.4564106, VMW_bootbank_ntg3_4.1.0.0-1vmw.650.0.0.4564106, VMW_bootbank_nvme_1.2.0.32-2vmw.650.0.0.4564106, VMW_bootbank_nvmxnet3_2.0.0.22-1vmw.650.0.0.4564106, VMW_bootbank_ohci-usb-ohci_1.0-3vmw.650.0.0.4564106, VMW_bootbank_pvscsi_0.1-1vmw.650.0.0.4564106, VMW_bootbank_qedentv_2.0.3.29-1vmw.650.0.0.4564106, VMW_bootbank_qfle3_1.0.2.7-1vmw.650.0.0.4564106, VMW_bootbank_qflge_1.1.0.3-1vmw.650.0.0.4564106, VMW_bootbank_qlnativefc_2.1.30.0-11vmw.650.0.0.4564106, VMW_bootbank_sata-ahci_3.0-22vmw.650.0.0.4564106, VMW_bootbank_sata-ata-piix_2.12-10vmw.650.0.0.4564106, VMW_bootbank_sata-sata-nv_3.5-4vmw.650.0.0.4564106, VMW_bootbank_sata-sata-promise_2.12-3vmw.650.0.0.4564106, VMW_bootbank_sata-sata-sil24_1.1-1vmw.650.0.0.4564106, VMW_bootbank_sata-sata-sil_2.3-4vmw.650.0.0.4564106, VMW_bootbank_sata-sata-svw_2.3-3vmw.650.0.0.4564106, VMW_bootbank_scsi-aacraid_1.1.5.1-9vmw.650.0.0.4564106, VMW_bootbank_scsi-adp94xx_1.0.8.12-6vmw.650.0.0.4564106, VMW_bootbank_scsi-aic79xx_3.1-5vmw.650.0.0.4564106, VMW_bootbank_scsi-bnx2fc_1.78.78.v60.8-1vmw.650.0.0.4564106, VMW_bootbank_scsi-bnx2i_2.78.76.v60.8-1vmw.650.0.0.4564106, VMW_bootbank_scsi-fnic_1.5.0.45-3vmw.650.0.0.4564106, VMW_bootbank_scsi-hpsa_6.0.0.84-1vmw.650.0.0.4564106, VMW_bootbank_scsi-ips_7.12.05-4vmw.650.0.0.4564106, VMW_bootbank_scsi-iscsi-linux-92_1.0.0.2-3vmw.650.0.0.4564106, VMW_bootbank_scsi-libfc-92_1.0.40.9.3-5vmw.650.0.0.4564106, VMW_bootbank_scsi-megaraid-mbox_2.20.5.1-6vmw.650.0.0.4564106, VMW_bootbank_scsi-megaraid-sas_6.603.55.00-2vmw.650.0.0.4564106, VMW_bootbank_scsi-megaraid2_2.00.4-9vmw.650.0.0.4564106, VMW_bootbank_scsi-mpt2sas_19.00.00.00-1vmw.650.0.0.4564106, VMW_bootbank_scsi-mptsas_4.23.01.00-10vmw.650.0.0.4564106, VMW_bootbank_scsi-mptspi_4.23.01.00-10vmw.650.0.0.4564106, VMW_bootbank_scsi-qla4xxx_5.01.03.2-7vmw.650.0.0.4564106, VMW_bootbank_shim-iscsi-linux-9-2-1-0_6.5.0-0.0.4564106, VMW_bootbank_shim-iscsi-linux-9-2-2-0_6.5.0-0.0.4564106, VMW_bootbank_shim-libata-9-2-1-0_6.5.0-0.0.4564106, VMW_bootbank_shim-libata-9-2-2-0_6.5.0-0.0.4564106, VMW_bootbank_shim-libfc-9-2-1-0_6.5.0-0.0.4564106, VMW_bootbank_shim-libfc-9-2-2-0_6.5.0-0.0.4564106, VMW_bootbank_shim-libfcoe-9-2-1-0_6.5.0-0.0.4564106, VMW_bootbank_shim-libfcoe-9-2-2-0_6.5.0-0.0.4564106, VMW_bootbank_shim-vmklinux-9-2-1-0_6.5.0-0.0.4564106, VMW_bootbank_shim-vmklinux-9-2-2-0_6.5.0-0.0.4564106, VMW_bootbank_shim-vmklinux-9-2-3-0_6.5.0-0.0.4564106, VMW_bootbank_uhci-usb-uhci_1.0-3vmw.650.0.0.4564106, VMW_bootbank_usb-storage-usb-storage_1.0-3vmw.650.0.0.4564106, VMW_bootbank_usbcore-usb_1.0-3vmw.650.0.0.4564106, VMW_bootbank_vmkata_0.1-1vmw.650.0.0.4564106, VMW_bootbank_vmkplexer-vmkplexer_6.5.0-0.0.4564106, VMW_bootbank_vmkusb_0.1-1vmw.650.0.0.4564106, VMW_bootbank_vmw-ahci_1.0.0-32vmw.650.0.0.4564106, VMW_bootbank_xhci-xhci_1.0-3vmw.650.0.0.4564106, VMware_bootbank_cpu-microcode_6.5.0-0.0.4564106, VMware_bootbank_emulex-esx-elxnetcli_11.1.28.0-0.0.4564106, VMware_bootbank_esx-base_6.5.0-0.0.4564106, VMware_bootbank_esx-dvfilter-generic-fastpath_6.5.0-0.0.4564106, VMware_bootbank_esx-tboot_6.5.0-0.0.4564106, VMware_bootbank_esx-ui_1.8.0-4516221, VMware_bootbank_esx-xserver_6.5.0-0.0.4564106, VMware_bootbank_lsu-hp-hpsa-plugin_2.0.0-3vmw.650.0.0.4564106, VMware_bootbank_lsu-lsi-lsi-mr3-plugin_1.0.0-7vmw.650.0.0.4564106, VMware_bootbank_lsu-lsi-lsi-msgpt3-plugin_1.0.0-6vmw.650.0.0.4564106, VMware_bootbank_lsu-lsi-megaraid-sas-plugin_1.0.0-7vmw.650.0.0.4564106, VMware_bootbank_lsu-lsi-mpt2sas-plugin_2.0.0-5vmw.650.0.0.4564106, VMware_bootbank_native-misc-drivers_6.5.0-0.0.4564106, VMware_bootbank_rste_2.0.2.0088-4vmw.650.0.0.4564106, VMware_bootbank_vmware-esx-esxcli-nvme-plugin_1.2.0.10-0.0.4564106, VMware_bootbank_vsan_6.5.0-0.0.4564106, VMware_bootbank_vsanhealth_6.5.0-0.0.4564106, VMware_locker_tools-light_6.5.0-0.0.4564106
       VIBs Skipped:
    [root@xd-1541-5028d:~] esxcli software profile update -p ESXi-6.7.0-20180804001-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml
    Update Result
       Message: The update completed successfully, but the system needs to be rebooted for the changes to be effective.
       Reboot Required: true
       VIBs Installed: VMW_bootbank_ata-libata-92_3.00.9.2-16vmw.670.0.0.8169922, VMW_bootbank_ata-pata-amd_0.3.10-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-atiixp_0.4.6-4vmw.670.0.0.8169922, VMW_bootbank_ata-pata-cmd64x_0.2.5-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-hpt3x2n_0.3.4-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-pdc2027x_1.0-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-serverworks_0.4.3-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-sil680_0.4.8-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-via_0.3.3-2vmw.670.0.0.8169922, VMW_bootbank_block-cciss_3.6.14-10vmw.670.0.0.8169922, VMW_bootbank_bnxtnet_20.6.101.7-11vmw.670.0.0.8169922, VMW_bootbank_brcmfcoe_11.4.1078.0-8vmw.670.0.0.8169922, VMW_bootbank_char-random_1.0-3vmw.670.0.0.8169922, VMW_bootbank_ehci-ehci-hcd_1.0-4vmw.670.0.0.8169922, VMW_bootbank_elxiscsi_11.4.1174.0-2vmw.670.0.0.8169922, VMW_bootbank_elxnet_11.4.1094.0-5vmw.670.0.0.8169922, VMW_bootbank_hid-hid_1.0-3vmw.670.0.0.8169922, VMW_bootbank_i40en_1.3.1-18vmw.670.0.0.8169922, VMW_bootbank_iavmd_1.2.0.1011-2vmw.670.0.0.8169922, VMW_bootbank_igbn_0.1.0.0-15vmw.670.0.0.8169922, VMW_bootbank_ima-qla4xxx_2.02.18-1vmw.670.0.0.8169922, VMW_bootbank_ipmi-ipmi-devintf_39.1-4vmw.670.0.0.8169922, VMW_bootbank_ipmi-ipmi-msghandler_39.1-4vmw.670.0.0.8169922, VMW_bootbank_ipmi-ipmi-si-drv_39.1-4vmw.670.0.0.8169922, VMW_bootbank_iser_1.0.0.0-1vmw.670.0.0.8169922, VMW_bootbank_ixgben_1.4.1-11vmw.670.0.0.8169922, VMW_bootbank_lpfc_11.4.33.1-6vmw.670.0.0.8169922, VMW_bootbank_lpnic_11.4.59.0-1vmw.670.0.0.8169922, VMW_bootbank_lsi-mr3_7.702.13.00-4vmw.670.0.0.8169922, VMW_bootbank_lsi-msgpt2_20.00.04.00-4vmw.670.0.0.8169922, VMW_bootbank_lsi-msgpt35_03.00.01.00-10vmw.670.0.0.8169922, VMW_bootbank_lsi-msgpt3_16.00.01.00-1vmw.670.0.0.8169922, VMW_bootbank_misc-cnic-register_1.78.75.v60.7-1vmw.670.0.0.8169922, VMW_bootbank_misc-drivers_6.7.0-0.0.8169922, VMW_bootbank_mtip32xx-native_3.9.6-1vmw.670.0.0.8169922, VMW_bootbank_ne1000_0.8.3-4vmw.670.0.0.8169922, VMW_bootbank_nenic_1.0.11.0-1vmw.670.0.0.8169922, VMW_bootbank_net-bnx2_2.2.4f.v60.10-2vmw.670.0.0.8169922, VMW_bootbank_net-bnx2x_1.78.80.v60.12-2vmw.670.0.0.8169922, VMW_bootbank_net-cdc-ether_1.0-3vmw.670.0.0.8169922, VMW_bootbank_net-cnic_1.78.76.v60.13-2vmw.670.0.0.8169922, VMW_bootbank_net-e1000_8.0.3.1-5vmw.670.0.0.8169922, VMW_bootbank_net-e1000e_3.2.2.1-2vmw.670.0.0.8169922, VMW_bootbank_net-enic_2.1.2.38-2vmw.670.0.0.8169922, VMW_bootbank_net-fcoe_1.0.29.9.3-7vmw.670.0.0.8169922, VMW_bootbank_net-forcedeth_0.61-2vmw.670.0.0.8169922, VMW_bootbank_net-igb_5.0.5.1.1-5vmw.670.0.0.8169922, VMW_bootbank_net-ixgbe_3.7.13.7.14iov-20vmw.670.0.0.8169922, VMW_bootbank_net-libfcoe-92_1.0.24.9.4-8vmw.670.0.0.8169922, VMW_bootbank_net-mlx4-core_1.9.7.0-1vmw.670.0.0.8169922, VMW_bootbank_net-mlx4-en_1.9.7.0-1vmw.670.0.0.8169922, VMW_bootbank_net-nx-nic_5.0.621-5vmw.670.0.0.8169922, VMW_bootbank_net-tg3_3.131d.v60.4-2vmw.670.0.0.8169922, VMW_bootbank_net-usbnet_1.0-3vmw.670.0.0.8169922, VMW_bootbank_net-vmxnet3_1.1.3.0-3vmw.670.0.0.8169922, VMW_bootbank_nhpsa_2.0.22-1vmw.670.0.0.8169922, VMW_bootbank_nmlx4-core_3.17.9.12-1vmw.670.0.0.8169922, VMW_bootbank_nmlx4-en_3.17.9.12-1vmw.670.0.0.8169922, VMW_bootbank_nmlx4-rdma_3.17.9.12-1vmw.670.0.0.8169922, VMW_bootbank_nmlx5-core_4.17.9.12-1vmw.670.0.0.8169922, VMW_bootbank_nmlx5-rdma_4.17.9.12-1vmw.670.0.0.8169922, VMW_bootbank_ntg3_4.1.3.0-1vmw.670.0.0.8169922, VMW_bootbank_nvme_1.2.1.34-1vmw.670.0.0.8169922, VMW_bootbank_nvmxnet3-ens_2.0.0.21-1vmw.670.0.0.8169922, VMW_bootbank_nvmxnet3_2.0.0.27-1vmw.670.0.0.8169922, VMW_bootbank_ohci-usb-ohci_1.0-3vmw.670.0.0.8169922, VMW_bootbank_pvscsi_0.1-2vmw.670.0.0.8169922, VMW_bootbank_qcnic_1.0.2.0.4-1vmw.670.0.0.8169922, VMW_bootbank_qedentv_2.0.6.4-10vmw.670.0.17.9214924, VMW_bootbank_qfle3_1.0.50.11-9vmw.670.0.0.8169922, VMW_bootbank_qfle3f_1.0.25.0.2-14vmw.670.0.0.8169922, VMW_bootbank_qfle3i_1.0.2.3.9-3vmw.670.0.0.8169922, VMW_bootbank_qflge_1.1.0.11-1vmw.670.0.0.8169922, VMW_bootbank_sata-ahci_3.0-26vmw.670.0.0.8169922, VMW_bootbank_sata-ata-piix_2.12-10vmw.670.0.0.8169922, VMW_bootbank_sata-sata-nv_3.5-4vmw.670.0.0.8169922, VMW_bootbank_sata-sata-promise_2.12-3vmw.670.0.0.8169922, VMW_bootbank_sata-sata-sil24_1.1-1vmw.670.0.0.8169922, VMW_bootbank_sata-sata-sil_2.3-4vmw.670.0.0.8169922, VMW_bootbank_sata-sata-svw_2.3-3vmw.670.0.0.8169922, VMW_bootbank_scsi-aacraid_1.1.5.1-9vmw.670.0.0.8169922, VMW_bootbank_scsi-adp94xx_1.0.8.12-6vmw.670.0.0.8169922, VMW_bootbank_scsi-aic79xx_3.1-6vmw.670.0.0.8169922, VMW_bootbank_scsi-bnx2fc_1.78.78.v60.8-1vmw.670.0.0.8169922, VMW_bootbank_scsi-bnx2i_2.78.76.v60.8-1vmw.670.0.0.8169922, VMW_bootbank_scsi-fnic_1.5.0.45-3vmw.670.0.0.8169922, VMW_bootbank_scsi-hpsa_6.0.0.84-3vmw.670.0.0.8169922, VMW_bootbank_scsi-ips_7.12.05-4vmw.670.0.0.8169922, VMW_bootbank_scsi-iscsi-linux-92_1.0.0.2-3vmw.670.0.0.8169922, VMW_bootbank_scsi-libfc-92_1.0.40.9.3-5vmw.670.0.0.8169922, VMW_bootbank_scsi-megaraid-mbox_2.20.5.1-6vmw.670.0.0.8169922, VMW_bootbank_scsi-megaraid-sas_6.603.55.00-2vmw.670.0.0.8169922, VMW_bootbank_scsi-megaraid2_2.00.4-9vmw.670.0.0.8169922, VMW_bootbank_scsi-mpt2sas_19.00.00.00-2vmw.670.0.0.8169922, VMW_bootbank_scsi-mptsas_4.23.01.00-10vmw.670.0.0.8169922, VMW_bootbank_scsi-mptspi_4.23.01.00-10vmw.670.0.0.8169922, VMW_bootbank_scsi-qla4xxx_5.01.03.2-7vmw.670.0.0.8169922, VMW_bootbank_shim-iscsi-linux-9-2-1-0_6.7.0-0.0.8169922, VMW_bootbank_shim-iscsi-linux-9-2-2-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libata-9-2-1-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libata-9-2-2-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libfc-9-2-1-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libfc-9-2-2-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libfcoe-9-2-1-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libfcoe-9-2-2-0_6.7.0-0.0.8169922, VMW_bootbank_shim-vmklinux-9-2-1-0_6.7.0-0.0.8169922, VMW_bootbank_shim-vmklinux-9-2-2-0_6.7.0-0.0.8169922, VMW_bootbank_shim-vmklinux-9-2-3-0_6.7.0-0.0.8169922, VMW_bootbank_smartpqi_1.0.1.553-10vmw.670.0.0.8169922, VMW_bootbank_uhci-usb-uhci_1.0-3vmw.670.0.0.8169922, VMW_bootbank_usb-storage-usb-storage_1.0-3vmw.670.0.0.8169922, VMW_bootbank_usbcore-usb_1.0-3vmw.670.0.0.8169922, VMW_bootbank_vmkata_0.1-1vmw.670.0.0.8169922, VMW_bootbank_vmkfcoe_1.0.0.0-1vmw.670.0.0.8169922, VMW_bootbank_vmkplexer-vmkplexer_6.7.0-0.0.8169922, VMW_bootbank_vmkusb_0.1-1vmw.670.0.0.8169922, VMW_bootbank_vmw-ahci_1.2.0-6vmw.670.0.0.8169922, VMW_bootbank_xhci-xhci_1.0-3vmw.670.0.0.8169922, VMware_bootbank_cpu-microcode_6.7.0-0.20.9484548, VMware_bootbank_elx-esx-libelxima.so_11.4.1184.0-0.0.8169922, VMware_bootbank_esx-base_6.7.0-0.20.9484548, VMware_bootbank_esx-dvfilter-generic-fastpath_6.7.0-0.0.8169922, VMware_bootbank_esx-ui_1.25.1-9210161, VMware_bootbank_esx-xserver_6.7.0-0.0.8169922, VMware_bootbank_lsu-hp-hpsa-plugin_2.0.0-13vmw.670.0.0.8169922, VMware_bootbank_lsu-lsi-lsi-mr3-plugin_1.0.0-12vmw.670.0.0.8169922, VMware_bootbank_lsu-lsi-lsi-msgpt3-plugin_1.0.0-8vmw.670.0.0.8169922, VMware_bootbank_lsu-lsi-megaraid-sas-plugin_1.0.0-9vmw.670.0.0.8169922, VMware_bootbank_lsu-lsi-mpt2sas-plugin_2.0.0-7vmw.670.0.0.8169922, VMware_bootbank_native-misc-drivers_6.7.0-0.0.8169922, VMware_bootbank_qlnativefc_3.0.1.0-5vmw.670.0.0.8169922, VMware_bootbank_rste_2.0.2.0088-7vmw.670.0.0.8169922, VMware_bootbank_vmware-esx-esxcli-nvme-plugin_1.2.0.32-0.0.8169922, VMware_bootbank_vsan_6.7.0-0.20.9484548, VMware_bootbank_vsanhealth_6.7.0-0.20.9484548, VMware_locker_tools-light_10.2.1.8267844-8941472
       VIBs Removed: VMW_bootbank_ata-libata-92_3.00.9.2-16vmw.650.0.0.4564106, VMW_bootbank_ata-pata-amd_0.3.10-3vmw.650.0.0.4564106, VMW_bootbank_ata-pata-atiixp_0.4.6-4vmw.650.0.0.4564106, VMW_bootbank_ata-pata-cmd64x_0.2.5-3vmw.650.0.0.4564106, VMW_bootbank_ata-pata-hpt3x2n_0.3.4-3vmw.650.0.0.4564106, VMW_bootbank_ata-pata-pdc2027x_1.0-3vmw.650.0.0.4564106, VMW_bootbank_ata-pata-serverworks_0.4.3-3vmw.650.0.0.4564106, VMW_bootbank_ata-pata-sil680_0.4.8-3vmw.650.0.0.4564106, VMW_bootbank_ata-pata-via_0.3.3-2vmw.650.0.0.4564106, VMW_bootbank_block-cciss_3.6.14-10vmw.650.0.0.4564106, VMW_bootbank_char-random_1.0-3vmw.650.0.0.4564106, VMW_bootbank_ehci-ehci-hcd_1.0-3vmw.650.0.0.4564106, VMW_bootbank_elxnet_11.1.91.0-1vmw.650.0.0.4564106, VMW_bootbank_hid-hid_1.0-3vmw.650.0.0.4564106, VMW_bootbank_i40en_1.1.0-1vmw.650.0.0.4564106, VMW_bootbank_igbn_0.1.0.0-12vmw.650.0.0.4564106, VMW_bootbank_ima-qla4xxx_2.02.18-1vmw.650.0.0.4564106, VMW_bootbank_ipmi-ipmi-devintf_39.1-4vmw.650.0.0.4564106, VMW_bootbank_ipmi-ipmi-msghandler_39.1-4vmw.650.0.0.4564106, VMW_bootbank_ipmi-ipmi-si-drv_39.1-4vmw.650.0.0.4564106, VMW_bootbank_ixgben_1.0.0.0-8vmw.650.0.0.4564106, VMW_bootbank_lpfc_11.1.0.6-1vmw.650.0.0.4564106, VMW_bootbank_lsi-mr3_6.910.18.00-1vmw.650.0.0.4564106, VMW_bootbank_lsi-msgpt2_20.00.01.00-3vmw.650.0.0.4564106, VMW_bootbank_lsi-msgpt3_12.00.02.00-11vmw.650.0.0.4564106, VMW_bootbank_misc-cnic-register_1.78.75.v60.7-1vmw.650.0.0.4564106, VMW_bootbank_misc-drivers_6.5.0-0.0.4564106, VMW_bootbank_mtip32xx-native_3.9.5-1vmw.650.0.0.4564106, VMW_bootbank_ne1000_0.8.0-9vmw.650.0.0.4564106, VMW_bootbank_nenic_1.0.0.2-1vmw.650.0.0.4564106, VMW_bootbank_net-bnx2_2.2.4f.v60.10-2vmw.650.0.0.4564106, VMW_bootbank_net-bnx2x_1.78.80.v60.12-1vmw.650.0.0.4564106, VMW_bootbank_net-cdc-ether_1.0-3vmw.650.0.0.4564106, VMW_bootbank_net-cnic_1.78.76.v60.13-2vmw.650.0.0.4564106, VMW_bootbank_net-e1000_8.0.3.1-5vmw.650.0.0.4564106, VMW_bootbank_net-e1000e_3.2.2.1-2vmw.650.0.0.4564106, VMW_bootbank_net-enic_2.1.2.38-2vmw.650.0.0.4564106, VMW_bootbank_net-fcoe_1.0.29.9.3-7vmw.650.0.0.4564106, VMW_bootbank_net-forcedeth_0.61-2vmw.650.0.0.4564106, VMW_bootbank_net-igb_5.0.5.1.1-5vmw.650.0.0.4564106, VMW_bootbank_net-ixgbe_3.7.13.7.14iov-20vmw.650.0.0.4564106, VMW_bootbank_net-libfcoe-92_1.0.24.9.4-8vmw.650.0.0.4564106, VMW_bootbank_net-mlx4-core_1.9.7.0-1vmw.650.0.0.4564106, VMW_bootbank_net-mlx4-en_1.9.7.0-1vmw.650.0.0.4564106, VMW_bootbank_net-nx-nic_5.0.621-5vmw.650.0.0.4564106, VMW_bootbank_net-tg3_3.131d.v60.4-2vmw.650.0.0.4564106, VMW_bootbank_net-usbnet_1.0-3vmw.650.0.0.4564106, VMW_bootbank_net-vmxnet3_1.1.3.0-3vmw.650.0.0.4564106, VMW_bootbank_nhpsa_2.0.6-3vmw.650.0.0.4564106, VMW_bootbank_nmlx4-core_3.16.0.0-1vmw.650.0.0.4564106, VMW_bootbank_nmlx4-en_3.16.0.0-1vmw.650.0.0.4564106, VMW_bootbank_nmlx4-rdma_3.16.0.0-1vmw.650.0.0.4564106, VMW_bootbank_nmlx5-core_4.16.0.0-1vmw.650.0.0.4564106, VMW_bootbank_ntg3_4.1.0.0-1vmw.650.0.0.4564106, VMW_bootbank_nvme_1.2.0.32-2vmw.650.0.0.4564106, VMW_bootbank_nvmxnet3_2.0.0.22-1vmw.650.0.0.4564106, VMW_bootbank_ohci-usb-ohci_1.0-3vmw.650.0.0.4564106, VMW_bootbank_pvscsi_0.1-1vmw.650.0.0.4564106, VMW_bootbank_qedentv_2.0.3.29-1vmw.650.0.0.4564106, VMW_bootbank_qfle3_1.0.2.7-1vmw.650.0.0.4564106, VMW_bootbank_qflge_1.1.0.3-1vmw.650.0.0.4564106, VMW_bootbank_qlnativefc_2.1.30.0-11vmw.650.0.0.4564106, VMW_bootbank_sata-ahci_3.0-22vmw.650.0.0.4564106, VMW_bootbank_sata-ata-piix_2.12-10vmw.650.0.0.4564106, VMW_bootbank_sata-sata-nv_3.5-4vmw.650.0.0.4564106, VMW_bootbank_sata-sata-promise_2.12-3vmw.650.0.0.4564106, VMW_bootbank_sata-sata-sil24_1.1-1vmw.650.0.0.4564106, VMW_bootbank_sata-sata-sil_2.3-4vmw.650.0.0.4564106, VMW_bootbank_sata-sata-svw_2.3-3vmw.650.0.0.4564106, VMW_bootbank_scsi-aacraid_1.1.5.1-9vmw.650.0.0.4564106, VMW_bootbank_scsi-adp94xx_1.0.8.12-6vmw.650.0.0.4564106, VMW_bootbank_scsi-aic79xx_3.1-5vmw.650.0.0.4564106, VMW_bootbank_scsi-bnx2fc_1.78.78.v60.8-1vmw.650.0.0.4564106, VMW_bootbank_scsi-bnx2i_2.78.76.v60.8-1vmw.650.0.0.4564106, VMW_bootbank_scsi-fnic_1.5.0.45-3vmw.650.0.0.4564106, VMW_bootbank_scsi-hpsa_6.0.0.84-1vmw.650.0.0.4564106, VMW_bootbank_scsi-ips_7.12.05-4vmw.650.0.0.4564106, VMW_bootbank_scsi-iscsi-linux-92_1.0.0.2-3vmw.650.0.0.4564106, VMW_bootbank_scsi-libfc-92_1.0.40.9.3-5vmw.650.0.0.4564106, VMW_bootbank_scsi-megaraid-mbox_2.20.5.1-6vmw.650.0.0.4564106, VMW_bootbank_scsi-megaraid-sas_6.603.55.00-2vmw.650.0.0.4564106, VMW_bootbank_scsi-megaraid2_2.00.4-9vmw.650.0.0.4564106, VMW_bootbank_scsi-mpt2sas_19.00.00.00-1vmw.650.0.0.4564106, VMW_bootbank_scsi-mptsas_4.23.01.00-10vmw.650.0.0.4564106, VMW_bootbank_scsi-mptspi_4.23.01.00-10vmw.650.0.0.4564106, VMW_bootbank_scsi-qla4xxx_5.01.03.2-7vmw.650.0.0.4564106, VMW_bootbank_shim-iscsi-linux-9-2-1-0_6.5.0-0.0.4564106, VMW_bootbank_shim-iscsi-linux-9-2-2-0_6.5.0-0.0.4564106, VMW_bootbank_shim-libata-9-2-1-0_6.5.0-0.0.4564106, VMW_bootbank_shim-libata-9-2-2-0_6.5.0-0.0.4564106, VMW_bootbank_shim-libfc-9-2-1-0_6.5.0-0.0.4564106, VMW_bootbank_shim-libfc-9-2-2-0_6.5.0-0.0.4564106, VMW_bootbank_shim-libfcoe-9-2-1-0_6.5.0-0.0.4564106, VMW_bootbank_shim-libfcoe-9-2-2-0_6.5.0-0.0.4564106, VMW_bootbank_shim-vmklinux-9-2-1-0_6.5.0-0.0.4564106, VMW_bootbank_shim-vmklinux-9-2-2-0_6.5.0-0.0.4564106, VMW_bootbank_shim-vmklinux-9-2-3-0_6.5.0-0.0.4564106, VMW_bootbank_uhci-usb-uhci_1.0-3vmw.650.0.0.4564106, VMW_bootbank_usb-storage-usb-storage_1.0-3vmw.650.0.0.4564106, VMW_bootbank_usbcore-usb_1.0-3vmw.650.0.0.4564106, VMW_bootbank_vmkata_0.1-1vmw.650.0.0.4564106, VMW_bootbank_vmkplexer-vmkplexer_6.5.0-0.0.4564106, VMW_bootbank_vmkusb_0.1-1vmw.650.0.0.4564106, VMW_bootbank_vmw-ahci_1.0.0-32vmw.650.0.0.4564106, VMW_bootbank_xhci-xhci_1.0-3vmw.650.0.0.4564106, VMware_bootbank_cpu-microcode_6.5.0-0.0.4564106, VMware_bootbank_emulex-esx-elxnetcli_11.1.28.0-0.0.4564106, VMware_bootbank_esx-base_6.5.0-0.0.4564106, VMware_bootbank_esx-dvfilter-generic-fastpath_6.5.0-0.0.4564106, VMware_bootbank_esx-tboot_6.5.0-0.0.4564106, VMware_bootbank_esx-ui_1.8.0-4516221, VMware_bootbank_esx-xserver_6.5.0-0.0.4564106, VMware_bootbank_lsu-hp-hpsa-plugin_2.0.0-3vmw.650.0.0.4564106, VMware_bootbank_lsu-lsi-lsi-mr3-plugin_1.0.0-7vmw.650.0.0.4564106, VMware_bootbank_lsu-lsi-lsi-msgpt3-plugin_1.0.0-6vmw.650.0.0.4564106, VMware_bootbank_lsu-lsi-megaraid-sas-plugin_1.0.0-7vmw.650.0.0.4564106, VMware_bootbank_lsu-lsi-mpt2sas-plugin_2.0.0-5vmw.650.0.0.4564106, VMware_bootbank_native-misc-drivers_6.5.0-0.0.4564106, VMware_bootbank_rste_2.0.2.0088-4vmw.650.0.0.4564106, VMware_bootbank_vmware-esx-esxcli-nvme-plugin_1.2.0.10-0.0.4564106, VMware_bootbank_vsan_6.5.0-0.0.4564106, VMware_bootbank_vsanhealth_6.5.0-0.0.4564106, VMware_locker_tools-light_6.5.0-0.0.4564106
       VIBs Skipped:
    [root@xd-1541-5028d:~] esxcli network firewall ruleset set -e false -r httpClient
    [root@xd-1541-5028d:~] reboot

    Version: 6.7.0 (Build 9484548)
    to:
    Version: 6.7.0 (Build 10176752)

    login as: root
    Using keyboard-interactive authentication.
    Password:
    The time and date of this login have been sent to the system logs.
    
    WARNING:
       All commands run on the ESXi shell are logged and may be included in
       support bundles. Do not provide passwords directly on the command line.
       Most tools can prompt for secrets or accept them from standard input.
    
    VMware offers supported, powerful system administration tools.  Please
    see www.vmware.com/go/sysadmintools for details.
    
    The ESXi Shell can be disabled by an administrative user. See the
    vSphere Security documentation for more information.
    [root@xd-1541-5028d:~] esxcli network firewall ruleset set -e true -r httpClient
    [root@xd-1541-5028d:~] esxcli software profile update -p ESXi-6.7.0-20181004001-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml
    Update Result
       Message: The update completed successfully, but the system needs to be rebooted for the changes to be effective.
       Reboot Required: true
       VIBs Installed: VMware_bootbank_esx-base_6.7.0-0.23.10176752, VMware_bootbank_vsan_6.7.0-0.23.10176752, VMware_bootbank_vsanhealth_6.7.0-0.23.10176752
       VIBs Removed: VMware_bootbank_esx-base_6.7.0-0.20.9484548, VMware_bootbank_vsan_6.7.0-0.20.9484548, VMware_bootbank_vsanhealth_6.7.0-0.20.9484548
       VIBs Skipped: VMW_bootbank_ata-libata-92_3.00.9.2-16vmw.670.0.0.8169922, VMW_bootbank_ata-pata-amd_0.3.10-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-atiixp_0.4.6-4vmw.670.0.0.8169922, VMW_bootbank_ata-pata-cmd64x_0.2.5-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-hpt3x2n_0.3.4-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-pdc2027x_1.0-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-serverworks_0.4.3-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-sil680_0.4.8-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-via_0.3.3-2vmw.670.0.0.8169922, VMW_bootbank_block-cciss_3.6.14-10vmw.670.0.0.8169922, VMW_bootbank_bnxtnet_20.6.101.7-11vmw.670.0.0.8169922, VMW_bootbank_brcmfcoe_11.4.1078.0-8vmw.670.0.0.8169922, VMW_bootbank_char-random_1.0-3vmw.670.0.0.8169922, VMW_bootbank_ehci-ehci-hcd_1.0-4vmw.670.0.0.8169922, VMW_bootbank_elxiscsi_11.4.1174.0-2vmw.670.0.0.8169922, VMW_bootbank_elxnet_11.4.1094.0-5vmw.670.0.0.8169922, VMW_bootbank_hid-hid_1.0-3vmw.670.0.0.8169922, VMW_bootbank_i40en_1.3.1-18vmw.670.0.0.8169922, VMW_bootbank_iavmd_1.2.0.1011-2vmw.670.0.0.8169922, VMW_bootbank_igbn_0.1.0.0-15vmw.670.0.0.8169922, VMW_bootbank_ima-qla4xxx_2.02.18-1vmw.670.0.0.8169922, VMW_bootbank_ipmi-ipmi-devintf_39.1-4vmw.670.0.0.8169922, VMW_bootbank_ipmi-ipmi-msghandler_39.1-4vmw.670.0.0.8169922, VMW_bootbank_ipmi-ipmi-si-drv_39.1-4vmw.670.0.0.8169922, VMW_bootbank_iser_1.0.0.0-1vmw.670.0.0.8169922, VMW_bootbank_ixgben_1.4.1-11vmw.670.0.0.8169922, VMW_bootbank_lpfc_11.4.33.1-6vmw.670.0.0.8169922, VMW_bootbank_lpnic_11.4.59.0-1vmw.670.0.0.8169922, VMW_bootbank_lsi-mr3_7.702.13.00-4vmw.670.0.0.8169922, VMW_bootbank_lsi-msgpt2_20.00.04.00-4vmw.670.0.0.8169922, VMW_bootbank_lsi-msgpt35_03.00.01.00-10vmw.670.0.0.8169922, VMW_bootbank_lsi-msgpt3_16.00.01.00-1vmw.670.0.0.8169922, VMW_bootbank_misc-cnic-register_1.78.75.v60.7-1vmw.670.0.0.8169922, VMW_bootbank_misc-drivers_6.7.0-0.0.8169922, VMW_bootbank_mtip32xx-native_3.9.6-1vmw.670.0.0.8169922, VMW_bootbank_ne1000_0.8.3-4vmw.670.0.0.8169922, VMW_bootbank_nenic_1.0.11.0-1vmw.670.0.0.8169922, VMW_bootbank_net-bnx2_2.2.4f.v60.10-2vmw.670.0.0.8169922, VMW_bootbank_net-bnx2x_1.78.80.v60.12-2vmw.670.0.0.8169922, VMW_bootbank_net-cdc-ether_1.0-3vmw.670.0.0.8169922, VMW_bootbank_net-cnic_1.78.76.v60.13-2vmw.670.0.0.8169922, VMW_bootbank_net-e1000_8.0.3.1-5vmw.670.0.0.8169922, VMW_bootbank_net-e1000e_3.2.2.1-2vmw.670.0.0.8169922, VMW_bootbank_net-enic_2.1.2.38-2vmw.670.0.0.8169922, VMW_bootbank_net-fcoe_1.0.29.9.3-7vmw.670.0.0.8169922, VMW_bootbank_net-forcedeth_0.61-2vmw.670.0.0.8169922, VMW_bootbank_net-igb_5.0.5.1.1-5vmw.670.0.0.8169922, VMW_bootbank_net-ixgbe_3.7.13.7.14iov-20vmw.670.0.0.8169922, VMW_bootbank_net-libfcoe-92_1.0.24.9.4-8vmw.670.0.0.8169922, VMW_bootbank_net-mlx4-core_1.9.7.0-1vmw.670.0.0.8169922, VMW_bootbank_net-mlx4-en_1.9.7.0-1vmw.670.0.0.8169922, VMW_bootbank_net-nx-nic_5.0.621-5vmw.670.0.0.8169922, VMW_bootbank_net-tg3_3.131d.v60.4-2vmw.670.0.0.8169922, VMW_bootbank_net-usbnet_1.0-3vmw.670.0.0.8169922, VMW_bootbank_net-vmxnet3_1.1.3.0-3vmw.670.0.0.8169922, VMW_bootbank_nhpsa_2.0.22-1vmw.670.0.0.8169922, VMW_bootbank_nmlx4-core_3.17.9.12-1vmw.670.0.0.8169922, VMW_bootbank_nmlx4-en_3.17.9.12-1vmw.670.0.0.8169922, VMW_bootbank_nmlx4-rdma_3.17.9.12-1vmw.670.0.0.8169922, VMW_bootbank_nmlx5-core_4.17.9.12-1vmw.670.0.0.8169922, VMW_bootbank_nmlx5-rdma_4.17.9.12-1vmw.670.0.0.8169922, VMW_bootbank_ntg3_4.1.3.0-1vmw.670.0.0.8169922, VMW_bootbank_nvme_1.2.1.34-1vmw.670.0.0.8169922, VMW_bootbank_nvmxnet3-ens_2.0.0.21-1vmw.670.0.0.8169922, VMW_bootbank_nvmxnet3_2.0.0.27-1vmw.670.0.0.8169922, VMW_bootbank_ohci-usb-ohci_1.0-3vmw.670.0.0.8169922, VMW_bootbank_pvscsi_0.1-2vmw.670.0.0.8169922, VMW_bootbank_qcnic_1.0.2.0.4-1vmw.670.0.0.8169922, VMW_bootbank_qedentv_2.0.6.4-10vmw.670.0.17.9214924, VMW_bootbank_qfle3_1.0.50.11-9vmw.670.0.0.8169922, VMW_bootbank_qfle3f_1.0.25.0.2-14vmw.670.0.0.8169922, VMW_bootbank_qfle3i_1.0.2.3.9-3vmw.670.0.0.8169922, VMW_bootbank_qflge_1.1.0.11-1vmw.670.0.0.8169922, VMW_bootbank_sata-ahci_3.0-26vmw.670.0.0.8169922, VMW_bootbank_sata-ata-piix_2.12-10vmw.670.0.0.8169922, VMW_bootbank_sata-sata-nv_3.5-4vmw.670.0.0.8169922, VMW_bootbank_sata-sata-promise_2.12-3vmw.670.0.0.8169922, VMW_bootbank_sata-sata-sil24_1.1-1vmw.670.0.0.8169922, VMW_bootbank_sata-sata-sil_2.3-4vmw.670.0.0.8169922, VMW_bootbank_sata-sata-svw_2.3-3vmw.670.0.0.8169922, VMW_bootbank_scsi-aacraid_1.1.5.1-9vmw.670.0.0.8169922, VMW_bootbank_scsi-adp94xx_1.0.8.12-6vmw.670.0.0.8169922, VMW_bootbank_scsi-aic79xx_3.1-6vmw.670.0.0.8169922, VMW_bootbank_scsi-bnx2fc_1.78.78.v60.8-1vmw.670.0.0.8169922, VMW_bootbank_scsi-bnx2i_2.78.76.v60.8-1vmw.670.0.0.8169922, VMW_bootbank_scsi-fnic_1.5.0.45-3vmw.670.0.0.8169922, VMW_bootbank_scsi-hpsa_6.0.0.84-3vmw.670.0.0.8169922, VMW_bootbank_scsi-ips_7.12.05-4vmw.670.0.0.8169922, VMW_bootbank_scsi-iscsi-linux-92_1.0.0.2-3vmw.670.0.0.8169922, VMW_bootbank_scsi-libfc-92_1.0.40.9.3-5vmw.670.0.0.8169922, VMW_bootbank_scsi-megaraid-mbox_2.20.5.1-6vmw.670.0.0.8169922, VMW_bootbank_scsi-megaraid-sas_6.603.55.00-2vmw.670.0.0.8169922, VMW_bootbank_scsi-megaraid2_2.00.4-9vmw.670.0.0.8169922, VMW_bootbank_scsi-mpt2sas_19.00.00.00-2vmw.670.0.0.8169922, VMW_bootbank_scsi-mptsas_4.23.01.00-10vmw.670.0.0.8169922, VMW_bootbank_scsi-mptspi_4.23.01.00-10vmw.670.0.0.8169922, VMW_bootbank_scsi-qla4xxx_5.01.03.2-7vmw.670.0.0.8169922, VMW_bootbank_shim-iscsi-linux-9-2-1-0_6.7.0-0.0.8169922, VMW_bootbank_shim-iscsi-linux-9-2-2-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libata-9-2-1-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libata-9-2-2-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libfc-9-2-1-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libfc-9-2-2-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libfcoe-9-2-1-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libfcoe-9-2-2-0_6.7.0-0.0.8169922, VMW_bootbank_shim-vmklinux-9-2-1-0_6.7.0-0.0.8169922, VMW_bootbank_shim-vmklinux-9-2-2-0_6.7.0-0.0.8169922, VMW_bootbank_shim-vmklinux-9-2-3-0_6.7.0-0.0.8169922, VMW_bootbank_smartpqi_1.0.1.553-10vmw.670.0.0.8169922, VMW_bootbank_uhci-usb-uhci_1.0-3vmw.670.0.0.8169922, VMW_bootbank_usb-storage-usb-storage_1.0-3vmw.670.0.0.8169922, VMW_bootbank_usbcore-usb_1.0-3vmw.670.0.0.8169922, VMW_bootbank_vmkata_0.1-1vmw.670.0.0.8169922, VMW_bootbank_vmkfcoe_1.0.0.0-1vmw.670.0.0.8169922, VMW_bootbank_vmkplexer-vmkplexer_6.7.0-0.0.8169922, VMW_bootbank_vmkusb_0.1-1vmw.670.0.0.8169922, VMW_bootbank_vmw-ahci_1.2.0-6vmw.670.0.0.8169922, VMW_bootbank_xhci-xhci_1.0-3vmw.670.0.0.8169922, VMware_bootbank_cpu-microcode_6.7.0-0.20.9484548, VMware_bootbank_elx-esx-libelxima.so_11.4.1184.0-0.0.8169922, VMware_bootbank_esx-dvfilter-generic-fastpath_6.7.0-0.0.8169922, VMware_bootbank_esx-ui_1.25.1-9210161, VMware_bootbank_esx-xserver_6.7.0-0.0.8169922, VMware_bootbank_lsu-hp-hpsa-plugin_2.0.0-13vmw.670.0.0.8169922, VMware_bootbank_lsu-lsi-lsi-mr3-plugin_1.0.0-12vmw.670.0.0.8169922, VMware_bootbank_lsu-lsi-lsi-msgpt3-plugin_1.0.0-8vmw.670.0.0.8169922, VMware_bootbank_lsu-lsi-megaraid-sas-plugin_1.0.0-9vmw.670.0.0.8169922, VMware_bootbank_lsu-lsi-mpt2sas-plugin_2.0.0-7vmw.670.0.0.8169922, VMware_bootbank_native-misc-drivers_6.7.0-0.0.8169922, VMware_bootbank_qlnativefc_3.0.1.0-5vmw.670.0.0.8169922, VMware_bootbank_rste_2.0.2.0088-7vmw.670.0.0.8169922, VMware_bootbank_vmware-esx-esxcli-nvme-plugin_1.2.0.32-0.0.8169922, VMware_locker_tools-light_10.2.1.8267844-8941472
    [root@xd-1541-5028d:~] esxcli network firewall ruleset set -e false -r httpClient
    [root@xd-1541-5028d:~] reboot

    Version: 6.7.0 (Build 10176752)
    to:
    Version: 6.7.0 (Build 10302608)

    login as: root
    Using keyboard-interactive authentication.
    Password:
    The time and date of this login have been sent to the system logs.
    
    WARNING:
       All commands run on the ESXi shell are logged and may be included in
       support bundles. Do not provide passwords directly on the command line.
       Most tools can prompt for secrets or accept them from standard input.
    
    VMware offers supported, powerful system administration tools.  Please
    see www.vmware.com/go/sysadmintools for details.
    
    The ESXi Shell can be disabled by an administrative user. See the
    vSphere Security documentation for more information.
    [root@xd-1541-5028d:~] esxcli network firewall ruleset set -e true -r httpClient
    [root@xd-1541-5028d:~] esxcli software profile update -p ESXi-6.7.0-20181002001-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml
    Update Result
       Message: The update completed successfully, but the system needs to be rebooted for the changes to be effective.
       Reboot Required: true
       VIBs Installed: VMW_bootbank_bnxtroce_20.6.101.0-20vmw.670.1.28.10302608, VMW_bootbank_brcmfcoe_11.4.1078.5-11vmw.670.1.28.10302608, VMW_bootbank_elxnet_11.4.1095.0-5vmw                         .670.1.28.10302608, VMW_bootbank_i40en_1.3.1-22vmw.670.1.28.10302608, VMW_bootbank_ipmi-ipmi-devintf_39.1-5vmw.670.1.28.10302608, VMW_bootbank_ipmi-ipmi-msghandler_39.1-5vm                         w.670.1.28.10302608, VMW_bootbank_ipmi-ipmi-si-drv_39.1-5vmw.670.1.28.10302608, VMW_bootbank_iser_1.0.0.0-1vmw.670.1.28.10302608, VMW_bootbank_lpfc_11.4.33.3-11vmw.670.1.28                         .10302608, VMW_bootbank_lsi-mr3_7.702.13.00-5vmw.670.1.28.10302608, VMW_bootbank_lsi-msgpt2_20.00.04.00-5vmw.670.1.28.10302608, VMW_bootbank_lsi-msgpt35_03.00.01.00-12vmw.6                         70.1.28.10302608, VMW_bootbank_lsi-msgpt3_16.00.01.00-3vmw.670.1.28.10302608, VMW_bootbank_mtip32xx-native_3.9.8-1vmw.670.1.28.10302608, VMW_bootbank_ne1000_0.8.4-1vmw.670.                         1.28.10302608, VMW_bootbank_nenic_1.0.21.0-1vmw.670.1.28.10302608, VMW_bootbank_nfnic_4.0.0.14-0vmw.670.1.28.10302608, VMW_bootbank_nhpsa_2.0.22-3vmw.670.1.28.10302608, VMW                         _bootbank_ntg3_4.1.3.2-1vmw.670.1.28.10302608, VMW_bootbank_nvme_1.2.2.17-1vmw.670.1.28.10302608, VMW_bootbank_nvmxnet3_2.0.0.29-1vmw.670.1.28.10302608, VMW_bootbank_qedent                         v_2.0.6.4-10vmw.670.1.28.10302608, VMW_bootbank_smartpqi_1.0.1.553-12vmw.670.1.28.10302608, VMW_bootbank_vmkfcoe_1.0.0.1-1vmw.670.1.28.10302608, VMW_bootbank_vmkusb_0.1-1vm                         w.670.1.28.10302608, VMW_bootbank_vmw-ahci_1.2.3-1vmw.670.1.28.10302608, VMware_bootbank_cpu-microcode_6.7.0-1.28.10302608, VMware_bootbank_esx-base_6.7.0-1.28.10302608, VM                         ware_bootbank_esx-ui_1.30.0-9946814, VMware_bootbank_esx-update_6.7.0-1.28.10302608, VMware_bootbank_lsu-hp-hpsa-plugin_2.0.0-16vmw.670.1.28.10302608, VMware_bootbank_lsu-i                         ntel-vmd-plugin_1.0.0-2vmw.670.1.28.10302608, VMware_bootbank_lsu-lsi-lsi-mr3-plugin_1.0.0-13vmw.670.1.28.10302608, VMware_bootbank_lsu-smartpqi-plugin_1.0.0-3vmw.670.1.28.                         10302608, VMware_bootbank_vmware-esx-esxcli-nvme-plugin_1.2.0.34-1.28.10302608, VMware_bootbank_vsan_6.7.0-1.28.10290435, VMware_bootbank_vsanhealth_6.7.0-1.28.10290721, VM                         ware_locker_tools-light_10.3.2.9925305-10176879
       VIBs Removed: VMW_bootbank_brcmfcoe_11.4.1078.0-8vmw.670.0.0.8169922, VMW_bootbank_elxnet_11.4.1094.0-5vmw.670.0.0.8169922, VMW_bootbank_i40en_1.3.1-18vmw.670.0.0.816992                         2, VMW_bootbank_ipmi-ipmi-devintf_39.1-4vmw.670.0.0.8169922, VMW_bootbank_ipmi-ipmi-msghandler_39.1-4vmw.670.0.0.8169922, VMW_bootbank_ipmi-ipmi-si-drv_39.1-4vmw.670.0.0.81                         69922, VMW_bootbank_iser_1.0.0.0-1vmw.670.0.0.8169922, VMW_bootbank_lpfc_11.4.33.1-6vmw.670.0.0.8169922, VMW_bootbank_lsi-mr3_7.702.13.00-4vmw.670.0.0.8169922, VMW_bootbank                         _lsi-msgpt2_20.00.04.00-4vmw.670.0.0.8169922, VMW_bootbank_lsi-msgpt35_03.00.01.00-10vmw.670.0.0.8169922, VMW_bootbank_lsi-msgpt3_16.00.01.00-1vmw.670.0.0.8169922, VMW_boot                         bank_mtip32xx-native_3.9.6-1vmw.670.0.0.8169922, VMW_bootbank_ne1000_0.8.3-4vmw.670.0.0.8169922, VMW_bootbank_nenic_1.0.11.0-1vmw.670.0.0.8169922, VMW_bootbank_nhpsa_2.0.22                         -1vmw.670.0.0.8169922, VMW_bootbank_ntg3_4.1.3.0-1vmw.670.0.0.8169922, VMW_bootbank_nvme_1.2.1.34-1vmw.670.0.0.8169922, VMW_bootbank_nvmxnet3_2.0.0.27-1vmw.670.0.0.8169922,                          VMW_bootbank_qedentv_2.0.6.4-10vmw.670.0.17.9214924, VMW_bootbank_smartpqi_1.0.1.553-10vmw.670.0.0.8169922, VMW_bootbank_vmkfcoe_1.0.0.0-1vmw.670.0.0.8169922, VMW_bootbank                         _vmkusb_0.1-1vmw.670.0.0.8169922, VMW_bootbank_vmw-ahci_1.2.0-6vmw.670.0.0.8169922, VMware_bootbank_cpu-microcode_6.7.0-0.20.9484548, VMware_bootbank_esx-base_6.7.0-0.23.10                         176752, VMware_bootbank_esx-ui_1.25.1-9210161, VMware_bootbank_lsu-hp-hpsa-plugin_2.0.0-13vmw.670.0.0.8169922, VMware_bootbank_lsu-lsi-lsi-mr3-plugin_1.0.0-12vmw.670.0.0.81                         69922, VMware_bootbank_vmware-esx-esxcli-nvme-plugin_1.2.0.32-0.0.8169922, VMware_bootbank_vsan_6.7.0-0.23.10176752, VMware_bootbank_vsanhealth_6.7.0-0.23.10176752, VMware_                         locker_tools-light_10.2.1.8267844-8941472
       VIBs Skipped: VMW_bootbank_ata-libata-92_3.00.9.2-16vmw.670.0.0.8169922, VMW_bootbank_ata-pata-amd_0.3.10-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-atiixp_0.4.6-4vmw.6                         70.0.0.8169922, VMW_bootbank_ata-pata-cmd64x_0.2.5-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-hpt3x2n_0.3.4-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-pdc2027x_1.0-3vmw.6                         70.0.0.8169922, VMW_bootbank_ata-pata-serverworks_0.4.3-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-sil680_0.4.8-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-via_0.3.3-2vmw.                         670.0.0.8169922, VMW_bootbank_block-cciss_3.6.14-10vmw.670.0.0.8169922, VMW_bootbank_bnxtnet_20.6.101.7-11vmw.670.0.0.8169922, VMW_bootbank_char-random_1.0-3vmw.670.0.0.816                         9922, VMW_bootbank_ehci-ehci-hcd_1.0-4vmw.670.0.0.8169922, VMW_bootbank_elxiscsi_11.4.1174.0-2vmw.670.0.0.8169922, VMW_bootbank_hid-hid_1.0-3vmw.670.0.0.8169922, VMW_bootba                         nk_iavmd_1.2.0.1011-2vmw.670.0.0.8169922, VMW_bootbank_igbn_0.1.0.0-15vmw.670.0.0.8169922, VMW_bootbank_ima-qla4xxx_2.02.18-1vmw.670.0.0.8169922, VMW_bootbank_ixgben_1.4.1-                         16vmw.670.1.28.10302608, VMW_bootbank_lpnic_11.4.59.0-1vmw.670.0.0.8169922, VMW_bootbank_misc-cnic-register_1.78.75.v60.7-1vmw.670.0.0.8169922, VMW_bootbank_misc-drivers_6.                         7.0-0.0.8169922, VMW_bootbank_net-bnx2_2.2.4f.v60.10-2vmw.670.0.0.8169922, VMW_bootbank_net-bnx2x_1.78.80.v60.12-2vmw.670.0.0.8169922, VMW_bootbank_net-cdc-ether_1.0-3vmw.6                         70.0.0.8169922, VMW_bootbank_net-cnic_1.78.76.v60.13-2vmw.670.0.0.8169922, VMW_bootbank_net-e1000_8.0.3.1-5vmw.670.0.0.8169922, VMW_bootbank_net-e1000e_3.2.2.1-2vmw.670.0.0                         .8169922, VMW_bootbank_net-enic_2.1.2.38-2vmw.670.0.0.8169922, VMW_bootbank_net-fcoe_1.0.29.9.3-7vmw.670.0.0.8169922, VMW_bootbank_net-forcedeth_0.61-2vmw.670.0.0.8169922,                          VMW_bootbank_net-igb_5.0.5.1.1-5vmw.670.0.0.8169922, VMW_bootbank_net-ixgbe_3.7.13.7.14iov-20vmw.670.0.0.8169922, VMW_bootbank_net-libfcoe-92_1.0.24.9.4-8vmw.670.0.0.816992                         2, VMW_bootbank_net-mlx4-core_1.9.7.0-1vmw.670.0.0.8169922, VMW_bootbank_net-mlx4-en_1.9.7.0-1vmw.670.0.0.8169922, VMW_bootbank_net-nx-nic_5.0.621-5vmw.670.0.0.8169922, VMW                         _bootbank_net-tg3_3.131d.v60.4-2vmw.670.0.0.8169922, VMW_bootbank_net-usbnet_1.0-3vmw.670.0.0.8169922, VMW_bootbank_net-vmxnet3_1.1.3.0-3vmw.670.0.0.8169922, VMW_bootbank_n                         mlx4-core_3.17.9.12-1vmw.670.0.0.8169922, VMW_bootbank_nmlx4-en_3.17.9.12-1vmw.670.0.0.8169922, VMW_bootbank_nmlx4-rdma_3.17.9.12-1vmw.670.0.0.8169922, VMW_bootbank_nmlx5-c                         ore_4.17.9.12-1vmw.670.0.0.8169922, VMW_bootbank_nmlx5-rdma_4.17.9.12-1vmw.670.0.0.8169922, VMW_bootbank_nvmxnet3-ens_2.0.0.21-1vmw.670.0.0.8169922, VMW_bootbank_ohci-usb-o                         hci_1.0-3vmw.670.0.0.8169922, VMW_bootbank_pvscsi_0.1-2vmw.670.0.0.8169922, VMW_bootbank_qcnic_1.0.2.0.4-1vmw.670.0.0.8169922, VMW_bootbank_qfle3_1.0.50.11-9vmw.670.0.0.816                         9922, VMW_bootbank_qfle3f_1.0.25.0.2-14vmw.670.0.0.8169922, VMW_bootbank_qfle3i_1.0.2.3.9-3vmw.670.0.0.8169922, VMW_bootbank_qflge_1.1.0.11-1vmw.670.0.0.8169922, VMW_bootba                         nk_sata-ahci_3.0-26vmw.670.0.0.8169922, VMW_bootbank_sata-ata-piix_2.12-10vmw.670.0.0.8169922, VMW_bootbank_sata-sata-nv_3.5-4vmw.670.0.0.8169922, VMW_bootbank_sata-sata-pr                         omise_2.12-3vmw.670.0.0.8169922, VMW_bootbank_sata-sata-sil24_1.1-1vmw.670.0.0.8169922, VMW_bootbank_sata-sata-sil_2.3-4vmw.670.0.0.8169922, VMW_bootbank_sata-sata-svw_2.3-                         3vmw.670.0.0.8169922, VMW_bootbank_scsi-aacraid_1.1.5.1-9vmw.670.0.0.8169922, VMW_bootbank_scsi-adp94xx_1.0.8.12-6vmw.670.0.0.8169922, VMW_bootbank_scsi-aic79xx_3.1-6vmw.67                         0.0.0.8169922, VMW_bootbank_scsi-bnx2fc_1.78.78.v60.8-1vmw.670.0.0.8169922, VMW_bootbank_scsi-bnx2i_2.78.76.v60.8-1vmw.670.0.0.8169922, VMW_bootbank_scsi-fnic_1.5.0.45-3vmw                         .670.0.0.8169922, VMW_bootbank_scsi-hpsa_6.0.0.84-3vmw.670.0.0.8169922, VMW_bootbank_scsi-ips_7.12.05-4vmw.670.0.0.8169922, VMW_bootbank_scsi-iscsi-linux-92_1.0.0.2-3vmw.67                         0.0.0.8169922, VMW_bootbank_scsi-libfc-92_1.0.40.9.3-5vmw.670.0.0.8169922, VMW_bootbank_scsi-megaraid-mbox_2.20.5.1-6vmw.670.0.0.8169922, VMW_bootbank_scsi-megaraid-sas_6.6                         03.55.00-2vmw.670.0.0.8169922, VMW_bootbank_scsi-megaraid2_2.00.4-9vmw.670.0.0.8169922, VMW_bootbank_scsi-mpt2sas_19.00.00.00-2vmw.670.0.0.8169922, VMW_bootbank_scsi-mptsas                         _4.23.01.00-10vmw.670.0.0.8169922, VMW_bootbank_scsi-mptspi_4.23.01.00-10vmw.670.0.0.8169922, VMW_bootbank_scsi-qla4xxx_5.01.03.2-7vmw.670.0.0.8169922, VMW_bootbank_shim-is                         csi-linux-9-2-1-0_6.7.0-0.0.8169922, VMW_bootbank_shim-iscsi-linux-9-2-2-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libata-9-2-1-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libata-9                         -2-2-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libfc-9-2-1-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libfc-9-2-2-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libfcoe-9-2-1-0_6.7.0-0.0.                         8169922, VMW_bootbank_shim-libfcoe-9-2-2-0_6.7.0-0.0.8169922, VMW_bootbank_shim-vmklinux-9-2-1-0_6.7.0-0.0.8169922, VMW_bootbank_shim-vmklinux-9-2-2-0_6.7.0-0.0.8169922, VM                         W_bootbank_shim-vmklinux-9-2-3-0_6.7.0-0.0.8169922, VMW_bootbank_uhci-usb-uhci_1.0-3vmw.670.0.0.8169922, VMW_bootbank_usb-storage-usb-storage_1.0-3vmw.670.0.0.8169922, VMW_                         bootbank_usbcore-usb_1.0-3vmw.670.0.0.8169922, VMW_bootbank_vmkata_0.1-1vmw.670.0.0.8169922, VMW_bootbank_vmkplexer-vmkplexer_6.7.0-0.0.8169922, VMW_bootbank_xhci-xhci_1.0-                         3vmw.670.0.0.8169922, VMware_bootbank_elx-esx-libelxima.so_11.4.1184.0-0.0.8169922, VMware_bootbank_esx-dvfilter-generic-fastpath_6.7.0-0.0.8169922, VMware_bootbank_esx-xse                         rver_6.7.0-0.0.8169922, VMware_bootbank_lsu-lsi-lsi-msgpt3-plugin_1.0.0-8vmw.670.0.0.8169922, VMware_bootbank_lsu-lsi-megaraid-sas-plugin_1.0.0-9vmw.670.0.0.8169922, VMware                         _bootbank_lsu-lsi-mpt2sas-plugin_2.0.0-7vmw.670.0.0.8169922, VMware_bootbank_native-misc-drivers_6.7.0-0.0.8169922, VMware_bootbank_qlnativefc_3.0.1.0-5vmw.670.0.0.8169922,                          VMware_bootbank_rste_2.0.2.0088-7vmw.670.0.0.8169922
    [root@xd-1541-5028d:~] esxcli network firewall ruleset set -e false -r httpClient
    [root@xd-1541-5028d:~] reboot


    Version: 6.7.0 (Build 11675023)
    to:
    Version: 6.7.0 (Build 13006603)

    login as: root
    Using keyboard-interactive authentication.
    Password:
    The time and date of this login have been sent to the system logs.
    
    WARNING:
       All commands run on the ESXi shell are logged and may be included in
       support bundles. Do not provide passwords directly on the command line.
       Most tools can prompt for secrets or accept them from standard input.
    
    VMware offers supported, powerful system administration tools.  Please
    see www.vmware.com/go/sysadmintools for details.
    
    The ESXi Shell can be disabled by an administrative user. See the
    vSphere Security documentation for more information.
    [root@xd-1541-5028d:~] esxcli network firewall ruleset set -e true -r httpClient
    [root@xd-1541-5028d:~] esxcli software profile update -p ESXi-6.7.0-20190402001-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml
    Update Result
       Message: The update completed successfully, but the system needs to be rebooted for the changes to be effective.
       Reboot Required: true
       VIBs Installed: VMW_bootbank_bnxtnet_20.6.101.7-21vmw.670.2.48.13006603, VMW_bootbank_brcmfcoe_11.4.1078.19-12vmw.670.2.48.13006603, VMW_bootbank_i40en_1.3.1-23vmw.670.2.48.13006603, VMW_bootbank_lpfc_11.4.33.18-12vmw.670.2.48.13006603, VMW_bootbank_lsi-mr3_7.708.07.00-2vmw.670.2.48.13006603, VMW_bootbank_lsi-msgpt2_20.00.05.00-1vmw.670.2.48.13006603, VMW_bootbank_lsi-msgpt35_09.00.00.00-1vmw.670.2.48.13006603, VMW_bootbank_lsi-msgpt3_17.00.01.00-3vmw.670.2.48.13006603, VMW_bootbank_misc-drivers_6.7.0-2.48.13006603, VMW_bootbank_ne1000_0.8.4-2vmw.670.2.48.13006603, VMW_bootbank_net-vmxnet3_1.1.3.0-3vmw.670.2.48.13006603, VMW_bootbank_nfnic_4.0.0.17-0vmw.670.2.48.13006603, VMW_bootbank_nmlx4-core_3.17.13.1-1vmw.670.2.48.13006603, VMW_bootbank_nmlx4-en_3.17.13.1-1vmw.670.2.48.13006603, VMW_bootbank_nmlx4-rdma_3.17.13.1-1vmw.670.2.48.13006603, VMW_bootbank_nmlx5-core_4.17.13.1-1vmw.670.2.48.13006603, VMW_bootbank_nmlx5-rdma_4.17.13.1-1vmw.670.2.48.13006603, VMW_bootbank_nvme_1.2.2.27-1vmw.670.2.48.13006603, VMW_bootbank_sfvmk_1.0.0.1003-6vmw.670.2.48.13006603, VMW_bootbank_vmkusb_0.1-1vmw.670.2.48.13006603, VMware_bootbank_elx-esx-libelxima.so_11.4.1184.1-2.48.13006603, VMware_bootbank_esx-base_6.7.0-2.48.13006603, VMware_bootbank_esx-ui_1.33.3-12923304, VMware_bootbank_esx-update_6.7.0-2.48.13006603, VMware_bootbank_lsu-lsi-drivers-plugin_1.0.0-1vmw.670.2.48.13006603, VMware_bootbank_lsu-lsi-lsi-msgpt3-plugin_1.0.0-9vmw.670.2.48.13006603, VMware_bootbank_native-misc-drivers_6.7.0-2.48.13006603, VMware_bootbank_qlnativefc_3.1.8.0-4vmw.670.2.48.13006603, VMware_bootbank_vmware-esx-esxcli-nvme-plugin_1.2.0.36-2.48.13006603, VMware_bootbank_vsan_6.7.0-2.48.12775451, VMware_bootbank_vsanhealth_6.7.0-2.48.12775454, VMware_locker_tools-light_10.3.5.10430147-12986307
       VIBs Removed: VMW_bootbank_bnxtnet_20.6.101.7-11vmw.670.0.0.8169922, VMW_bootbank_brcmfcoe_11.4.1078.5-11vmw.670.1.28.10302608, VMW_bootbank_i40en_1.3.1-22vmw.670.1.28.10302608, VMW_bootbank_lpfc_11.4.33.3-11vmw.670.1.28.10302608, VMW_bootbank_lsi-mr3_7.702.13.00-5vmw.670.1.28.10302608, VMW_bootbank_lsi-msgpt2_20.00.04.00-5vmw.670.1.28.10302608, VMW_bootbank_lsi-msgpt35_03.00.01.00-12vmw.670.1.28.10302608, VMW_bootbank_lsi-msgpt3_16.00.01.00-3vmw.670.1.28.10302608, VMW_bootbank_misc-drivers_6.7.0-0.0.8169922, VMW_bootbank_ne1000_0.8.4-1vmw.670.1.28.10302608, VMW_bootbank_net-vmxnet3_1.1.3.0-3vmw.670.0.0.8169922, VMW_bootbank_nfnic_4.0.0.14-0vmw.670.1.28.10302608, VMW_bootbank_nmlx4-core_3.17.9.12-1vmw.670.0.0.8169922, VMW_bootbank_nmlx4-en_3.17.9.12-1vmw.670.0.0.8169922, VMW_bootbank_nmlx4-rdma_3.17.9.12-1vmw.670.0.0.8169922, VMW_bootbank_nmlx5-core_4.17.9.12-1vmw.670.0.0.8169922, VMW_bootbank_nmlx5-rdma_4.17.9.12-1vmw.670.0.0.8169922, VMW_bootbank_nvme_1.2.2.17-1vmw.670.1.28.10302608, VMW_bootbank_vmkusb_0.1-1vmw.670.1.28.10302608, VMware_bootbank_elx-esx-libelxima.so_11.4.1184.0-0.0.8169922, VMware_bootbank_esx-base_6.7.0-1.39.11675023, VMware_bootbank_esx-ui_1.30.0-9946814, VMware_bootbank_esx-update_6.7.0-1.39.11675023, VMware_bootbank_lsu-lsi-drivers-plugin_1.0.0-1vmw.670.1.39.11675023, VMware_bootbank_lsu-lsi-lsi-msgpt3-plugin_1.0.0-9vmw.670.1.39.11675023, VMware_bootbank_native-misc-drivers_6.7.0-0.0.8169922, VMware_bootbank_qlnativefc_3.0.1.0-5vmw.670.0.0.8169922, VMware_bootbank_vmware-esx-esxcli-nvme-plugin_1.2.0.34-1.28.10302608, VMware_bootbank_vsan_6.7.0-1.39.11399593, VMware_bootbank_vsanhealth_6.7.0-1.39.11399595, VMware_locker_tools-light_10.3.2.9925305-10176879
       VIBs Skipped: VMW_bootbank_ata-libata-92_3.00.9.2-16vmw.670.0.0.8169922, VMW_bootbank_ata-pata-amd_0.3.10-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-atiixp_0.4.6-4vmw.670.0.0.8169922, VMW_bootbank_ata-pata-cmd64x_0.2.5-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-hpt3x2n_0.3.4-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-pdc2027x_1.0-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-serverworks_0.4.3-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-sil680_0.4.8-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-via_0.3.3-2vmw.670.0.0.8169922, VMW_bootbank_block-cciss_3.6.14-10vmw.670.0.0.8169922, VMW_bootbank_bnxtroce_20.6.101.0-20vmw.670.1.28.10302608, VMW_bootbank_char-random_1.0-3vmw.670.0.0.8169922, VMW_bootbank_ehci-ehci-hcd_1.0-4vmw.670.0.0.8169922, VMW_bootbank_elxiscsi_11.4.1174.0-2vmw.670.0.0.8169922, VMW_bootbank_elxnet_11.4.1095.0-5vmw.670.1.28.10302608, VMW_bootbank_hid-hid_1.0-3vmw.670.0.0.8169922, VMW_bootbank_iavmd_1.2.0.1011-2vmw.670.0.0.8169922, VMW_bootbank_igbn_0.1.1.0-4vmw.670.2.48.13006603, VMW_bootbank_ima-qla4xxx_2.02.18-1vmw.670.0.0.8169922, VMW_bootbank_ipmi-ipmi-devintf_39.1-5vmw.670.1.28.10302608, VMW_bootbank_ipmi-ipmi-msghandler_39.1-5vmw.670.1.28.10302608, VMW_bootbank_ipmi-ipmi-si-drv_39.1-5vmw.670.1.28.10302608, VMW_bootbank_iser_1.0.0.0-1vmw.670.1.28.10302608, VMW_bootbank_ixgben_1.4.1-18vmw.670.2.48.13006603, VMW_bootbank_lpnic_11.4.59.0-1vmw.670.0.0.8169922, VMW_bootbank_misc-cnic-register_1.78.75.v60.7-1vmw.670.0.0.8169922, VMW_bootbank_mtip32xx-native_3.9.8-1vmw.670.1.28.10302608, VMW_bootbank_nenic_1.0.21.0-1vmw.670.1.28.10302608, VMW_bootbank_net-bnx2_2.2.4f.v60.10-2vmw.670.0.0.8169922, VMW_bootbank_net-bnx2x_1.78.80.v60.12-2vmw.670.0.0.8169922, VMW_bootbank_net-cdc-ether_1.0-3vmw.670.0.0.8169922, VMW_bootbank_net-cnic_1.78.76.v60.13-2vmw.670.0.0.8169922, VMW_bootbank_net-e1000_8.0.3.1-5vmw.670.0.0.8169922, VMW_bootbank_net-e1000e_3.2.2.1-2vmw.670.0.0.8169922, VMW_bootbank_net-enic_2.1.2.38-2vmw.670.0.0.8169922, VMW_bootbank_net-fcoe_1.0.29.9.3-7vmw.670.0.0.8169922, VMW_bootbank_net-forcedeth_0.61-2vmw.670.0.0.8169922, VMW_bootbank_net-igb_5.0.5.1.1-5vmw.670.0.0.8169922, VMW_bootbank_net-ixgbe_3.7.13.7.14iov-20vmw.670.0.0.8169922, VMW_bootbank_net-libfcoe-92_1.0.24.9.4-8vmw.670.0.0.8169922, VMW_bootbank_net-mlx4-core_1.9.7.0-1vmw.670.0.0.8169922, VMW_bootbank_net-mlx4-en_1.9.7.0-1vmw.670.0.0.8169922, VMW_bootbank_net-nx-nic_5.0.621-5vmw.670.0.0.8169922, VMW_bootbank_net-tg3_3.131d.v60.4-2vmw.670.0.0.8169922, VMW_bootbank_net-usbnet_1.0-3vmw.670.0.0.8169922, VMW_bootbank_nhpsa_2.0.22-3vmw.670.1.28.10302608, VMW_bootbank_ntg3_4.1.3.2-1vmw.670.1.28.10302608, VMW_bootbank_nvmxnet3-ens_2.0.0.21-1vmw.670.0.0.8169922, VMW_bootbank_nvmxnet3_2.0.0.29-1vmw.670.1.28.10302608, VMW_bootbank_ohci-usb-ohci_1.0-3vmw.670.0.0.8169922, VMW_bootbank_pvscsi_0.1-2vmw.670.0.0.8169922, VMW_bootbank_qcnic_1.0.2.0.4-1vmw.670.0.0.8169922, VMW_bootbank_qedentv_2.0.6.4-10vmw.670.1.28.10302608, VMW_bootbank_qfle3_1.0.50.11-9vmw.670.0.0.8169922, VMW_bootbank_qfle3f_1.0.25.0.2-14vmw.670.0.0.8169922, VMW_bootbank_qfle3i_1.0.2.3.9-3vmw.670.0.0.8169922, VMW_bootbank_qflge_1.1.0.11-1vmw.670.0.0.8169922, VMW_bootbank_sata-ahci_3.0-26vmw.670.0.0.8169922, VMW_bootbank_sata-ata-piix_2.12-10vmw.670.0.0.8169922, VMW_bootbank_sata-sata-nv_3.5-4vmw.670.0.0.8169922, VMW_bootbank_sata-sata-promise_2.12-3vmw.670.0.0.8169922, VMW_bootbank_sata-sata-sil24_1.1-1vmw.670.0.0.8169922, VMW_bootbank_sata-sata-sil_2.3-4vmw.670.0.0.8169922, VMW_bootbank_sata-sata-svw_2.3-3vmw.670.0.0.8169922, VMW_bootbank_scsi-aacraid_1.1.5.1-9vmw.670.0.0.8169922, VMW_bootbank_scsi-adp94xx_1.0.8.12-6vmw.670.0.0.8169922, VMW_bootbank_scsi-aic79xx_3.1-6vmw.670.0.0.8169922, VMW_bootbank_scsi-bnx2fc_1.78.78.v60.8-1vmw.670.0.0.8169922, VMW_bootbank_scsi-bnx2i_2.78.76.v60.8-1vmw.670.0.0.8169922, VMW_bootbank_scsi-fnic_1.5.0.45-3vmw.670.0.0.8169922, VMW_bootbank_scsi-hpsa_6.0.0.84-3vmw.670.0.0.8169922, VMW_bootbank_scsi-ips_7.12.05-4vmw.670.0.0.8169922, VMW_bootbank_scsi-iscsi-linux-92_1.0.0.2-3vmw.670.0.0.8169922, VMW_bootbank_scsi-libfc-92_1.0.40.9.3-5vmw.670.0.0.8169922, VMW_bootbank_scsi-megaraid-mbox_2.20.5.1-6vmw.670.0.0.8169922, VMW_bootbank_scsi-megaraid-sas_6.603.55.00-2vmw.670.0.0.8169922, VMW_bootbank_scsi-megaraid2_2.00.4-9vmw.670.0.0.8169922, VMW_bootbank_scsi-mpt2sas_19.00.00.00-2vmw.670.0.0.8169922, VMW_bootbank_scsi-mptsas_4.23.01.00-10vmw.670.0.0.8169922, VMW_bootbank_scsi-mptspi_4.23.01.00-10vmw.670.0.0.8169922, VMW_bootbank_scsi-qla4xxx_5.01.03.2-7vmw.670.0.0.8169922, VMW_bootbank_shim-iscsi-linux-9-2-1-0_6.7.0-0.0.8169922, VMW_bootbank_shim-iscsi-linux-9-2-2-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libata-9-2-1-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libata-9-2-2-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libfc-9-2-1-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libfc-9-2-2-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libfcoe-9-2-1-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libfcoe-9-2-2-0_6.7.0-0.0.8169922, VMW_bootbank_shim-vmklinux-9-2-1-0_6.7.0-0.0.8169922, VMW_bootbank_shim-vmklinux-9-2-2-0_6.7.0-0.0.8169922, VMW_bootbank_shim-vmklinux-9-2-3-0_6.7.0-0.0.8169922, VMW_bootbank_smartpqi_1.0.1.553-12vmw.670.1.28.10302608, VMW_bootbank_uhci-usb-uhci_1.0-3vmw.670.0.0.8169922, VMW_bootbank_usb-storage-usb-storage_1.0-3vmw.670.0.0.8169922, VMW_bootbank_usbcore-usb_1.0-3vmw.670.0.0.8169922, VMW_bootbank_vmkata_0.1-1vmw.670.0.0.8169922, VMW_bootbank_vmkfcoe_1.0.0.1-1vmw.670.1.28.10302608, VMW_bootbank_vmkplexer-vmkplexer_6.7.0-0.0.8169922, VMW_bootbank_vmw-ahci_1.2.3-1vmw.670.1.28.10302608, VMW_bootbank_xhci-xhci_1.0-3vmw.670.0.0.8169922, VMware_bootbank_cpu-microcode_6.7.0-1.28.10302608, VMware_bootbank_esx-dvfilter-generic-fastpath_6.7.0-0.0.8169922, VMware_bootbank_esx-xserver_6.7.0-0.0.8169922, VMware_bootbank_lsu-hp-hpsa-plugin_2.0.0-16vmw.670.1.28.10302608, VMware_bootbank_lsu-intel-vmd-plugin_1.0.0-2vmw.670.1.28.10302608, VMware_bootbank_lsu-lsi-lsi-mr3-plugin_1.0.0-13vmw.670.1.28.10302608, VMware_bootbank_lsu-lsi-megaraid-sas-plugin_1.0.0-9vmw.670.0.0.8169922, VMware_bootbank_lsu-lsi-mpt2sas-plugin_2.0.0-7vmw.670.0.0.8169922, VMware_bootbank_lsu-smartpqi-plugin_1.0.0-3vmw.670.1.28.10302608, VMware_bootbank_rste_2.0.2.0088-7vmw.670.0.0.8169922
    [root@xd-1541-5028d:~] esxcli network firewall ruleset set -e false -r httpClient
    [root@xd-1541-5028d:~] reboot


    Version: 6.7.0 (Build 13006603)
    to:
    Version: 6.7.0 (Build 13981272)

    login as: root
    Using keyboard-interactive authentication.
    Password:
    The time and date of this login have been sent to the system logs.
    
    WARNING:
       All commands run on the ESXi shell are logged and may be included in
       support bundles. Do not provide passwords directly on the command line.
       Most tools can prompt for secrets or accept them from standard input.
    
    VMware offers supported, powerful system administration tools.  Please
    see www.vmware.com/go/sysadmintools for details.
    
    The ESXi Shell can be disabled by an administrative user. See the
    vSphere Security documentation for more information.
    [root@xd-1567-5028d:~] esxcli network firewall ruleset set -e true -r httpClient
    [root@xd-1567-5028d:~] esxcli software profile update -p ESXi-6.7.0-20190604001-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml
    Update Result
       Message: The update completed successfully, but the system needs to be rebooted for the changes to be effective.
       Reboot Required: true
       VIBs Installed: VMware_bootbank_cpu-microcode_6.7.0-2.55.13644319, VMware_bootbank_esx-base_6.7.0-2.60.13981272, VMware_bootbank_esx-ui_1.33.3-13454473, VMware_bootbank_esx-update_6.7.0-2.60.13981272, VMware_bootbank_vsan_6.7.0-2.60.13805960, VMware_bootbank_vsanhealth_6.7.0-2.60.13805961
       VIBs Removed: VMware_bootbank_cpu-microcode_6.7.0-1.28.10302608, VMware_bootbank_esx-base_6.7.0-2.48.13006603, VMware_bootbank_esx-ui_1.33.3-12923304, VMware_bootbank_esx-update_6.7.0-2.48.13006603, VMware_bootbank_vsan_6.7.0-2.48.12775451, VMware_bootbank_vsanhealth_6.7.0-2.48.12775454
       VIBs Skipped: VMW_bootbank_ata-libata-92_3.00.9.2-16vmw.670.0.0.8169922, VMW_bootbank_ata-pata-amd_0.3.10-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-atiixp_0.4.6-4vmw.670.0.0.8169922, VMW_bootbank_ata-pata-cmd64x_0.2.5-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-hpt3x2n_0.3.4-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-pdc2027x_1.0-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-serverworks_0.4.3-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-sil680_0.4.8-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-via_0.3.3-2vmw.670.0.0.8169922, VMW_bootbank_block-cciss_3.6.14-10vmw.670.0.0.8169922, VMW_bootbank_bnxtnet_20.6.101.7-21vmw.670.2.48.13006603, VMW_bootbank_bnxtroce_20.6.101.0-20vmw.670.1.28.10302608, VMW_bootbank_brcmfcoe_11.4.1078.19-12vmw.670.2.48.13006603, VMW_bootbank_char-random_1.0-3vmw.670.0.0.8169922, VMW_bootbank_ehci-ehci-hcd_1.0-4vmw.670.0.0.8169922, VMW_bootbank_elxiscsi_11.4.1174.0-2vmw.670.0.0.8169922, VMW_bootbank_elxnet_11.4.1095.0-5vmw.670.1.28.10302608, VMW_bootbank_hid-hid_1.0-3vmw.670.0.0.8169922, VMW_bootbank_i40en_1.3.1-23vmw.670.2.48.13006603, VMW_bootbank_iavmd_1.2.0.1011-2vmw.670.0.0.8169922, VMW_bootbank_igbn_0.1.1.0-4vmw.670.2.48.13006603, VMW_bootbank_ima-qla4xxx_2.02.18-1vmw.670.0.0.8169922, VMW_bootbank_ipmi-ipmi-devintf_39.1-5vmw.670.1.28.10302608, VMW_bootbank_ipmi-ipmi-msghandler_39.1-5vmw.670.1.28.10302608, VMW_bootbank_ipmi-ipmi-si-drv_39.1-5vmw.670.1.28.10302608, VMW_bootbank_iser_1.0.0.0-1vmw.670.1.28.10302608, VMW_bootbank_ixgben_1.4.1-18vmw.670.2.48.13006603, VMW_bootbank_lpfc_11.4.33.18-12vmw.670.2.48.13006603, VMW_bootbank_lpnic_11.4.59.0-1vmw.670.0.0.8169922, VMW_bootbank_lsi-mr3_7.708.07.00-2vmw.670.2.48.13006603, VMW_bootbank_lsi-msgpt2_20.00.05.00-1vmw.670.2.48.13006603, VMW_bootbank_lsi-msgpt35_09.00.00.00-1vmw.670.2.48.13006603, VMW_bootbank_lsi-msgpt3_17.00.01.00-3vmw.670.2.48.13006603, VMW_bootbank_misc-cnic-register_1.78.75.v60.7-1vmw.670.0.0.8169922, VMW_bootbank_misc-drivers_6.7.0-2.48.13006603, VMW_bootbank_mtip32xx-native_3.9.8-1vmw.670.1.28.10302608, VMW_bootbank_ne1000_0.8.4-2vmw.670.2.48.13006603, VMW_bootbank_nenic_1.0.21.0-1vmw.670.1.28.10302608, VMW_bootbank_net-bnx2_2.2.4f.v60.10-2vmw.670.0.0.8169922, VMW_bootbank_net-bnx2x_1.78.80.v60.12-2vmw.670.0.0.8169922, VMW_bootbank_net-cdc-ether_1.0-3vmw.670.0.0.8169922, VMW_bootbank_net-cnic_1.78.76.v60.13-2vmw.670.0.0.8169922, VMW_bootbank_net-e1000_8.0.3.1-5vmw.670.0.0.8169922, VMW_bootbank_net-e1000e_3.2.2.1-2vmw.670.0.0.8169922, VMW_bootbank_net-enic_2.1.2.38-2vmw.670.0.0.8169922, VMW_bootbank_net-fcoe_1.0.29.9.3-7vmw.670.0.0.8169922, VMW_bootbank_net-forcedeth_0.61-2vmw.670.0.0.8169922, VMW_bootbank_net-igb_5.0.5.1.1-5vmw.670.0.0.8169922, VMW_bootbank_net-ixgbe_3.7.13.7.14iov-20vmw.670.0.0.8169922, VMW_bootbank_net-libfcoe-92_1.0.24.9.4-8vmw.670.0.0.8169922, VMW_bootbank_net-mlx4-core_1.9.7.0-1vmw.670.0.0.8169922, VMW_bootbank_net-mlx4-en_1.9.7.0-1vmw.670.0.0.8169922, VMW_bootbank_net-nx-nic_5.0.621-5vmw.670.0.0.8169922, VMW_bootbank_net-tg3_3.131d.v60.4-2vmw.670.0.0.8169922, VMW_bootbank_net-usbnet_1.0-3vmw.670.0.0.8169922, VMW_bootbank_net-vmxnet3_1.1.3.0-3vmw.670.2.48.13006603, VMW_bootbank_nfnic_4.0.0.17-0vmw.670.2.48.13006603, VMW_bootbank_nhpsa_2.0.22-3vmw.670.1.28.10302608, VMW_bootbank_nmlx4-core_3.17.13.1-1vmw.670.2.48.13006603, VMW_bootbank_nmlx4-en_3.17.13.1-1vmw.670.2.48.13006603, VMW_bootbank_nmlx4-rdma_3.17.13.1-1vmw.670.2.48.13006603, VMW_bootbank_nmlx5-core_4.17.13.1-1vmw.670.2.48.13006603, VMW_bootbank_nmlx5-rdma_4.17.13.1-1vmw.670.2.48.13006603, VMW_bootbank_ntg3_4.1.3.2-1vmw.670.1.28.10302608, VMW_bootbank_nvme_1.2.2.27-1vmw.670.2.48.13006603, VMW_bootbank_nvmxnet3-ens_2.0.0.21-1vmw.670.0.0.8169922, VMW_bootbank_nvmxnet3_2.0.0.29-1vmw.670.1.28.10302608, VMW_bootbank_ohci-usb-ohci_1.0-3vmw.670.0.0.8169922, VMW_bootbank_pvscsi_0.1-2vmw.670.0.0.8169922, VMW_bootbank_qcnic_1.0.2.0.4-1vmw.670.0.0.8169922, VMW_bootbank_qedentv_2.0.6.4-10vmw.670.1.28.10302608, VMW_bootbank_qfle3_1.0.50.11-9vmw.670.0.0.8169922, VMW_bootbank_qfle3f_1.0.25.0.2-14vmw.670.0.0.8169922, VMW_bootbank_qfle3i_1.0.2.3.9-3vmw.670.0.0.8169922, VMW_bootbank_qflge_1.1.0.11-1vmw.670.0.0.8169922, VMW_bootbank_sata-ahci_3.0-26vmw.670.0.0.8169922, VMW_bootbank_sata-ata-piix_2.12-10vmw.670.0.0.8169922, VMW_bootbank_sata-sata-nv_3.5-4vmw.670.0.0.8169922, VMW_bootbank_sata-sata-promise_2.12-3vmw.670.0.0.8169922, VMW_bootbank_sata-sata-sil24_1.1-1vmw.670.0.0.8169922, VMW_bootbank_sata-sata-sil_2.3-4vmw.670.0.0.8169922, VMW_bootbank_sata-sata-svw_2.3-3vmw.670.0.0.8169922, VMW_bootbank_scsi-aacraid_1.1.5.1-9vmw.670.0.0.8169922, VMW_bootbank_scsi-adp94xx_1.0.8.12-6vmw.670.0.0.8169922, VMW_bootbank_scsi-aic79xx_3.1-6vmw.670.0.0.8169922, VMW_bootbank_scsi-bnx2fc_1.78.78.v60.8-1vmw.670.0.0.8169922, VMW_bootbank_scsi-bnx2i_2.78.76.v60.8-1vmw.670.0.0.8169922, VMW_bootbank_scsi-fnic_1.5.0.45-3vmw.670.0.0.8169922, VMW_bootbank_scsi-hpsa_6.0.0.84-3vmw.670.0.0.8169922, VMW_bootbank_scsi-ips_7.12.05-4vmw.670.0.0.8169922, VMW_bootbank_scsi-iscsi-linux-92_1.0.0.2-3vmw.670.0.0.8169922, VMW_bootbank_scsi-libfc-92_1.0.40.9.3-5vmw.670.0.0.8169922, VMW_bootbank_scsi-megaraid-mbox_2.20.5.1-6vmw.670.0.0.8169922, VMW_bootbank_scsi-megaraid-sas_6.603.55.00-2vmw.670.0.0.8169922, VMW_bootbank_scsi-megaraid2_2.00.4-9vmw.670.0.0.8169922, VMW_bootbank_scsi-mpt2sas_19.00.00.00-2vmw.670.0.0.8169922, VMW_bootbank_scsi-mptsas_4.23.01.00-10vmw.670.0.0.8169922, VMW_bootbank_scsi-mptspi_4.23.01.00-10vmw.670.0.0.8169922, VMW_bootbank_scsi-qla4xxx_5.01.03.2-7vmw.670.0.0.8169922, VMW_bootbank_sfvmk_1.0.0.1003-6vmw.670.2.48.13006603, VMW_bootbank_shim-iscsi-linux-9-2-1-0_6.7.0-0.0.8169922, VMW_bootbank_shim-iscsi-linux-9-2-2-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libata-9-2-1-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libata-9-2-2-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libfc-9-2-1-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libfc-9-2-2-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libfcoe-9-2-1-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libfcoe-9-2-2-0_6.7.0-0.0.8169922, VMW_bootbank_shim-vmklinux-9-2-1-0_6.7.0-0.0.8169922, VMW_bootbank_shim-vmklinux-9-2-2-0_6.7.0-0.0.8169922, VMW_bootbank_shim-vmklinux-9-2-3-0_6.7.0-0.0.8169922, VMW_bootbank_smartpqi_1.0.1.553-12vmw.670.1.28.10302608, VMW_bootbank_uhci-usb-uhci_1.0-3vmw.670.0.0.8169922, VMW_bootbank_usb-storage-usb-storage_1.0-3vmw.670.0.0.8169922, VMW_bootbank_usbcore-usb_1.0-3vmw.670.0.0.8169922, VMW_bootbank_vmkata_0.1-1vmw.670.0.0.8169922, VMW_bootbank_vmkfcoe_1.0.0.1-1vmw.670.1.28.10302608, VMW_bootbank_vmkplexer-vmkplexer_6.7.0-0.0.8169922, VMW_bootbank_vmkusb_0.1-1vmw.670.2.48.13006603, VMW_bootbank_vmw-ahci_1.2.3-1vmw.670.1.28.10302608, VMW_bootbank_xhci-xhci_1.0-3vmw.670.0.0.8169922, VMware_bootbank_elx-esx-libelxima.so_11.4.1184.1-2.48.13006603, VMware_bootbank_esx-dvfilter-generic-fastpath_6.7.0-0.0.8169922, VMware_bootbank_esx-xserver_6.7.0-0.0.8169922, VMware_bootbank_lsu-hp-hpsa-plugin_2.0.0-16vmw.670.1.28.10302608, VMware_bootbank_lsu-intel-vmd-plugin_1.0.0-2vmw.670.1.28.10302608, VMware_bootbank_lsu-lsi-drivers-plugin_1.0.0-1vmw.670.2.48.13006603, VMware_bootbank_lsu-lsi-lsi-mr3-plugin_1.0.0-13vmw.670.1.28.10302608, VMware_bootbank_lsu-lsi-lsi-msgpt3-plugin_1.0.0-9vmw.670.2.48.13006603, VMware_bootbank_lsu-lsi-megaraid-sas-plugin_1.0.0-9vmw.670.0.0.8169922, VMware_bootbank_lsu-lsi-mpt2sas-plugin_2.0.0-7vmw.670.0.0.8169922, VMware_bootbank_lsu-smartpqi-plugin_1.0.0-3vmw.670.1.28.10302608, VMware_bootbank_native-misc-drivers_6.7.0-2.48.13006603, VMware_bootbank_qlnativefc_3.1.8.0-4vmw.670.2.48.13006603, VMware_bootbank_rste_2.0.2.0088-7vmw.670.0.0.8169922, VMware_bootbank_vmware-esx-esxcli-nvme-plugin_1.2.0.36-2.48.13006603, VMware_locker_tools-light_10.3.5.10430147-12986307
    [root@xd-1567-5028d:~] esxcli network firewall ruleset set -e false -r httpClient
    [root@xd-1567-5028d:~] reboot


    Version: 6.7.0 (Build 13981272)
    to:
    Version: 6.7.0 (Build 14320388)

    login as: root
    Using keyboard-interactive authentication.
    Password:
    The time and date of this login have been sent to the system logs.
    
    WARNING:
       All commands run on the ESXi shell are logged and may be included in
       support bundles. Do not provide passwords directly on the command line.
       Most tools can prompt for secrets or accept them from standard input.
    
    VMware offers supported, powerful system administration tools.  Please
    see www.vmware.com/go/sysadmintools for details.
    
    The ESXi Shell can be disabled by an administrative user. See the
    vSphere Security documentation for more information.
    [root@xd-1541-heptagon:~] esxcli software profile update -p ESXi-6.7.0-20191104001-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml
    Update Result
       Message: The update completed successfully, but the system needs to be rebooted for the changes to be effective.
       Reboot Required: true
       VIBs Installed: VMware_bootbank_cpu-microcode_6.7.0-3.77.15018017, VMware_bootbank_esx-base_6.7.0-3.77.15018017, VMware_bootbank_esx-update_6.7.0-3.77.15018017, VMware_bootbank_vsan_6.7.0-3.77.14914424, VMware_bootbank_vsanhe
       VIBs Removed: VMware_bootbank_cpu-microcode_6.7.0-2.69.14141615, VMware_bootbank_esx-base_6.7.0-3.73.14320388, VMware_bootbank_esx-update_6.7.0-3.73.14320388, VMware_bootbank_vsan_6.7.0-3.73.14263135, VMware_bootbank_vsanheal
       VIBs Skipped: VMW_bootbank_ata-libata-92_3.00.9.2-16vmw.670.0.0.8169922, VMW_bootbank_ata-pata-amd_0.3.10-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-atiixp_0.4.6-4vmw.670.0.0.8169922, VMW_bootbank_ata-pata-cmd64x_0.2.5-3vmw.ank_ata-pata-hpt3x2n_0.3.4-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-pdc2027x_1.0-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-serverworks_0.4.3-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-sil680_0.4.8-3vmw.670.0.0.8169922, VMW.3-2vmw.670.0.0.8169922, VMW_bootbank_block-cciss_3.6.14-10vmw.670.0.0.8169922, VMW_bootbank_bnxtnet_20.6.101.7-24vmw.670.3.73.14320388, VMW_bootbank_bnxtroce_20.6.101.0-20vmw.670.1.28.10302608, VMW_bootbank_brcmfcoe_11.4.1078.2 VMW_bootbank_char-random_1.0-3vmw.670.0.0.8169922, VMW_bootbank_ehci-ehci-hcd_1.0-4vmw.670.0.0.8169922, VMW_bootbank_elxiscsi_11.4.1174.0-2vmw.670.0.0.8169922, VMW_bootbank_elxnet_11.4.1097.0-5vmw.670.3.73.14320388, VMW_bootban.8169922, VMW_bootbank_i40en_1.8.1.9-2vmw.670.3.73.14320388, VMW_bootbank_iavmd_1.2.0.1011-2vmw.670.0.0.8169922, VMW_bootbank_igbn_0.1.1.0-5vmw.670.3.73.14320388, VMW_bootbank_ima-qla4xxx_2.02.18-1vmw.670.0.0.8169922, VMW_bootba5vmw.670.1.28.10302608, VMW_bootbank_ipmi-ipmi-msghandler_39.1-5vmw.670.1.28.10302608, VMW_bootbank_ipmi-ipmi-si-drv_39.1-5vmw.670.1.28.10302608, VMW_bootbank_iser_1.0.0.0-1vmw.670.1.28.10302608, VMW_bootbank_ixgben_1.7.1.16-1vmootbank_lpfc_11.4.33.25-14vmw.670.3.73.14320388, VMW_bootbank_lpnic_11.4.59.0-1vmw.670.0.0.8169922, VMW_bootbank_lsi-mr3_7.708.07.00-3vmw.670.3.73.14320388, VMW_bootbank_lsi-msgpt2_20.00.06.00-2vmw.670.3.73.14320388, VMW_bootban5vmw.670.3.73.14320388, VMW_bootbank_lsi-msgpt3_17.00.02.00-1vmw.670.3.73.14320388, VMW_bootbank_misc-cnic-register_1.78.75.v60.7-1vmw.670.0.0.8169922, VMW_bootbank_misc-drivers_6.7.0-2.48.13006603, VMW_bootbank_mtip32xx-native_08, VMW_bootbank_ne1000_0.8.4-2vmw.670.2.48.13006603, VMW_bootbank_nenic_1.0.29.0-1vmw.670.3.73.14320388, VMW_bootbank_net-bnx2_2.2.4f.v60.10-2vmw.670.0.0.8169922, VMW_bootbank_net-bnx2x_1.78.80.v60.12-2vmw.670.0.0.8169922, VMW_-3vmw.670.0.0.8169922, VMW_bootbank_net-cnic_1.78.76.v60.13-2vmw.670.0.0.8169922, VMW_bootbank_net-e1000_8.0.3.1-5vmw.670.0.0.8169922, VMW_bootbank_net-e1000e_3.2.2.1-2vmw.670.0.0.8169922, VMW_bootbank_net-enic_2.1.2.38-2vmw.670_net-fcoe_1.0.29.9.3-7vmw.670.0.0.8169922, VMW_bootbank_net-forcedeth_0.61-2vmw.670.0.0.8169922, VMW_bootbank_net-igb_5.0.5.1.1-5vmw.670.0.0.8169922, VMW_bootbank_net-ixgbe_3.7.13.7.14iov-20vmw.670.0.0.8169922, VMW_bootbank_net-.670.0.0.8169922, VMW_bootbank_net-mlx4-core_1.9.7.0-1vmw.670.0.0.8169922, VMW_bootbank_net-mlx4-en_1.9.7.0-1vmw.670.0.0.8169922, VMW_bootbank_net-nx-nic_5.0.621-5vmw.670.0.0.8169922, VMW_bootbank_net-tg3_3.131d.v60.4-2vmw.670.0et-usbnet_1.0-3vmw.670.0.0.8169922, VMW_bootbank_net-vmxnet3_1.1.3.0-3vmw.670.2.48.13006603, VMW_bootbank_nfnic_4.0.0.29-0vmw.670.3.73.14320388, VMW_bootbank_nhpsa_2.0.22-3vmw.670.1.28.10302608, VMW_bootbank_nmlx4-core_3.17.13.1MW_bootbank_nmlx4-en_3.17.13.1-1vmw.670.2.48.13006603, VMW_bootbank_nmlx4-rdma_3.17.13.1-1vmw.670.2.48.13006603, VMW_bootbank_nmlx5-core_4.17.13.1-1vmw.670.3.73.14320388, VMW_bootbank_nmlx5-rdma_4.17.13.1-1vmw.670.2.48.13006603,-1vmw.670.1.28.10302608, VMW_bootbank_nvme_1.2.2.28-1vmw.670.3.73.14320388, VMW_bootbank_nvmxnet3-ens_2.0.0.21-1vmw.670.0.0.8169922, VMW_bootbank_nvmxnet3_2.0.0.29-1vmw.670.1.28.10302608, VMW_bootbank_ohci-usb-ohci_1.0-3vmw.670.pvscsi_0.1-2vmw.670.0.0.8169922, VMW_bootbank_qcnic_1.0.2.0.4-1vmw.670.0.0.8169922, VMW_bootbank_qedentv_2.0.6.4-10vmw.670.1.28.10302608, VMW_bootbank_qfle3_1.0.50.11-9vmw.670.0.0.8169922, VMW_bootbank_qfle3f_1.0.25.0.2-14vmw.67k_qfle3i_1.0.2.3.9-3vmw.670.0.0.8169922, VMW_bootbank_qflge_1.1.0.11-1vmw.670.0.0.8169922, VMW_bootbank_sata-ahci_3.0-26vmw.670.0.0.8169922, VMW_bootbank_sata-ata-piix_2.12-10vmw.670.0.0.8169922, VMW_bootbank_sata-sata-nv_3.5-4votbank_sata-sata-promise_2.12-3vmw.670.0.0.8169922, VMW_bootbank_sata-sata-sil24_1.1-1vmw.670.0.0.8169922, VMW_bootbank_sata-sata-sil_2.3-4vmw.670.0.0.8169922, VMW_bootbank_sata-sata-svw_2.3-3vmw.670.0.0.8169922, VMW_bootbank_sc0.0.0.8169922, VMW_bootbank_scsi-adp94xx_1.0.8.12-6vmw.670.0.0.8169922, VMW_bootbank_scsi-aic79xx_3.1-6vmw.670.0.0.8169922, VMW_bootbank_scsi-bnx2fc_1.78.78.v60.8-1vmw.670.0.0.8169922, VMW_bootbank_scsi-bnx2i_2.78.76.v60.8-1vmw.ank_scsi-fnic_1.5.0.45-3vmw.670.0.0.8169922, VMW_bootbank_scsi-hpsa_6.0.0.84-3vmw.670.0.0.8169922, VMW_bootbank_scsi-ips_7.12.05-4vmw.670.0.0.8169922, VMW_bootbank_scsi-iscsi-linux-92_1.0.0.2-3vmw.670.0.0.8169922, VMW_bootbank_smw.670.0.0.8169922, VMW_bootbank_scsi-megaraid-mbox_2.20.5.1-6vmw.670.0.0.8169922, VMW_bootbank_scsi-megaraid-sas_6.603.55.00-2vmw.670.0.0.8169922, VMW_bootbank_scsi-megaraid2_2.00.4-9vmw.670.0.0.8169922, VMW_bootbank_scsi-mpt2s0.8169922, VMW_bootbank_scsi-mptsas_4.23.01.00-10vmw.670.0.0.8169922, VMW_bootbank_scsi-mptspi_4.23.01.00-10vmw.670.0.0.8169922, VMW_bootbank_scsi-qla4xxx_5.01.03.2-7vmw.670.0.0.8169922, VMW_bootbank_sfvmk_1.0.0.1003-6vmw.670.3.shim-iscsi-linux-9-2-1-0_6.7.0-0.0.8169922, VMW_bootbank_shim-iscsi-linux-9-2-2-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libata-9-2-1-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libata-9-2-2-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libfc, VMW_bootbank_shim-libfc-9-2-2-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libfcoe-9-2-1-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libfcoe-9-2-2-0_6.7.0-0.0.8169922, VMW_bootbank_shim-vmklinux-9-2-1-0_6.7.0-0.0.8169922, VMW_bootbank_sh0.0.8169922, VMW_bootbank_shim-vmklinux-9-2-3-0_6.7.0-0.0.8169922, VMW_bootbank_smartpqi_1.0.1.553-28vmw.670.3.73.14320388, VMW_bootbank_uhci-usb-uhci_1.0-3vmw.670.0.0.8169922, VMW_bootbank_usb-storage-usb-storage_1.0-3vmw.670.0sbcore-usb_1.0-3vmw.670.0.0.8169922, VMW_bootbank_vmkata_0.1-1vmw.670.0.0.8169922, VMW_bootbank_vmkfcoe_1.0.0.1-1vmw.670.1.28.10302608, VMW_bootbank_vmkplexer-vmkplexer_6.7.0-0.0.8169922, VMW_bootbank_vmkusb_0.1-1vmw.670.2.48.13hci_1.2.8-1vmw.670.3.73.14320388, VMW_bootbank_xhci-xhci_1.0-3vmw.670.0.0.8169922, VMware_bootbank_elx-esx-libelxima.so_11.4.1184.1-2.48.13006603, VMware_bootbank_esx-dvfilter-generic-fastpath_6.7.0-0.0.8169922, VMware_bootbank_ware_bootbank_esx-xserver_6.7.0-3.73.14320388, VMware_bootbank_lsu-hp-hpsa-plugin_2.0.0-16vmw.670.1.28.10302608, VMware_bootbank_lsu-intel-vmd-plugin_1.0.0-2vmw.670.1.28.10302608, VMware_bootbank_lsu-lsi-drivers-plugin_1.0.0-1vme_bootbank_lsu-lsi-lsi-mr3-plugin_1.0.0-13vmw.670.1.28.10302608, VMware_bootbank_lsu-lsi-lsi-msgpt3-plugin_1.0.0-9vmw.670.2.48.13006603, VMware_bootbank_lsu-lsi-megaraid-sas-plugin_1.0.0-9vmw.670.0.0.8169922, VMware_bootbank_lsu7vmw.670.0.0.8169922, VMware_bootbank_lsu-smartpqi-plugin_1.0.0-3vmw.670.1.28.10302608, VMware_bootbank_native-misc-drivers_6.7.0-2.48.13006603, VMware_bootbank_qlnativefc_3.1.8.0-5vmw.670.3.73.14320388, VMware_bootbank_rste_2.022, VMware_bootbank_vmware-esx-esxcli-nvme-plugin_1.2.0.36-2.48.13006603, VMware_locker_tools-light_10.3.10.12406962-14141615
    [root@xd-1541-heptagon:~] reboot


    Version: 6.7.0 (Build 14320388)
    to:
    Version: 6.7.0 (Build 15018017)

    login as: root
    Using keyboard-interactive authentication.
    Password:
    The time and date of this login have been sent to the system logs.
    
    WARNING:
       All commands run on the ESXi shell are logged and may be included in
       support bundles. Do not provide passwords directly on the command line.
       Most tools can prompt for secrets or accept them from standard input.
    
    VMware offers supported, powerful system administration tools.  Please
    see www.vmware.com/go/sysadmintools for details.
    
    The ESXi Shell can be disabled by an administrative user. See the
    vSphere Security documentation for more information.
    [root@xd-1541-5028d:~] esxcli network firewall ruleset set -e true -r httpClient
    [root@xd-1541-5028d:~] esxcli software profile update -p ESXi-6.7.0-20191104001-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml
    Update Result
       Message: The update completed successfully, but the system needs to be rebooted for the changes to be effective.
       Reboot Required: true
       VIBs Installed: VMware_bootbank_cpu-microcode_6.7.0-3.77.15018017, VMware_bootbank_esx-base_6.7.0-3.77.15018017, VMware_bootbank_esx-update_6.7.0-3.77.15018017, VMware_bootbank_vsan_6.7.0-3.77.14914424, VMware_bootbank_vsanhealth_6.7.0-3.77.14914425
       VIBs Removed: VMware_bootbank_cpu-microcode_6.7.0-2.69.14141615, VMware_bootbank_esx-base_6.7.0-3.73.14320388, VMware_bootbank_esx-update_6.7.0-3.73.14320388, VMware_bootbank_vsan_6.7.0-3.73.14263135, VMware_bootbank_vsanhealth_6.7.0-3.73.14263064
       VIBs Skipped: VMW_bootbank_ata-libata-92_3.00.9.2-16vmw.670.0.0.8169922, VMW_bootbank_ata-pata-amd_0.3.10-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-atiixp_0.4.6-4vmw.670.0.0.8169922, VMW_bootbank_ata-pata-cmd64x_0.2.5-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-hpt3x2n_0.3.4-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-pdc2027x_1.0-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-serverworks_0.4.3-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-sil680_0.4.8-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-via_0.3.3-2vmw.670.0.0.8169922, VMW_bootbank_block-cciss_3.6.14-10vmw.670.0.0.8169922, VMW_bootbank_bnxtnet_20.6.101.7-24vmw.670.3.73.14320388, VMW_bootbank_bnxtroce_20.6.101.0-20vmw.670.1.28.10302608, VMW_bootbank_brcmfcoe_11.4.1078.25-14vmw.670.3.73.14320388, VMW_bootbank_char-random_1.0-3vmw.670.0.0.8169922, VMW_bootbank_ehci-ehci-hcd_1.0-4vmw.670.0.0.8169922, VMW_bootbank_elxiscsi_11.4.1174.0-2vmw.670.0.0.8169922, VMW_bootbank_elxnet_11.4.1097.0-5vmw.670.3.73.14320388, VMW_bootbank_hid-hid_1.0-3vmw.670.0.0.8169922, VMW_bootbank_i40en_1.8.1.9-2vmw.670.3.73.14320388, VMW_bootbank_iavmd_1.2.0.1011-2vmw.670.0.0.8169922, VMW_bootbank_igbn_0.1.1.0-5vmw.670.3.73.14320388, VMW_bootbank_ima-qla4xxx_2.02.18-1vmw.670.0.0.8169922, VMW_bootbank_ipmi-ipmi-devintf_39.1-5vmw.670.1.28.10302608, VMW_bootbank_ipmi-ipmi-msghandler_39.1-5vmw.670.1.28.10302608, VMW_bootbank_ipmi-ipmi-si-drv_39.1-5vmw.670.1.28.10302608, VMW_bootbank_iser_1.0.0.0-1vmw.670.1.28.10302608, VMW_bootbank_ixgben_1.7.1.16-1vmw.670.3.73.14320388, VMW_bootbank_lpfc_11.4.33.25-14vmw.670.3.73.14320388, VMW_bootbank_lpnic_11.4.59.0-1vmw.670.0.0.8169922, VMW_bootbank_lsi-mr3_7.708.07.00-3vmw.670.3.73.14320388, VMW_bootbank_lsi-msgpt2_20.00.06.00-2vmw.670.3.73.14320388, VMW_bootbank_lsi-msgpt35_09.00.00.00-5vmw.670.3.73.14320388, VMW_bootbank_lsi-msgpt3_17.00.02.00-1vmw.670.3.73.14320388, VMW_bootbank_misc-cnic-register_1.78.75.v60.7-1vmw.670.0.0.8169922, VMW_bootbank_misc-drivers_6.7.0-2.48.13006603, VMW_bootbank_mtip32xx-native_3.9.8-1vmw.670.1.28.10302608, VMW_bootbank_ne1000_0.8.4-2vmw.670.2.48.13006603, VMW_bootbank_nenic_1.0.29.0-1vmw.670.3.73.14320388, VMW_bootbank_net-bnx2_2.2.4f.v60.10-2vmw.670.0.0.8169922, VMW_bootbank_net-bnx2x_1.78.80.v60.12-2vmw.670.0.0.8169922, VMW_bootbank_net-cdc-ether_1.0-3vmw.670.0.0.8169922, VMW_bootbank_net-cnic_1.78.76.v60.13-2vmw.670.0.0.8169922, VMW_bootbank_net-e1000_8.0.3.1-5vmw.670.0.0.8169922, VMW_bootbank_net-e1000e_3.2.2.1-2vmw.670.0.0.8169922, VMW_bootbank_net-enic_2.1.2.38-2vmw.670.0.0.8169922, VMW_bootbank_net-fcoe_1.0.29.9.3-7vmw.670.0.0.8169922, VMW_bootbank_net-forcedeth_0.61-2vmw.670.0.0.8169922, VMW_bootbank_net-igb_5.0.5.1.1-5vmw.670.0.0.8169922, VMW_bootbank_net-ixgbe_3.7.13.7.14iov-20vmw.670.0.0.8169922, VMW_bootbank_net-libfcoe-92_1.0.24.9.4-8vmw.670.0.0.8169922, VMW_bootbank_net-mlx4-core_1.9.7.0-1vmw.670.0.0.8169922, VMW_bootbank_net-mlx4-en_1.9.7.0-1vmw.670.0.0.8169922, VMW_bootbank_net-nx-nic_5.0.621-5vmw.670.0.0.8169922, VMW_bootbank_net-tg3_3.131d.v60.4-2vmw.670.0.0.8169922, VMW_bootbank_net-usbnet_1.0-3vmw.670.0.0.8169922, VMW_bootbank_net-vmxnet3_1.1.3.0-3vmw.670.2.48.13006603, VMW_bootbank_nfnic_4.0.0.29-0vmw.670.3.73.14320388, VMW_bootbank_nhpsa_2.0.22-3vmw.670.1.28.10302608, VMW_bootbank_nmlx4-core_3.17.13.1-1vmw.670.2.48.13006603, VMW_bootbank_nmlx4-en_3.17.13.1-1vmw.670.2.48.13006603, VMW_bootbank_nmlx4-rdma_3.17.13.1-1vmw.670.2.48.13006603, VMW_bootbank_nmlx5-core_4.17.13.1-1vmw.670.3.73.14320388, VMW_bootbank_nmlx5-rdma_4.17.13.1-1vmw.670.2.48.13006603, VMW_bootbank_ntg3_4.1.3.2-1vmw.670.1.28.10302608, VMW_bootbank_nvme_1.2.2.28-1vmw.670.3.73.14320388, VMW_bootbank_nvmxnet3-ens_2.0.0.21-1vmw.670.0.0.8169922, VMW_bootbank_nvmxnet3_2.0.0.29-1vmw.670.1.28.10302608, VMW_bootbank_ohci-usb-ohci_1.0-3vmw.670.0.0.8169922, VMW_bootbank_pvscsi_0.1-2vmw.670.0.0.8169922, VMW_bootbank_qcnic_1.0.2.0.4-1vmw.670.0.0.8169922, VMW_bootbank_qedentv_2.0.6.4-10vmw.670.1.28.10302608, VMW_bootbank_qfle3_1.0.50.11-9vmw.670.0.0.8169922, VMW_bootbank_qfle3f_1.0.25.0.2-14vmw.670.0.0.8169922, VMW_bootbank_qfle3i_1.0.2.3.9-3vmw.670.0.0.8169922, VMW_bootbank_qflge_1.1.0.11-1vmw.670.0.0.8169922, VMW_bootbank_sata-ahci_3.0-26vmw.670.0.0.8169922, VMW_bootbank_sata-ata-piix_2.12-10vmw.670.0.0.8169922, VMW_bootbank_sata-sata-nv_3.5-4vmw.670.0.0.8169922, VMW_bootbank_sata-sata-promise_2.12-3vmw.670.0.0.8169922, VMW_bootbank_sata-sata-sil24_1.1-1vmw.670.0.0.8169922, VMW_bootbank_sata-sata-sil_2.3-4vmw.670.0.0.8169922, VMW_bootbank_sata-sata-svw_2.3-3vmw.670.0.0.8169922, VMW_bootbank_scsi-aacraid_1.1.5.1-9vmw.670.0.0.8169922, VMW_bootbank_scsi-adp94xx_1.0.8.12-6vmw.670.0.0.8169922, VMW_bootbank_scsi-aic79xx_3.1-6vmw.670.0.0.8169922, VMW_bootbank_scsi-bnx2fc_1.78.78.v60.8-1vmw.670.0.0.8169922, VMW_bootbank_scsi-bnx2i_2.78.76.v60.8-1vmw.670.0.0.8169922, VMW_bootbank_scsi-fnic_1.5.0.45-3vmw.670.0.0.8169922, VMW_bootbank_scsi-hpsa_6.0.0.84-3vmw.670.0.0.8169922, VMW_bootbank_scsi-ips_7.12.05-4vmw.670.0.0.8169922, VMW_bootbank_scsi-iscsi-linux-92_1.0.0.2-3vmw.670.0.0.8169922, VMW_bootbank_scsi-libfc-92_1.0.40.9.3-5vmw.670.0.0.8169922, VMW_bootbank_scsi-megaraid-mbox_2.20.5.1-6vmw.670.0.0.8169922, VMW_bootbank_scsi-megaraid-sas_6.603.55.00-2vmw.670.0.0.8169922, VMW_bootbank_scsi-megaraid2_2.00.4-9vmw.670.0.0.8169922, VMW_bootbank_scsi-mpt2sas_19.00.00.00-2vmw.670.0.0.8169922, VMW_bootbank_scsi-mptsas_4.23.01.00-10vmw.670.0.0.8169922, VMW_bootbank_scsi-mptspi_4.23.01.00-10vmw.670.0.0.8169922, VMW_bootbank_scsi-qla4xxx_5.01.03.2-7vmw.670.0.0.8169922, VMW_bootbank_sfvmk_1.0.0.1003-6vmw.670.3.73.14320388, VMW_bootbank_shim-iscsi-linux-9-2-1-0_6.7.0-0.0.8169922, VMW_bootbank_shim-iscsi-linux-9-2-2-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libata-9-2-1-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libata-9-2-2-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libfc-9-2-1-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libfc-9-2-2-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libfcoe-9-2-1-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libfcoe-9-2-2-0_6.7.0-0.0.8169922, VMW_bootbank_shim-vmklinux-9-2-1-0_6.7.0-0.0.8169922, VMW_bootbank_shim-vmklinux-9-2-2-0_6.7.0-0.0.8169922, VMW_bootbank_shim-vmklinux-9-2-3-0_6.7.0-0.0.8169922, VMW_bootbank_smartpqi_1.0.1.553-28vmw.670.3.73.14320388, VMW_bootbank_uhci-usb-uhci_1.0-3vmw.670.0.0.8169922, VMW_bootbank_usb-storage-usb-storage_1.0-3vmw.670.0.0.8169922, VMW_bootbank_usbcore-usb_1.0-3vmw.670.0.0.8169922, VMW_bootbank_vmkata_0.1-1vmw.670.0.0.8169922, VMW_bootbank_vmkfcoe_1.0.0.1-1vmw.670.1.28.10302608, VMW_bootbank_vmkplexer-vmkplexer_6.7.0-0.0.8169922, VMW_bootbank_vmkusb_0.1-1vmw.670.2.48.13006603, VMW_bootbank_vmw-ahci_1.2.8-1vmw.670.3.73.14320388, VMW_bootbank_xhci-xhci_1.0-3vmw.670.0.0.8169922, VMware_bootbank_elx-esx-libelxima.so_11.4.1184.1-2.48.13006603, VMware_bootbank_esx-dvfilter-generic-fastpath_6.7.0-0.0.8169922, VMware_bootbank_esx-ui_1.33.4-14093553, VMware_bootbank_esx-xserver_6.7.0-3.73.14320388, VMware_bootbank_lsu-hp-hpsa-plugin_2.0.0-16vmw.670.1.28.10302608, VMware_bootbank_lsu-intel-vmd-plugin_1.0.0-2vmw.670.1.28.10302608, VMware_bootbank_lsu-lsi-drivers-plugin_1.0.0-1vmw.670.2.48.13006603, VMware_bootbank_lsu-lsi-lsi-mr3-plugin_1.0.0-13vmw.670.1.28.10302608, VMware_bootbank_lsu-lsi-lsi-msgpt3-plugin_1.0.0-9vmw.670.2.48.13006603, VMware_bootbank_lsu-lsi-megaraid-sas-plugin_1.0.0-9vmw.670.0.0.8169922, VMware_bootbank_lsu-lsi-mpt2sas-plugin_2.0.0-7vmw.670.0.0.8169922, VMware_bootbank_lsu-smartpqi-plugin_1.0.0-3vmw.670.1.28.10302608, VMware_bootbank_native-misc-drivers_6.7.0-2.48.13006603, VMware_bootbank_qlnativefc_3.1.8.0-5vmw.670.3.73.14320388, VMware_bootbank_rste_2.0.2.0088-7vmw.670.0.0.8169922, VMware_bootbank_vmware-esx-esxcli-nvme-plugin_1.2.0.36-2.48.13006603, VMware_locker_tools-light_10.3.10.12406962-14141615
    [root@xd-1541-5028d:~] esxcli network firewall ruleset set -e false -r httpClient
    [root@xd-1541-5028d:~] reboot


    Version: 6.7.0 (Build 14320388)
    to:
    Version: 6.7.0 (Build 15018017)

    login as: root
    Using keyboard-interactive authentication.
    Password:
    The time and date of this login have been sent to the system logs.
    
    WARNING:
       All commands run on the ESXi shell are logged and may be included in
       support bundles. Do not provide passwords directly on the command line.
       Most tools can prompt for secrets or accept them from standard input.
    
    VMware offers supported, powerful system administration tools.  Please
    see www.vmware.com/go/sysadmintools for details.
    
    The ESXi Shell can be disabled by an administrative user. See the
    vSphere Security documentation for more information.
    [root@xd-1541-heptagon:~] esxcli software profile update -p ESXi-6.7.0-20191104001-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml
    Update Result
       Message: The update completed successfully, but the system needs to be rebooted for the changes to be effective.
       Reboot Required: true
       VIBs Installed: VMware_bootbank_cpu-microcode_6.7.0-3.77.15018017, VMware_bootbank_esx-base_6.7.0-3.77.15018017, VMware_bootbank_esx-update_6.7.0-3.77.15018017, VMware_bootbank_vsan_6.7.0-3.77.14914424, VMware_bootbank_vsanhe
       VIBs Removed: VMware_bootbank_cpu-microcode_6.7.0-2.69.14141615, VMware_bootbank_esx-base_6.7.0-3.73.14320388, VMware_bootbank_esx-update_6.7.0-3.73.14320388, VMware_bootbank_vsan_6.7.0-3.73.14263135, VMware_bootbank_vsanheal
       VIBs Skipped: VMW_bootbank_ata-libata-92_3.00.9.2-16vmw.670.0.0.8169922, VMW_bootbank_ata-pata-amd_0.3.10-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-atiixp_0.4.6-4vmw.670.0.0.8169922, VMW_bootbank_ata-pata-cmd64x_0.2.5-3vmw.ank_ata-pata-hpt3x2n_0.3.4-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-pdc2027x_1.0-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-serverworks_0.4.3-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-sil680_0.4.8-3vmw.670.0.0.8169922, VMW.3-2vmw.670.0.0.8169922, VMW_bootbank_block-cciss_3.6.14-10vmw.670.0.0.8169922, VMW_bootbank_bnxtnet_20.6.101.7-24vmw.670.3.73.14320388, VMW_bootbank_bnxtroce_20.6.101.0-20vmw.670.1.28.10302608, VMW_bootbank_brcmfcoe_11.4.1078.2 VMW_bootbank_char-random_1.0-3vmw.670.0.0.8169922, VMW_bootbank_ehci-ehci-hcd_1.0-4vmw.670.0.0.8169922, VMW_bootbank_elxiscsi_11.4.1174.0-2vmw.670.0.0.8169922, VMW_bootbank_elxnet_11.4.1097.0-5vmw.670.3.73.14320388, VMW_bootban.8169922, VMW_bootbank_i40en_1.8.1.9-2vmw.670.3.73.14320388, VMW_bootbank_iavmd_1.2.0.1011-2vmw.670.0.0.8169922, VMW_bootbank_igbn_0.1.1.0-5vmw.670.3.73.14320388, VMW_bootbank_ima-qla4xxx_2.02.18-1vmw.670.0.0.8169922, VMW_bootba5vmw.670.1.28.10302608, VMW_bootbank_ipmi-ipmi-msghandler_39.1-5vmw.670.1.28.10302608, VMW_bootbank_ipmi-ipmi-si-drv_39.1-5vmw.670.1.28.10302608, VMW_bootbank_iser_1.0.0.0-1vmw.670.1.28.10302608, VMW_bootbank_ixgben_1.7.1.16-1vmootbank_lpfc_11.4.33.25-14vmw.670.3.73.14320388, VMW_bootbank_lpnic_11.4.59.0-1vmw.670.0.0.8169922, VMW_bootbank_lsi-mr3_7.708.07.00-3vmw.670.3.73.14320388, VMW_bootbank_lsi-msgpt2_20.00.06.00-2vmw.670.3.73.14320388, VMW_bootban5vmw.670.3.73.14320388, VMW_bootbank_lsi-msgpt3_17.00.02.00-1vmw.670.3.73.14320388, VMW_bootbank_misc-cnic-register_1.78.75.v60.7-1vmw.670.0.0.8169922, VMW_bootbank_misc-drivers_6.7.0-2.48.13006603, VMW_bootbank_mtip32xx-native_08, VMW_bootbank_ne1000_0.8.4-2vmw.670.2.48.13006603, VMW_bootbank_nenic_1.0.29.0-1vmw.670.3.73.14320388, VMW_bootbank_net-bnx2_2.2.4f.v60.10-2vmw.670.0.0.8169922, VMW_bootbank_net-bnx2x_1.78.80.v60.12-2vmw.670.0.0.8169922, VMW_-3vmw.670.0.0.8169922, VMW_bootbank_net-cnic_1.78.76.v60.13-2vmw.670.0.0.8169922, VMW_bootbank_net-e1000_8.0.3.1-5vmw.670.0.0.8169922, VMW_bootbank_net-e1000e_3.2.2.1-2vmw.670.0.0.8169922, VMW_bootbank_net-enic_2.1.2.38-2vmw.670_net-fcoe_1.0.29.9.3-7vmw.670.0.0.8169922, VMW_bootbank_net-forcedeth_0.61-2vmw.670.0.0.8169922, VMW_bootbank_net-igb_5.0.5.1.1-5vmw.670.0.0.8169922, VMW_bootbank_net-ixgbe_3.7.13.7.14iov-20vmw.670.0.0.8169922, VMW_bootbank_net-.670.0.0.8169922, VMW_bootbank_net-mlx4-core_1.9.7.0-1vmw.670.0.0.8169922, VMW_bootbank_net-mlx4-en_1.9.7.0-1vmw.670.0.0.8169922, VMW_bootbank_net-nx-nic_5.0.621-5vmw.670.0.0.8169922, VMW_bootbank_net-tg3_3.131d.v60.4-2vmw.670.0et-usbnet_1.0-3vmw.670.0.0.8169922, VMW_bootbank_net-vmxnet3_1.1.3.0-3vmw.670.2.48.13006603, VMW_bootbank_nfnic_4.0.0.29-0vmw.670.3.73.14320388, VMW_bootbank_nhpsa_2.0.22-3vmw.670.1.28.10302608, VMW_bootbank_nmlx4-core_3.17.13.1MW_bootbank_nmlx4-en_3.17.13.1-1vmw.670.2.48.13006603, VMW_bootbank_nmlx4-rdma_3.17.13.1-1vmw.670.2.48.13006603, VMW_bootbank_nmlx5-core_4.17.13.1-1vmw.670.3.73.14320388, VMW_bootbank_nmlx5-rdma_4.17.13.1-1vmw.670.2.48.13006603,-1vmw.670.1.28.10302608, VMW_bootbank_nvme_1.2.2.28-1vmw.670.3.73.14320388, VMW_bootbank_nvmxnet3-ens_2.0.0.21-1vmw.670.0.0.8169922, VMW_bootbank_nvmxnet3_2.0.0.29-1vmw.670.1.28.10302608, VMW_bootbank_ohci-usb-ohci_1.0-3vmw.670.pvscsi_0.1-2vmw.670.0.0.8169922, VMW_bootbank_qcnic_1.0.2.0.4-1vmw.670.0.0.8169922, VMW_bootbank_qedentv_2.0.6.4-10vmw.670.1.28.10302608, VMW_bootbank_qfle3_1.0.50.11-9vmw.670.0.0.8169922, VMW_bootbank_qfle3f_1.0.25.0.2-14vmw.67k_qfle3i_1.0.2.3.9-3vmw.670.0.0.8169922, VMW_bootbank_qflge_1.1.0.11-1vmw.670.0.0.8169922, VMW_bootbank_sata-ahci_3.0-26vmw.670.0.0.8169922, VMW_bootbank_sata-ata-piix_2.12-10vmw.670.0.0.8169922, VMW_bootbank_sata-sata-nv_3.5-4votbank_sata-sata-promise_2.12-3vmw.670.0.0.8169922, VMW_bootbank_sata-sata-sil24_1.1-1vmw.670.0.0.8169922, VMW_bootbank_sata-sata-sil_2.3-4vmw.670.0.0.8169922, VMW_bootbank_sata-sata-svw_2.3-3vmw.670.0.0.8169922, VMW_bootbank_sc0.0.0.8169922, VMW_bootbank_scsi-adp94xx_1.0.8.12-6vmw.670.0.0.8169922, VMW_bootbank_scsi-aic79xx_3.1-6vmw.670.0.0.8169922, VMW_bootbank_scsi-bnx2fc_1.78.78.v60.8-1vmw.670.0.0.8169922, VMW_bootbank_scsi-bnx2i_2.78.76.v60.8-1vmw.ank_scsi-fnic_1.5.0.45-3vmw.670.0.0.8169922, VMW_bootbank_scsi-hpsa_6.0.0.84-3vmw.670.0.0.8169922, VMW_bootbank_scsi-ips_7.12.05-4vmw.670.0.0.8169922, VMW_bootbank_scsi-iscsi-linux-92_1.0.0.2-3vmw.670.0.0.8169922, VMW_bootbank_smw.670.0.0.8169922, VMW_bootbank_scsi-megaraid-mbox_2.20.5.1-6vmw.670.0.0.8169922, VMW_bootbank_scsi-megaraid-sas_6.603.55.00-2vmw.670.0.0.8169922, VMW_bootbank_scsi-megaraid2_2.00.4-9vmw.670.0.0.8169922, VMW_bootbank_scsi-mpt2s0.8169922, VMW_bootbank_scsi-mptsas_4.23.01.00-10vmw.670.0.0.8169922, VMW_bootbank_scsi-mptspi_4.23.01.00-10vmw.670.0.0.8169922, VMW_bootbank_scsi-qla4xxx_5.01.03.2-7vmw.670.0.0.8169922, VMW_bootbank_sfvmk_1.0.0.1003-6vmw.670.3.shim-iscsi-linux-9-2-1-0_6.7.0-0.0.8169922, VMW_bootbank_shim-iscsi-linux-9-2-2-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libata-9-2-1-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libata-9-2-2-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libfc, VMW_bootbank_shim-libfc-9-2-2-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libfcoe-9-2-1-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libfcoe-9-2-2-0_6.7.0-0.0.8169922, VMW_bootbank_shim-vmklinux-9-2-1-0_6.7.0-0.0.8169922, VMW_bootbank_sh0.0.8169922, VMW_bootbank_shim-vmklinux-9-2-3-0_6.7.0-0.0.8169922, VMW_bootbank_smartpqi_1.0.1.553-28vmw.670.3.73.14320388, VMW_bootbank_uhci-usb-uhci_1.0-3vmw.670.0.0.8169922, VMW_bootbank_usb-storage-usb-storage_1.0-3vmw.670.0sbcore-usb_1.0-3vmw.670.0.0.8169922, VMW_bootbank_vmkata_0.1-1vmw.670.0.0.8169922, VMW_bootbank_vmkfcoe_1.0.0.1-1vmw.670.1.28.10302608, VMW_bootbank_vmkplexer-vmkplexer_6.7.0-0.0.8169922, VMW_bootbank_vmkusb_0.1-1vmw.670.2.48.13hci_1.2.8-1vmw.670.3.73.14320388, VMW_bootbank_xhci-xhci_1.0-3vmw.670.0.0.8169922, VMware_bootbank_elx-esx-libelxima.so_11.4.1184.1-2.48.13006603, VMware_bootbank_esx-dvfilter-generic-fastpath_6.7.0-0.0.8169922, VMware_bootbank_ware_bootbank_esx-xserver_6.7.0-3.73.14320388, VMware_bootbank_lsu-hp-hpsa-plugin_2.0.0-16vmw.670.1.28.10302608, VMware_bootbank_lsu-intel-vmd-plugin_1.0.0-2vmw.670.1.28.10302608, VMware_bootbank_lsu-lsi-drivers-plugin_1.0.0-1vme_bootbank_lsu-lsi-lsi-mr3-plugin_1.0.0-13vmw.670.1.28.10302608, VMware_bootbank_lsu-lsi-lsi-msgpt3-plugin_1.0.0-9vmw.670.2.48.13006603, VMware_bootbank_lsu-lsi-megaraid-sas-plugin_1.0.0-9vmw.670.0.0.8169922, VMware_bootbank_lsu7vmw.670.0.0.8169922, VMware_bootbank_lsu-smartpqi-plugin_1.0.0-3vmw.670.1.28.10302608, VMware_bootbank_native-misc-drivers_6.7.0-2.48.13006603, VMware_bootbank_qlnativefc_3.1.8.0-5vmw.670.3.73.14320388, VMware_bootbank_rste_2.022, VMware_bootbank_vmware-esx-esxcli-nvme-plugin_1.2.0.36-2.48.13006603, VMware_locker_tools-light_10.3.10.12406962-14141615
    [root@xd-1541-heptagon:~] reboot


    Version: 6.7.0 (Build 15018017)
    to:
    Version: 6.7.0 (Build 15160138)

    login as: root
    Using keyboard-interactive authentication.
    Password:
    The time and date of this login have been sent to the system logs.
    
    WARNING:
       All commands run on the ESXi shell are logged and may be included in
       support bundles. Do not provide passwords directly on the command line.
       Most tools can prompt for secrets or accept them from standard input.
    
    VMware offers supported, powerful system administration tools.  Please
    see www.vmware.com/go/sysadmintools for details.
    
    The ESXi Shell can be disabled by an administrative user. See the
    vSphere Security documentation for more information.
    [root@xd-1567-5028d:~] esxcli software profile update -p ESXi-6.7.0-20191204001-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml
    Update Result
       Message: The update completed successfully, but the system needs to be rebooted for the changes to be effective.
       Reboot Required: true
       VIBs Installed: VMW_bootbank_net-vmxnet3_1.1.3.0-3vmw.670.3.89.15160138, VMW_bootbank_vmkusb_0.1-1vmw.670.3.89.15160138, VMware_bootbank_elx-esx-libelxima.so_11.4.1184.2-3.89.15160138, VMware_bootbank_esx-base_6.7.0-3.89.15160138, VMware_bootbank_esx-update_6.7.0-3.89.15160138, VMware_bootbank_native-misc-drivers_6.7.0-3.89.15160138, VMware_bootbank_vsan_6.7.0-3.89.14840357, VMware_bootbank_vsanhealth_6.7.0-3.89.14840358, VMware_locker_tools-light_11.0.1.14773994-15160134
       VIBs Removed: VMW_bootbank_net-vmxnet3_1.1.3.0-3vmw.670.2.48.13006603, VMW_bootbank_vmkusb_0.1-1vmw.670.2.48.13006603, VMware_bootbank_elx-esx-libelxima.so_11.4.1184.1-2.48.13006603, VMware_bootbank_esx-base_6.7.0-3.77.15018017, VMware_bootbank_esx-update_6.7.0-3.77.15018017, VMware_bootbank_native-misc-drivers_6.7.0-2.48.13006603, VMware_bootbank_vsan_6.7.0-3.77.14914424, VMware_bootbank_vsanhealth_6.7.0-3.77.14914425, VMware_locker_tools-light_10.3.10.12406962-14141615
       VIBs Skipped: VMW_bootbank_ata-libata-92_3.00.9.2-16vmw.670.0.0.8169922, VMW_bootbank_ata-pata-amd_0.3.10-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-atiixp_0.4.6-4vmw.670.0.0.8169922, VMW_bootbank_ata-pata-cmd64x_0.2.5-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-hpt3x2n_0.3.4-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-pdc2027x_1.0-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-serverworks_0.4.3-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-sil680_0.4.8-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-via_0.3.3-2vmw.670.0.0.8169922, VMW_bootbank_block-cciss_3.6.14-10vmw.670.0.0.8169922, VMW_bootbank_bnxtnet_20.6.101.7-24vmw.670.3.73.14320388, VMW_bootbank_bnxtroce_20.6.101.0-20vmw.670.1.28.10302608, VMW_bootbank_brcmfcoe_11.4.1078.25-14vmw.670.3.73.14320388, VMW_bootbank_char-random_1.0-3vmw.670.0.0.8169922, VMW_bootbank_ehci-ehci-hcd_1.0-4vmw.670.0.0.8169922, VMW_bootbank_elxiscsi_11.4.1174.0-2vmw.670.0.0.8169922, VMW_bootbank_elxnet_11.4.1097.0-5vmw.670.3.73.14320388, VMW_bootbank_hid-hid_1.0-3vmw.670.0.0.8169922, VMW_bootbank_i40en_1.8.1.9-2vmw.670.3.73.14320388, VMW_bootbank_iavmd_1.2.0.1011-2vmw.670.0.0.8169922, VMW_bootbank_igbn_0.1.1.0-5vmw.670.3.73.14320388, VMW_bootbank_ima-qla4xxx_2.02.18-1vmw.670.0.0.8169922, VMW_bootbank_ipmi-ipmi-devintf_39.1-5vmw.670.1.28.10302608, VMW_bootbank_ipmi-ipmi-msghandler_39.1-5vmw.670.1.28.10302608, VMW_bootbank_ipmi-ipmi-si-drv_39.1-5vmw.670.1.28.10302608, VMW_bootbank_iser_1.0.0.0-1vmw.670.1.28.10302608, VMW_bootbank_ixgben_1.7.1.16-1vmw.670.3.73.14320388, VMW_bootbank_lpfc_11.4.33.25-14vmw.670.3.73.14320388, VMW_bootbank_lpnic_11.4.59.0-1vmw.670.0.0.8169922, VMW_bootbank_lsi-mr3_7.708.07.00-3vmw.670.3.73.14320388, VMW_bootbank_lsi-msgpt2_20.00.06.00-2vmw.670.3.73.14320388, VMW_bootbank_lsi-msgpt35_09.00.00.00-5vmw.670.3.73.14320388, VMW_bootbank_lsi-msgpt3_17.00.02.00-1vmw.670.3.73.14320388, VMW_bootbank_misc-cnic-register_1.78.75.v60.7-1vmw.670.0.0.8169922, VMW_bootbank_misc-drivers_6.7.0-2.48.13006603, VMW_bootbank_mtip32xx-native_3.9.8-1vmw.670.1.28.10302608, VMW_bootbank_ne1000_0.8.4-2vmw.670.2.48.13006603, VMW_bootbank_nenic_1.0.29.0-1vmw.670.3.73.14320388, VMW_bootbank_net-bnx2_2.2.4f.v60.10-2vmw.670.0.0.8169922, VMW_bootbank_net-bnx2x_1.78.80.v60.12-2vmw.670.0.0.8169922, VMW_bootbank_net-cdc-ether_1.0-3vmw.670.0.0.8169922, VMW_bootbank_net-cnic_1.78.76.v60.13-2vmw.670.0.0.8169922, VMW_bootbank_net-e1000_8.0.3.1-5vmw.670.0.0.8169922, VMW_bootbank_net-e1000e_3.2.2.1-2vmw.670.0.0.8169922, VMW_bootbank_net-enic_2.1.2.38-2vmw.670.0.0.8169922, VMW_bootbank_net-fcoe_1.0.29.9.3-7vmw.670.0.0.8169922, VMW_bootbank_net-forcedeth_0.61-2vmw.670.0.0.8169922, VMW_bootbank_net-igb_5.0.5.1.1-5vmw.670.0.0.8169922, VMW_bootbank_net-ixgbe_3.7.13.7.14iov-20vmw.670.0.0.8169922, VMW_bootbank_net-libfcoe-92_1.0.24.9.4-8vmw.670.0.0.8169922, VMW_bootbank_net-mlx4-core_1.9.7.0-1vmw.670.0.0.8169922, VMW_bootbank_net-mlx4-en_1.9.7.0-1vmw.670.0.0.8169922, VMW_bootbank_net-nx-nic_5.0.621-5vmw.670.0.0.8169922, VMW_bootbank_net-tg3_3.131d.v60.4-2vmw.670.0.0.8169922, VMW_bootbank_net-usbnet_1.0-3vmw.670.0.0.8169922, VMW_bootbank_nfnic_4.0.0.29-0vmw.670.3.73.14320388, VMW_bootbank_nhpsa_2.0.22-3vmw.670.1.28.10302608, VMW_bootbank_nmlx4-core_3.17.13.1-1vmw.670.2.48.13006603, VMW_bootbank_nmlx4-en_3.17.13.1-1vmw.670.2.48.13006603, VMW_bootbank_nmlx4-rdma_3.17.13.1-1vmw.670.2.48.13006603, VMW_bootbank_nmlx5-core_4.17.13.1-1vmw.670.3.73.14320388, VMW_bootbank_nmlx5-rdma_4.17.13.1-1vmw.670.2.48.13006603, VMW_bootbank_ntg3_4.1.3.2-1vmw.670.1.28.10302608, VMW_bootbank_nvme_1.2.2.28-1vmw.670.3.73.14320388, VMW_bootbank_nvmxnet3-ens_2.0.0.21-1vmw.670.0.0.8169922, VMW_bootbank_nvmxnet3_2.0.0.29-1vmw.670.1.28.10302608, VMW_bootbank_ohci-usb-ohci_1.0-3vmw.670.0.0.8169922, VMW_bootbank_pvscsi_0.1-2vmw.670.0.0.8169922, VMW_bootbank_qcnic_1.0.2.0.4-1vmw.670.0.0.8169922, VMW_bootbank_qedentv_2.0.6.4-10vmw.670.1.28.10302608, VMW_bootbank_qfle3_1.0.50.11-9vmw.670.0.0.8169922, VMW_bootbank_qfle3f_1.0.25.0.2-14vmw.670.0.0.8169922, VMW_bootbank_qfle3i_1.0.2.3.9-3vmw.670.0.0.8169922, VMW_bootbank_qflge_1.1.0.11-1vmw.670.0.0.8169922, VMW_bootbank_sata-ahci_3.0-26vmw.670.0.0.8169922, VMW_bootbank_sata-ata-piix_2.12-10vmw.670.0.0.8169922, VMW_bootbank_sata-sata-nv_3.5-4vmw.670.0.0.8169922, VMW_bootbank_sata-sata-promise_2.12-3vmw.670.0.0.8169922, VMW_bootbank_sata-sata-sil24_1.1-1vmw.670.0.0.8169922, VMW_bootbank_sata-sata-sil_2.3-4vmw.670.0.0.8169922, VMW_bootbank_sata-sata-svw_2.3-3vmw.670.0.0.8169922, VMW_bootbank_scsi-aacraid_1.1.5.1-9vmw.670.0.0.8169922, VMW_bootbank_scsi-adp94xx_1.0.8.12-6vmw.670.0.0.8169922, VMW_bootbank_scsi-aic79xx_3.1-6vmw.670.0.0.8169922, VMW_bootbank_scsi-bnx2fc_1.78.78.v60.8-1vmw.670.0.0.8169922, VMW_bootbank_scsi-bnx2i_2.78.76.v60.8-1vmw.670.0.0.8169922, VMW_bootbank_scsi-fnic_1.5.0.45-3vmw.670.0.0.8169922, VMW_bootbank_scsi-hpsa_6.0.0.84-3vmw.670.0.0.8169922, VMW_bootbank_scsi-ips_7.12.05-4vmw.670.0.0.8169922, VMW_bootbank_scsi-iscsi-linux-92_1.0.0.2-3vmw.670.0.0.8169922, VMW_bootbank_scsi-libfc-92_1.0.40.9.3-5vmw.670.0.0.8169922, VMW_bootbank_scsi-megaraid-mbox_2.20.5.1-6vmw.670.0.0.8169922, VMW_bootbank_scsi-megaraid-sas_6.603.55.00-2vmw.670.0.0.8169922, VMW_bootbank_scsi-megaraid2_2.00.4-9vmw.670.0.0.8169922, VMW_bootbank_scsi-mpt2sas_19.00.00.00-2vmw.670.0.0.8169922, VMW_bootbank_scsi-mptsas_4.23.01.00-10vmw.670.0.0.8169922, VMW_bootbank_scsi-mptspi_4.23.01.00-10vmw.670.0.0.8169922, VMW_bootbank_scsi-qla4xxx_5.01.03.2-7vmw.670.0.0.8169922, VMW_bootbank_sfvmk_1.0.0.1003-6vmw.670.3.73.14320388, VMW_bootbank_shim-iscsi-linux-9-2-1-0_6.7.0-0.0.8169922, VMW_bootbank_shim-iscsi-linux-9-2-2-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libata-9-2-1-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libata-9-2-2-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libfc-9-2-1-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libfc-9-2-2-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libfcoe-9-2-1-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libfcoe-9-2-2-0_6.7.0-0.0.8169922, VMW_bootbank_shim-vmklinux-9-2-1-0_6.7.0-0.0.8169922, VMW_bootbank_shim-vmklinux-9-2-2-0_6.7.0-0.0.8169922, VMW_bootbank_shim-vmklinux-9-2-3-0_6.7.0-0.0.8169922, VMW_bootbank_smartpqi_1.0.1.553-28vmw.670.3.73.14320388, VMW_bootbank_uhci-usb-uhci_1.0-3vmw.670.0.0.8169922, VMW_bootbank_usb-storage-usb-storage_1.0-3vmw.670.0.0.8169922, VMW_bootbank_usbcore-usb_1.0-3vmw.670.0.0.8169922, VMW_bootbank_vmkata_0.1-1vmw.670.0.0.8169922, VMW_bootbank_vmkfcoe_1.0.0.1-1vmw.670.1.28.10302608, VMW_bootbank_vmkplexer-vmkplexer_6.7.0-0.0.8169922, VMW_bootbank_vmw-ahci_1.2.8-1vmw.670.3.73.14320388, VMW_bootbank_xhci-xhci_1.0-3vmw.670.0.0.8169922, VMware_bootbank_cpu-microcode_6.7.0-3.77.15018017, VMware_bootbank_esx-dvfilter-generic-fastpath_6.7.0-0.0.8169922, VMware_bootbank_esx-ui_1.33.4-14093553, VMware_bootbank_esx-xserver_6.7.0-3.73.14320388, VMware_bootbank_lsu-hp-hpsa-plugin_2.0.0-16vmw.670.1.28.10302608, VMware_bootbank_lsu-intel-vmd-plugin_1.0.0-2vmw.670.1.28.10302608, VMware_bootbank_lsu-lsi-drivers-plugin_1.0.0-1vmw.670.2.48.13006603, VMware_bootbank_lsu-lsi-lsi-mr3-plugin_1.0.0-13vmw.670.1.28.10302608, VMware_bootbank_lsu-lsi-lsi-msgpt3-plugin_1.0.0-9vmw.670.2.48.13006603, VMware_bootbank_lsu-lsi-megaraid-sas-plugin_1.0.0-9vmw.670.0.0.8169922, VMware_bootbank_lsu-lsi-mpt2sas-plugin_2.0.0-7vmw.670.0.0.8169922, VMware_bootbank_lsu-smartpqi-plugin_1.0.0-3vmw.670.1.28.10302608, VMware_bootbank_qlnativefc_3.1.8.0-5vmw.670.3.73.14320388, VMware_bootbank_rste_2.0.2.0088-7vmw.670.0.0.8169922, VMware_bootbank_vmware-esx-esxcli-nvme-plugin_1.2.0.36-2.48.13006603
    [root@xd-1567-5028d:~] reboot


    Version: 6.7.0 (Build 15018017)
    to:
    Version: 7.0.0 (Build 15843807)

    login as: root
    Using keyboard-interactive authentication.
    Password:
    The time and date of this login have been sent to the system logs.
    
    WARNING:
       All commands run on the ESXi shell are logged and may be included in
       support bundles. Do not provide passwords directly on the command line.
       Most tools can prompt for secrets or accept them from standard input.
    
    VMware offers supported, powerful system administration tools.  Please
    see www.vmware.com/go/sysadmintools for details.
    
    The ESXi Shell can be disabled by an administrative user. See the
    vSphere Security documentation for more information.
    [root@xd-1541-5028d:~] esxcli software profile update -p ESXi-7.0.0-15843807-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml
    Update Result
       Message: The update completed successfully, but the system needs to be rebooted for the changes to be effective.
       Reboot Required: true
       VIBs Installed: VMW_bootbank_bnxtnet_216.0.50.0-4vmw.700.1.0.15843807, VMW_bootbank_bnxtroce_216.0.58.0-1vmw.700.1.0.15843807, VMW_bootbank_brcmfcoe_12.0.1500.0-1vmw.700.1.0.15843807, VMW_bootbank_brcmnvmefc_12.4.293.2-3vmw.700.1.0.15843807, VMW_bootbank_elxiscsi_12.0.1200.0-1vmw.700.1.0.15843807, VMW_bootbank_elxnet_12.0.1250.0-5vmw.700.1.0.15843807, VMW_bootbank_i40en_1.8.1.16-1vmw.700.1.0.15843807, VMW_bootbank_i40iwn_1.1.2.5-1vmw.700.1.0.15843807, VMW_bootbank_iavmd_2.0.0.1055-3vmw.700.1.0.15843807, VMW_bootbank_iser_1.1.0.0-1vmw.700.1.0.15843807, VMW_bootbank_ixgben_1.7.1.26-1vmw.700.1.0.15843807, VMW_bootbank_lpfc_12.4.293.3-5vmw.700.1.0.15843807, VMW_bootbank_lpnic_11.4.62.0-1vmw.700.1.0.15843807, VMW_bootbank_lsi-mr3_7.712.50.00-1vmw.700.1.0.15843807, VMW_bootbank_lsi-msgpt2_20.00.06.00-2vmw.700.1.0.15843807, VMW_bootbank_lsi-msgpt35_13.00.12.00-1vmw.700.1.0.15843807, VMW_bootbank_lsi-msgpt3_17.00.10.00-1vmw.700.1.0.15843807, VMW_bootbank_mtip32xx-native_3.9.8-1vmw.700.1.0.15843807, VMW_bootbank_ne1000_0.8.4-10vmw.700.1.0.15843807, VMW_bootbank_nenic_1.0.29.0-1vmw.700.1.0.15843807, VMW_bootbank_nfnic_4.0.0.44-1vmw.700.1.0.15843807, VMW_bootbank_nhpsa_2.0.50-1vmw.700.1.0.15843807, VMW_bootbank_nmlx4-core_3.19.16.7-1vmw.700.1.0.15843807, VMW_bootbank_nmlx4-en_3.19.16.7-1vmw.700.1.0.15843807, VMW_bootbank_nmlx4-rdma_3.19.16.7-1vmw.700.1.0.15843807, VMW_bootbank_nmlx5-core_4.19.16.7-1vmw.700.1.0.15843807, VMW_bootbank_nmlx5-rdma_4.19.16.7-1vmw.700.1.0.15843807, VMW_bootbank_ntg3_4.1.4.1-1vmw.700.1.0.15843807, VMW_bootbank_nvme-pcie_1.2.2.13-1vmw.700.1.0.15843807, VMW_bootbank_nvmerdma_1.0.0.0-1vmw.700.1.0.15843807, VMW_bootbank_nvmxnet3-ens_2.0.0.22-1vmw.700.1.0.15843807, VMW_bootbank_nvmxnet3_2.0.0.30-1vmw.700.1.0.15843807, VMW_bootbank_pvscsi_0.1-2vmw.700.1.0.15843807, VMW_bootbank_qcnic_1.0.15.0-8vmw.700.1.0.15843807, VMW_bootbank_qedentv_3.12.1.0-23vmw.700.1.0.15843807, VMW_bootbank_qedrntv_3.12.1.2-12vmw.700.1.0.15843807, VMW_bootbank_qfle3_1.0.66.0-5vmw.700.1.0.15843807, VMW_bootbank_qfle3f_1.0.51.0-12vmw.700.1.0.15843807, VMW_bootbank_qfle3i_1.0.15.0-6vmw.700.1.0.15843807, VMW_bootbank_qflge_1.1.0.11-1vmw.700.1.0.15843807, VMW_bootbank_rste_2.0.2.0088-7vmw.700.1.0.15843807, VMW_bootbank_sfvmk_2.0.0.1004-3vmw.700.1.0.15843807, VMW_bootbank_smartpqi_1.0.4.3011-1vmw.700.1.0.15843807, VMW_bootbank_vmkata_0.1-1vmw.700.1.0.15843807, VMW_bootbank_vmkfcoe_1.0.0.2-1vmw.700.1.0.15843807, VMW_bootbank_vmkusb_0.1-1vmw.700.1.0.15843807, VMW_bootbank_vmw-ahci_1.3.9-1vmw.700.1.0.15843807, VMware_bootbank_cpu-microcode_7.0.0-1.0.15843807, VMware_bootbank_crx_7.0.0-1.0.15843807, VMware_bootbank_elx-esx-libelxima.so_12.0.1200.0-2vmw.700.1.0.15843807, VMware_bootbank_esx-base_7.0.0-1.0.15843807, VMware_bootbank_esx-dvfilter-generic-fastpath_7.0.0-1.0.15843807, VMware_bootbank_esx-ui_1.34.0-15603211, VMware_bootbank_esx-update_7.0.0-1.0.15843807, VMware_bootbank_esx-xserver_7.0.0-1.0.15843807, VMware_bootbank_loadesx_7.0.0-1.0.15843807, VMware_bootbank_lsuv2-hpv2-hpsa-plugin_1.0.0-2vmw.700.1.0.15843807, VMware_bootbank_lsuv2-intelv2-nvme-vmd-plugin_1.0.0-2vmw.700.1.0.15843807, VMware_bootbank_lsuv2-lsiv2-drivers-plugin_1.0.0-2vmw.700.1.0.15843807, VMware_bootbank_lsuv2-nvme-pcie-plugin_1.0.0-1vmw.700.1.0.15843807, VMware_bootbank_lsuv2-oem-dell-plugin_1.0.0-1vmw.700.1.0.15843807, VMware_bootbank_lsuv2-oem-hp-plugin_1.0.0-1vmw.700.1.0.15843807, VMware_bootbank_lsuv2-oem-lenovo-plugin_1.0.0-1vmw.700.1.0.15843807, VMware_bootbank_lsuv2-smartpqiv2-plugin_1.0.0-3vmw.700.1.0.15843807, VMware_bootbank_native-misc-drivers_7.0.0-1.0.15843807, VMware_bootbank_qlnativefc_4.0.1.0-3vmw.700.1.0.15843807, VMware_bootbank_vdfs_7.0.0-1.0.15843807, VMware_bootbank_vmware-esx-esxcli-nvme-plugin_1.2.0.37-1vmw.700.1.0.15843807, VMware_bootbank_vsan_7.0.0-1.0.15843807, VMware_bootbank_vsanhealth_7.0.0-1.0.15843807, VMware_locker_tools-light_11.0.5.15389592-15843807
       VIBs Removed: VMW_bootbank_ata-libata-92_3.00.9.2-16vmw.670.0.0.8169922, VMW_bootbank_ata-pata-amd_0.3.10-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-atiixp_0.4.6-4vmw.670.0.0.8169922, VMW_bootbank_ata-pata-cmd64x_0.2.5-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-hpt3x2n_0.3.4-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-pdc2027x_1.0-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-serverworks_0.4.3-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-sil680_0.4.8-3vmw.670.0.0.8169922, VMW_bootbank_ata-pata-via_0.3.3-2vmw.670.0.0.8169922, VMW_bootbank_block-cciss_3.6.14-10vmw.670.0.0.8169922, VMW_bootbank_bnxtnet_20.6.101.7-24vmw.670.3.73.14320388, VMW_bootbank_bnxtroce_20.6.101.0-20vmw.670.1.28.10302608, VMW_bootbank_brcmfcoe_11.4.1078.25-14vmw.670.3.73.14320388, VMW_bootbank_char-random_1.0-3vmw.670.0.0.8169922, VMW_bootbank_ehci-ehci-hcd_1.0-4vmw.670.0.0.8169922, VMW_bootbank_elxiscsi_11.4.1174.0-2vmw.670.0.0.8169922, VMW_bootbank_elxnet_11.4.1097.0-5vmw.670.3.73.14320388, VMW_bootbank_hid-hid_1.0-3vmw.670.0.0.8169922, VMW_bootbank_i40en_1.8.1.9-2vmw.670.3.73.14320388, VMW_bootbank_iavmd_1.2.0.1011-2vmw.670.0.0.8169922, VMW_bootbank_ima-qla4xxx_2.02.18-1vmw.670.0.0.8169922, VMW_bootbank_ipmi-ipmi-devintf_39.1-5vmw.670.1.28.10302608, VMW_bootbank_ipmi-ipmi-msghandler_39.1-5vmw.670.1.28.10302608, VMW_bootbank_ipmi-ipmi-si-drv_39.1-5vmw.670.1.28.10302608, VMW_bootbank_iser_1.0.0.0-1vmw.670.1.28.10302608, VMW_bootbank_ixgben_1.7.1.16-1vmw.670.3.73.14320388, VMW_bootbank_lpfc_11.4.33.25-14vmw.670.3.73.14320388, VMW_bootbank_lpnic_11.4.59.0-1vmw.670.0.0.8169922, VMW_bootbank_lsi-mr3_7.708.07.00-3vmw.670.3.73.14320388, VMW_bootbank_lsi-msgpt2_20.00.06.00-2vmw.670.3.73.14320388, VMW_bootbank_lsi-msgpt35_09.00.00.00-5vmw.670.3.73.14320388, VMW_bootbank_lsi-msgpt3_17.00.02.00-1vmw.670.3.73.14320388, VMW_bootbank_misc-cnic-register_1.78.75.v60.7-1vmw.670.0.0.8169922, VMW_bootbank_misc-drivers_6.7.0-2.48.13006603, VMW_bootbank_mtip32xx-native_3.9.8-1vmw.670.1.28.10302608, VMW_bootbank_ne1000_0.8.4-2vmw.670.2.48.13006603, VMW_bootbank_nenic_1.0.29.0-1vmw.670.3.73.14320388, VMW_bootbank_net-bnx2_2.2.4f.v60.10-2vmw.670.0.0.8169922, VMW_bootbank_net-bnx2x_1.78.80.v60.12-2vmw.670.0.0.8169922, VMW_bootbank_net-cdc-ether_1.0-3vmw.670.0.0.8169922, VMW_bootbank_net-cnic_1.78.76.v60.13-2vmw.670.0.0.8169922, VMW_bootbank_net-e1000_8.0.3.1-5vmw.670.0.0.8169922, VMW_bootbank_net-e1000e_3.2.2.1-2vmw.670.0.0.8169922, VMW_bootbank_net-enic_2.1.2.38-2vmw.670.0.0.8169922, VMW_bootbank_net-fcoe_1.0.29.9.3-7vmw.670.0.0.8169922, VMW_bootbank_net-forcedeth_0.61-2vmw.670.0.0.8169922, VMW_bootbank_net-igb_5.0.5.1.1-5vmw.670.0.0.8169922, VMW_bootbank_net-ixgbe_3.7.13.7.14iov-20vmw.670.0.0.8169922, VMW_bootbank_net-libfcoe-92_1.0.24.9.4-8vmw.670.0.0.8169922, VMW_bootbank_net-mlx4-core_1.9.7.0-1vmw.670.0.0.8169922, VMW_bootbank_net-mlx4-en_1.9.7.0-1vmw.670.0.0.8169922, VMW_bootbank_net-nx-nic_5.0.621-5vmw.670.0.0.8169922, VMW_bootbank_net-tg3_3.131d.v60.4-2vmw.670.0.0.8169922, VMW_bootbank_net-usbnet_1.0-3vmw.670.0.0.8169922, VMW_bootbank_net-vmxnet3_1.1.3.0-3vmw.670.2.48.13006603, VMW_bootbank_nfnic_4.0.0.29-0vmw.670.3.73.14320388, VMW_bootbank_nhpsa_2.0.22-3vmw.670.1.28.10302608, VMW_bootbank_nmlx4-core_3.17.13.1-1vmw.670.2.48.13006603, VMW_bootbank_nmlx4-en_3.17.13.1-1vmw.670.2.48.13006603, VMW_bootbank_nmlx4-rdma_3.17.13.1-1vmw.670.2.48.13006603, VMW_bootbank_nmlx5-core_4.17.13.1-1vmw.670.3.73.14320388, VMW_bootbank_nmlx5-rdma_4.17.13.1-1vmw.670.2.48.13006603, VMW_bootbank_ntg3_4.1.3.2-1vmw.670.1.28.10302608, VMW_bootbank_nvme_1.2.2.28-1vmw.670.3.73.14320388, VMW_bootbank_nvmxnet3-ens_2.0.0.21-1vmw.670.0.0.8169922, VMW_bootbank_nvmxnet3_2.0.0.29-1vmw.670.1.28.10302608, VMW_bootbank_ohci-usb-ohci_1.0-3vmw.670.0.0.8169922, VMW_bootbank_pvscsi_0.1-2vmw.670.0.0.8169922, VMW_bootbank_qcnic_1.0.2.0.4-1vmw.670.0.0.8169922, VMW_bootbank_qedentv_2.0.6.4-10vmw.670.1.28.10302608, VMW_bootbank_qfle3_1.0.50.11-9vmw.670.0.0.8169922, VMW_bootbank_qfle3f_1.0.25.0.2-14vmw.670.0.0.8169922, VMW_bootbank_qfle3i_1.0.2.3.9-3vmw.670.0.0.8169922, VMW_bootbank_qflge_1.1.0.11-1vmw.670.0.0.8169922, VMW_bootbank_sata-ahci_3.0-26vmw.670.0.0.8169922, VMW_bootbank_sata-ata-piix_2.12-10vmw.670.0.0.8169922, VMW_bootbank_sata-sata-nv_3.5-4vmw.670.0.0.8169922, VMW_bootbank_sata-sata-promise_2.12-3vmw.670.0.0.8169922, VMW_bootbank_sata-sata-sil24_1.1-1vmw.670.0.0.8169922, VMW_bootbank_sata-sata-sil_2.3-4vmw.670.0.0.8169922, VMW_bootbank_sata-sata-svw_2.3-3vmw.670.0.0.8169922, VMW_bootbank_scsi-aacraid_1.1.5.1-9vmw.670.0.0.8169922, VMW_bootbank_scsi-adp94xx_1.0.8.12-6vmw.670.0.0.8169922, VMW_bootbank_scsi-aic79xx_3.1-6vmw.670.0.0.8169922, VMW_bootbank_scsi-bnx2fc_1.78.78.v60.8-1vmw.670.0.0.8169922, VMW_bootbank_scsi-bnx2i_2.78.76.v60.8-1vmw.670.0.0.8169922, VMW_bootbank_scsi-fnic_1.5.0.45-3vmw.670.0.0.8169922, VMW_bootbank_scsi-hpsa_6.0.0.84-3vmw.670.0.0.8169922, VMW_bootbank_scsi-ips_7.12.05-4vmw.670.0.0.8169922, VMW_bootbank_scsi-iscsi-linux-92_1.0.0.2-3vmw.670.0.0.8169922, VMW_bootbank_scsi-libfc-92_1.0.40.9.3-5vmw.670.0.0.8169922, VMW_bootbank_scsi-megaraid-mbox_2.20.5.1-6vmw.670.0.0.8169922, VMW_bootbank_scsi-megaraid-sas_6.603.55.00-2vmw.670.0.0.8169922, VMW_bootbank_scsi-megaraid2_2.00.4-9vmw.670.0.0.8169922, VMW_bootbank_scsi-mpt2sas_19.00.00.00-2vmw.670.0.0.8169922, VMW_bootbank_scsi-mptsas_4.23.01.00-10vmw.670.0.0.8169922, VMW_bootbank_scsi-mptspi_4.23.01.00-10vmw.670.0.0.8169922, VMW_bootbank_scsi-qla4xxx_5.01.03.2-7vmw.670.0.0.8169922, VMW_bootbank_sfvmk_1.0.0.1003-6vmw.670.3.73.14320388, VMW_bootbank_shim-iscsi-linux-9-2-1-0_6.7.0-0.0.8169922, VMW_bootbank_shim-iscsi-linux-9-2-2-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libata-9-2-1-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libata-9-2-2-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libfc-9-2-1-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libfc-9-2-2-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libfcoe-9-2-1-0_6.7.0-0.0.8169922, VMW_bootbank_shim-libfcoe-9-2-2-0_6.7.0-0.0.8169922, VMW_bootbank_shim-vmklinux-9-2-1-0_6.7.0-0.0.8169922, VMW_bootbank_shim-vmklinux-9-2-2-0_6.7.0-0.0.8169922, VMW_bootbank_shim-vmklinux-9-2-3-0_6.7.0-0.0.8169922, VMW_bootbank_smartpqi_1.0.1.553-28vmw.670.3.73.14320388, VMW_bootbank_uhci-usb-uhci_1.0-3vmw.670.0.0.8169922, VMW_bootbank_usb-storage-usb-storage_1.0-3vmw.670.0.0.8169922, VMW_bootbank_usbcore-usb_1.0-3vmw.670.0.0.8169922, VMW_bootbank_vmkata_0.1-1vmw.670.0.0.8169922, VMW_bootbank_vmkfcoe_1.0.0.1-1vmw.670.1.28.10302608, VMW_bootbank_vmkplexer-vmkplexer_6.7.0-0.0.8169922, VMW_bootbank_vmkusb_0.1-1vmw.670.2.48.13006603, VMW_bootbank_vmw-ahci_1.2.8-1vmw.670.3.73.14320388, VMW_bootbank_xhci-xhci_1.0-3vmw.670.0.0.8169922, VMware_bootbank_cpu-microcode_6.7.0-3.77.15018017, VMware_bootbank_elx-esx-libelxima.so_11.4.1184.1-2.48.13006603, VMware_bootbank_esx-base_6.7.0-3.77.15018017, VMware_bootbank_esx-dvfilter-generic-fastpath_6.7.0-0.0.8169922, VMware_bootbank_esx-ui_1.33.4-14093553, VMware_bootbank_esx-update_6.7.0-3.77.15018017, VMware_bootbank_esx-xserver_6.7.0-3.73.14320388, VMware_bootbank_lsu-hp-hpsa-plugin_2.0.0-16vmw.670.1.28.10302608, VMware_bootbank_lsu-intel-vmd-plugin_1.0.0-2vmw.670.1.28.10302608, VMware_bootbank_lsu-lsi-drivers-plugin_1.0.0-1vmw.670.2.48.13006603, VMware_bootbank_lsu-lsi-lsi-mr3-plugin_1.0.0-13vmw.670.1.28.10302608, VMware_bootbank_lsu-lsi-lsi-msgpt3-plugin_1.0.0-9vmw.670.2.48.13006603, VMware_bootbank_lsu-lsi-megaraid-sas-plugin_1.0.0-9vmw.670.0.0.8169922, VMware_bootbank_lsu-lsi-mpt2sas-plugin_2.0.0-7vmw.670.0.0.8169922, VMware_bootbank_lsu-smartpqi-plugin_1.0.0-3vmw.670.1.28.10302608, VMware_bootbank_native-misc-drivers_6.7.0-2.48.13006603, VMware_bootbank_qlnativefc_3.1.8.0-5vmw.670.3.73.14320388, VMware_bootbank_rste_2.0.2.0088-7vmw.670.0.0.8169922, VMware_bootbank_vmware-esx-esxcli-nvme-plugin_1.2.0.36-2.48.13006603, VMware_bootbank_vsan_6.7.0-3.77.14914424, VMware_bootbank_vsanhealth_6.7.0-3.77.14914425, VMware_locker_tools-light_10.3.10.12406962-14141615
       VIBs Skipped: VMW_bootbank_igbn_0.1.1.0-6vmw.700.1.0.15843807
    [root@xd-1541-5028d:~] reboot


    This upgrade failed, details below.
    Version: 6.7.0 (Build 15160138)
    to:
    Version: 7.0.0 (Build 15843807)

    login as: root
    Using keyboard-interactive authentication.
    Password:
    The time and date of this login have been sent to the system logs.
    
    WARNING:
       All commands run on the ESXi shell are logged and may be included in
       support bundles. Do not provide passwords directly on the command line.
       Most tools can prompt for secrets or accept them from standard input.
    
    VMware offers supported, powerful system administration tools.  Please
    see www.vmware.com/go/sysadmintools for details.
    
    The ESXi Shell can be disabled by an administrative user. See the
    vSphere Security documentation for more information.
    [root@xd-1567-5028d:~] esxcli software profile update -p ESXi-7.0.0-15843807-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-i
    ndex.xml
     [StatelessError]
     The transaction is not supported: VIB VMW_bootbank_vmw-ahci_1.3.9-1vmw.700.1.0.15843807 cannot be live installed. VIB VMW_bootbank_smartpqi_1.0.4.3011-1vmw.700.1.0.15843807                             cannot be live installed. VIB VMW_bootbank_brcmfcoe_12.0.1500.0-1vmw.700.1.0.15843807 cannot be live installed. VIB VMW_bootbank_bnxtnet_216.0.50.0-4vmw.700.1.0.15843807 cann                            ot be live installed. VIB VMW_bootbank_bnxtroce_216.0.58.0-1vmw.700.1.0.15843807 cannot be live installed. VIB VMW_bootbank_iser_1.1.0.0-1vmw.700.1.0.15843807 cannot be live                             installed. VIB VMware_bootbank_native-misc-drivers_7.0.0-1.0.15843807 cannot be live installed. VIB VMW_bootbank_mtip32xx-native_3.9.8-1vmw.700.1.0.15843807 cannot be live in                            stalled. VIB VMW_bootbank_qfle3i_1.0.15.0-6vmw.700.1.0.15843807 cannot be live installed. VIB VMW_bootbank_nmlx4-rdma_3.19.16.7-1vmw.700.1.0.15843807 cannot be live installed                            . VIB VMW_bootbank_nmlx4-core_3.19.16.7-1vmw.700.1.0.15843807 cannot be live installed. VIB VMware_bootbank_lsuv2-intelv2-nvme-vmd-plugin_1.0.0-2vmw.700.1.0.15843807 cannot b                            e live installed. VIB VMware_bootbank_esx-update_7.0.0-1.0.15843807 cannot be live installed. VIB VMW_bootbank_nvme-pcie_1.2.2.13-1vmw.700.1.0.15843807 cannot be live install                            ed. VIB VMW_bootbank_ixgben_1.7.1.26-1vmw.700.1.0.15843807 cannot be live installed. VIB VMW_bootbank_lsi-msgpt3_17.00.10.00-1vmw.700.1.0.15843807 cannot be live installed. V                            IB VMW_bootbank_nmlx4-en_3.19.16.7-1vmw.700.1.0.15843807 cannot be live installed. VIB VMW_bootbank_nvmxnet3_2.0.0.30-1vmw.700.1.0.15843807 cannot be live installed. VIB VMW_                            bootbank_rste_2.0.2.0088-7vmw.700.1.0.15843807 cannot be live installed. VIB VMware_bootbank_lsuv2-hpv2-hpsa-plugin_1.0.0-2vmw.700.1.0.15843807 cannot be live installed. VIB                             VMW_bootbank_qedentv_3.12.1.0-23vmw.700.1.0.15843807 cannot be live installed. VIB VMW_bootbank_lpfc_12.4.293.3-5vmw.700.1.0.15843807 cannot be live installed. VIB VMW_bootba                            nk_nenic_1.0.29.0-1vmw.700.1.0.15843807 cannot be live installed. VIB VMW_bootbank_i40iwn_1.1.2.5-1vmw.700.1.0.15843807 cannot be live installed. VIB VMware_bootbank_lsuv2-ls                            iv2-drivers-plugin_1.0.0-2vmw.700.1.0.15843807 cannot be live installed. VIB VMW_bootbank_nvmerdma_1.0.0.0-1vmw.700.1.0.15843807 cannot be live installed. VIB VMware_bootbank                            _qlnativefc_4.0.1.0-3vmw.700.1.0.15843807 cannot be live installed. VIB VMW_bootbank_qcnic_1.0.15.0-8vmw.700.1.0.15843807 cannot be live installed. VIB VMW_bootbank_lsi-mr3_7                            .712.50.00-1vmw.700.1.0.15843807 cannot be live installed. VIB VMware_bootbank_lsuv2-nvme-pcie-plugin_1.0.0-1vmw.700.1.0.15843807 cannot be live installed. VIB VMW_bootbank_n                            e1000_0.8.4-10vmw.700.1.0.15843807 cannot be live installed. VIB VMW_bootbank_qedrntv_3.12.1.2-12vmw.700.1.0.15843807 cannot be live installed. VIB VMware_bootbank_elx-esx-li                            belxima.so_12.0.1200.0-2vmw.700.1.0.15843807 cannot be live installed. VIB VMW_bootbank_vmkata_0.1-1vmw.700.1.0.15843807 cannot be live installed. VIB VMW_bootbank_elxnet_12.                            0.1250.0-5vmw.700.1.0.15843807 cannot be live installed. VIB VMware_bootbank_lsuv2-smartpqiv2-plugin_1.0.0-3vmw.700.1.0.15843807 cannot be live installed. VIB VMW_bootbank_el                            xiscsi_12.0.1200.0-1vmw.700.1.0.15843807 cannot be live installed. VIB VMware_bootbank_cpu-microcode_7.0.0-1.0.15843807 cannot be live installed. VIB VMW_bootbank_qfle3_1.0.6                            6.0-5vmw.700.1.0.15843807 cannot be live installed. VIB VMW_bootbank_nmlx5-core_4.19.16.7-1vmw.700.1.0.15843807 cannot be live installed. VIB VMW_bootbank_nmlx5-rdma_4.19.16.                            7-1vmw.700.1.0.15843807 cannot be live installed. VIB VMW_bootbank_pvscsi_0.1-2vmw.700.1.0.15843807 cannot be live installed. VIB VMware_bootbank_vsan_7.0.0-1.0.15843807 cann                            ot be live installed. VIB VMware_bootbank_lsuv2-oem-hp-plugin_1.0.0-1vmw.700.1.0.15843807 cannot be live installed. VIB VMW_bootbank_lpnic_11.4.62.0-1vmw.700.1.0.15843807 can                            not be live installed. VIB VMware_bootbank_lsuv2-oem-dell-plugin_1.0.0-1vmw.700.1.0.15843807 cannot be live installed. VIB VMW_bootbank_qfle3f_1.0.51.0-12vmw.700.1.0.15843807                             cannot be live installed. VIB VMW_bootbank_lsi-msgpt35_13.00.12.00-1vmw.700.1.0.15843807 cannot be live installed. VIB VMW_bootbank_nfnic_4.0.0.44-1vmw.700.1.0.15843807 cann                            ot be live installed. VIB VMW_bootbank_nvmxnet3-ens_2.0.0.22-1vmw.700.1.0.15843807 cannot be live installed. VIB VMW_bootbank_brcmnvmefc_12.4.293.2-3vmw.700.1.0.15843807 cann                            ot be live installed. VIB VMW_bootbank_vmkusb_0.1-1vmw.700.1.0.15843807 cannot be live installed. VIB VMW_bootbank_sfvmk_2.0.0.1004-3vmw.700.1.0.15843807 cannot be live insta                            lled. VIB VMW_bootbank_nhpsa_2.0.50-1vmw.700.1.0.15843807 cannot be live installed. VIB VMW_bootbank_iavmd_2.0.0.1055-3vmw.700.1.0.15843807 cannot be live installed. VIB VMW_                            bootbank_lsi-msgpt2_20.00.06.00-2vmw.700.1.0.15843807 cannot be live installed. VIB VMware_bootbank_esx-base_7.0.0-1.0.15843807 cannot be live installed. VIB VMW_bootbank_qfl                            ge_1.1.0.11-1vmw.700.1.0.15843807 cannot be live installed. VIB VMW_bootbank_i40en_1.8.1.16-1vmw.700.1.0.15843807 cannot be live installed. VIB VMW_bootbank_ntg3_4.1.4.1-1vmw                            .700.1.0.15843807 cannot be live installed. VIB VMW_bootbank_vmkfcoe_1.0.0.2-1vmw.700.1.0.15843807 cannot be live installed. VIB VMware_bootbank_lsuv2-oem-lenovo-plugin_1.0.0                            -1vmw.700.1.0.15843807 cannot be live installed. VIB VMW_bootbank_lsi-msgpt35_09.00.00.00-5vmw.670.3.73.14320388 cannot be removed live. VIB VMW_bootbank_block-cciss_3.6.14-1                            0vmw.670.0.0.8169922 cannot be removed live. VIB VMW_bootbank_qfle3i_1.0.2.3.9-3vmw.670.0.0.8169922 cannot be removed live. VIB VMware_bootbank_lsu-lsi-mpt2sas-plugin_2.0.0-7                            vmw.670.0.0.8169922 cannot be removed live. VIB VMW_bootbank_scsi-mpt2sas_19.00.00.00-2vmw.670.0.0.8169922 cannot be removed live. VIB VMware_bootbank_lsu-hp-hpsa-plugin_2.0.                            0-16vmw.670.1.28.10302608 cannot be removed live. VIB VMW_bootbank_iavmd_1.2.0.1011-2vmw.670.0.0.8169922 cannot be removed live. VIB VMW_bootbank_sata-sata-nv_3.5-4vmw.670.0.                            0.8169922 cannot be removed live. VIB VMW_bootbank_usbcore-usb_1.0-3vmw.670.0.0.8169922 cannot be removed live. VIB VMW_bootbank_nmlx4-rdma_3.17.13.1-1vmw.670.2.48.13006603 c                            annot be removed live. VIB VMW_bootbank_shim-libfcoe-9-2-1-0_6.7.0-0.0.8169922 cannot be removed live. VIB VMW_bootbank_shim-libfcoe-9-2-2-0_6.7.0-0.0.8169922 cannot be remov                            ed live. VIB VMW_bootbank_nmlx4-core_3.17.13.1-1vmw.670.2.48.13006603 cannot be removed live. VIB VMW_bootbank_hid-hid_1.0-3vmw.670.0.0.8169922 cannot be removed live. VIB VM                            W_bootbank_scsi-fnic_1.5.0.45-3vmw.670.0.0.8169922 cannot be removed live. VIB VMW_bootbank_qflge_1.1.0.11-1vmw.670.0.0.8169922 cannot be removed live. VIB VMW_bootbank_scsi-                            bnx2i_2.78.76.v60.8-1vmw.670.0.0.8169922 cannot be removed live. VIB INT_bootbank_net-ixgbe_4.5.3-1OEM.600.0.0.2494585 cannot be removed live. VIB VMW_bootbank_sata-ata-piix_                            2.12-10vmw.670.0.0.8169922 cannot be removed live. VIB VMW_bootbank_smartpqi_1.0.1.553-28vmw.670.3.73.14320388 cannot be removed live. VIB VMW_bootbank_shim-libfc-9-2-1-0_6.7                            .0-0.0.8169922 cannot be removed live. VIB VMW_bootbank_shim-libfc-9-2-2-0_6.7.0-0.0.8169922 cannot be removed live. VIB VMW_bootbank_ipmi-ipmi-devintf_39.1-5vmw.670.1.28.103                            02608 cannot be removed live. VIB VMware_bootbank_esx-update_6.7.0-3.89.15160138 cannot be removed live. VIB VMW_bootbank_net-igb_5.0.5.1.1-5vmw.670.0.0.8169922 cannot be rem                            oved live. VIB VMW_bootbank_nhpsa_2.0.22-3vmw.670.1.28.10302608 cannot be removed live. VIB VMW_bootbank_net-forcedeth_0.61-2vmw.670.0.0.8169922 cannot be removed live. VIB V                            MW_bootbank_ata-pata-cmd64x_0.2.5-3vmw.670.0.0.8169922 cannot be removed live. VIB VMW_bootbank_brcmfcoe_11.4.1078.25-14vmw.670.3.73.14320388 cannot be removed live. VIB VMW_                            bootbank_lsi-msgpt2_20.00.06.00-2vmw.670.3.73.14320388 cannot be removed live. VIB VMW_bootbank_lpfc_11.4.33.25-14vmw.670.3.73.14320388 cannot be removed live. VIB VMW_bootba                            nk_nvmxnet3_2.0.0.29-1vmw.670.1.28.10302608 cannot be removed live. VIB VMW_bootbank_scsi-aic79xx_3.1-6vmw.670.0.0.8169922 cannot be removed live. VIB VMW_bootbank_net-bnx2_2                            .2.4f.v60.10-2vmw.670.0.0.8169922 cannot be removed live. VIB VMW_bootbank_net-cnic_1.78.76.v60.13-2vmw.670.0.0.8169922 cannot be removed live. VIB VMW_bootbank_net-usbnet_1.                            0-3vmw.670.0.0.8169922 cannot be removed live. VIB VMW_bootbank_net-vmxnet3_1.1.3.0-3vmw.670.3.89.15160138 cannot be removed live. VIB VMW_bootbank_nenic_1.0.29.0-1vmw.670.3.                            73.14320388 cannot be removed live. VIB VMW_bootbank_sata-sata-promise_2.12-3vmw.670.0.0.8169922 cannot be removed live. VIB VMW_bootbank_qfle3f_1.0.25.0.2-14vmw.670.0.0.8169                            922 cannot be removed live. VIB VMW_bootbank_scsi-mptspi_4.23.01.00-10vmw.670.0.0.8169922 cannot be removed live. VIB VMW_bootbank_scsi-mptsas_4.23.01.00-10vmw.670.0.0.816992                            2 cannot be removed live. VIB VMware_bootbank_lsu-lsi-drivers-plugin_1.0.0-1vmw.670.2.48.13006603 cannot be removed live. VIB VMware_bootbank_esx-base_6.7.0-3.89.15160138 can                            not be removed live. VIB VMW_bootbank_ata-pata-hpt3x2n_0.3.4-3vmw.670.0.0.8169922 cannot be removed live. VIB VMW_bootbank_vmkfcoe_1.0.0.1-1vmw.670.1.28.10302608 cannot be re                            moved live. VIB VMW_bootbank_char-random_1.0-3vmw.670.0.0.8169922 cannot be removed live. VIB VMW_bootbank_xhci-xhci_1.0-3vmw.670.0.0.8169922 cannot be removed live. VIB VMW_                            bootbank_qfle3_1.0.50.11-9vmw.670.0.0.8169922 cannot be removed live. VIB VMW_bootbank_ehci-ehci-hcd_1.0-4vmw.670.0.0.8169922 cannot be removed live. VIB VMware_bootbank_elx-                            esx-libelxima.so_11.4.1184.2-3.89.15160138 cannot be removed live. VIB VMW_bootbank_ima-qla4xxx_2.02.18-1vmw.670.0.0.8169922 cannot be removed live. VIB VMW_bootbank_ata-pata                            -atiixp_0.4.6-4vmw.670.0.0.8169922 cannot be removed live. VIB VMW_bootbank_scsi-aacraid_1.1.5.1-9vmw.670.0.0.8169922 cannot be removed live. VIB VMW_bootbank_scsi-adp94xx_1.                            0.8.12-6vmw.670.0.0.8169922 cannot be removed live. VIB VMW_bootbank_shim-vmklinux-9-2-2-0_6.7.0-0.0.8169922 cannot be removed live. VIB VMW_bootbank_shim-vmklinux-9-2-3-0_6.                            7.0-0.0.8169922 cannot be removed live. VIB VMW_bootbank_ata-pata-amd_0.3.10-3vmw.670.0.0.8169922 cannot be removed live. VIB VMware_bootbank_lsu-lsi-megaraid-sas-plugin_1.0.                            0-9vmw.670.0.0.8169922 cannot be removed live. VIB VMW_bootbank_shim-vmklinux-9-2-1-0_6.7.0-0.0.8169922 cannot be removed live. VIB VMW_bootbank_pvscsi_0.1-2vmw.670.0.0.81699                            22 cannot be removed live. VIB VMW_bootbank_shim-iscsi-linux-9-2-2-0_6.7.0-0.0.8169922 cannot be removed live. VIB VMW_bootbank_bnxtnet_20.6.101.7-24vmw.670.3.73.14320388 can                            not be removed live. VIB VMW_bootbank_shim-iscsi-linux-9-2-1-0_6.7.0-0.0.8169922 cannot be removed live. VIB VMware_bootbank_lsu-lsi-lsi-mr3-plugin_1.0.0-13vmw.670.1.28.10302                            608 cannot be removed live. VIB VMware_bootbank_native-misc-drivers_6.7.0-3.89.15160138 cannot be removed live. VIB VMware_bootbank_rste_2.0.2.0088-7vmw.670.0.0.8169922 canno                            t be removed live. VIB VMW_bootbank_elxnet_11.4.1097.0-5vmw.670.3.73.14320388 cannot be removed live. VIB VMW_bootbank_bnxtroce_20.6.101.0-20vmw.670.1.28.10302608 cannot be r                            emoved live. VIB VMW_bootbank_net-nx-nic_5.0.621-5vmw.670.0.0.8169922 cannot be removed live. VIB VMW_bootbank_scsi-hpsa_6.0.0.84-3vmw.670.0.0.8169922 cannot be removed live.                             VIB VMW_bootbank_usb-storage-usb-storage_1.0-3vmw.670.0.0.8169922 cannot be removed live. VIB VMW_bootbank_mtip32xx-native_3.9.8-1vmw.670.1.28.10302608 cannot be removed liv                            e. VIB VMW_bootbank_sata-ahci_3.0-26vmw.670.0.0.8169922 cannot be removed live. VIB VMW_bootbank_ata-pata-sil680_0.4.8-3vmw.670.0.0.8169922 cannot be removed live. VIB VMW_bo                            otbank_ne1000_0.8.4-2vmw.670.2.48.13006603 cannot be removed live. VIB VMW_bootbank_ata-pata-pdc2027x_1.0-3vmw.670.0.0.8169922 cannot be removed live. VIB VMW_bootbank_nfnic_                            4.0.0.29-0vmw.670.3.73.14320388 cannot be removed live. VIB VMW_bootbank_net-e1000_8.0.3.1-5vmw.670.0.0.8169922 cannot be removed live. VIB VMW_bootbank_shim-libata-9-2-2-0_6                            .7.0-0.0.8169922 cannot be removed live. VIB VMW_bootbank_shim-libata-9-2-1-0_6.7.0-0.0.8169922 cannot be removed live. VIB VMW_bootbank_ipmi-ipmi-si-drv_39.1-5vmw.670.1.28.1                            0302608 cannot be removed live. VIB VMW_bootbank_net-e1000e_3.2.2.1-2vmw.670.0.0.8169922 cannot be removed live. VIB VMW_bootbank_net-tg3_3.131d.v60.4-2vmw.670.0.0.8169922 ca                            nnot be removed live. VIB VMW_bootbank_scsi-ips_7.12.05-4vmw.670.0.0.8169922 cannot be removed live. VIB VMware_bootbank_lsu-intel-vmd-plugin_1.0.0-2vmw.670.1.28.10302608 can                            not be removed live. VIB VMW_bootbank_scsi-qla4xxx_5.01.03.2-7vmw.670.0.0.8169922 cannot be removed live. VIB VMW_bootbank_scsi-megaraid2_2.00.4-9vmw.670.0.0.8169922 cannot b                            e removed live. VIB VMware_bootbank_cpu-microcode_6.7.0-3.77.15018017 cannot be removed live. VIB VMW_bootbank_net-cdc-ether_1.0-3vmw.670.0.0.8169922 cannot be removed live.                             VIB VMW_bootbank_net-mlx4-core_1.9.7.0-1vmw.670.0.0.8169922 cannot be removed live. VIB VMW_bootbank_lsi-msgpt3_17.00.02.00-1vmw.670.3.73.14320388 cannot be removed live. VIB                             VMW_bootbank_lpnic_11.4.59.0-1vmw.670.0.0.8169922 cannot be removed live. VIB VMW_bootbank_scsi-megaraid-sas_6.603.55.00-2vmw.670.0.0.8169922 cannot be removed live. VIB VMW                            _bootbank_misc-cnic-register_1.78.75.v60.7-1vmw.670.0.0.8169922 cannot be removed live. VIB VMW_bootbank_ntg3_4.1.3.2-1vmw.670.1.28.10302608 cannot be removed live. VIB VMW_b                            ootbank_nvmxnet3-ens_2.0.0.21-1vmw.670.0.0.8169922 cannot be removed live. VIB VMware_bootbank_lsu-lsi-lsi-msgpt3-plugin_1.0.0-9vmw.670.2.48.13006603 cannot be removed live.                             VIB VMW_bootbank_scsi-libfc-92_1.0.40.9.3-5vmw.670.0.0.8169922 cannot be removed live. VIB VMW_bootbank_sata-sata-sil24_1.1-1vmw.670.0.0.8169922 cannot be removed live. VIB V                            MW_bootbank_ipmi-ipmi-msghandler_39.1-5vmw.670.1.28.10302608 cannot be removed live. VIB VMW_bootbank_ixgben_1.7.1.16-1vmw.670.3.73.14320388 cannot be removed live. VIB VMW_b                            ootbank_sata-sata-svw_2.3-3vmw.670.0.0.8169922 cannot be removed live. VIB VMware_bootbank_esx-dvfilter-generic-fastpath_6.7.0-0.0.8169922 cannot be removed live. VIB VMW_boo                            tbank_ata-pata-via_0.3.3-2vmw.670.0.0.8169922 cannot be removed live. VIB VMW_bootbank_nmlx5-core_4.17.13.1-1vmw.670.3.73.14320388 cannot be removed live. VIB VMW_bootbank_sc                            si-megaraid-mbox_2.20.5.1-6vmw.670.0.0.8169922 cannot be removed live. VIB VMware_bootbank_vsan_6.7.0-3.89.14840357 cannot be removed live. VIB VMW_bootbank_nmlx4-en_3.17.13.                            1-1vmw.670.2.48.13006603 cannot be removed live. VIB VMW_bootbank_net-bnx2x_1.78.80.v60.12-2vmw.670.0.0.8169922 cannot be removed live. VIB VMware_bootbank_qlnativefc_3.1.8.0                            -5vmw.670.3.73.14320388 cannot be removed live. VIB VMware_bootbank_lsu-smartpqi-plugin_1.0.0-3vmw.670.1.28.10302608 cannot be removed live. VIB VMW_bootbank_nmlx5-rdma_4.17.                            13.1-1vmw.670.2.48.13006603 cannot be removed live. VIB VMW_bootbank_net-enic_2.1.2.38-2vmw.670.0.0.8169922 cannot be removed live. VIB VMW_bootbank_i40en_1.8.1.9-2vmw.670.3.                            73.14320388 cannot be removed live. VIB VMW_bootbank_misc-drivers_6.7.0-2.48.13006603 cannot be removed live. VIB VMW_bootbank_elxiscsi_11.4.1174.0-2vmw.670.0.0.8169922 canno                            t be removed live. VIB VMW_bootbank_ohci-usb-ohci_1.0-3vmw.670.0.0.8169922 cannot be removed live. VIB VMW_bootbank_uhci-usb-uhci_1.0-3vmw.670.0.0.8169922 cannot be removed l                            ive. VIB VMW_bootbank_sata-sata-sil_2.3-4vmw.670.0.0.8169922 cannot be removed live. VIB VMW_bootbank_vmw-ahci_1.2.8-1vmw.670.3.73.14320388 cannot be removed live. VIB VMW_bo                            otbank_ata-pata-serverworks_0.4.3-3vmw.670.0.0.8169922 cannot be removed live. VIB VMW_bootbank_lsi-mr3_7.708.07.00-3vmw.670.3.73.14320388 cannot be removed live. VIB VMW_boo                            tbank_ata-libata-92_3.00.9.2-16vmw.670.0.0.8169922 cannot be removed live. VIB VMW_bootbank_scsi-bnx2fc_1.78.78.v60.8-1vmw.670.0.0.8169922 cannot be removed live. VIB VMW_boo                            tbank_sfvmk_1.0.0.1003-6vmw.670.3.73.14320388 cannot be removed live. VIB VMW_bootbank_net-libfcoe-92_1.0.24.9.4-8vmw.670.0.0.8169922 cannot be removed live. VIB VMW_bootbank                            _iser_1.0.0.0-1vmw.670.1.28.10302608 cannot be removed live. VIB VMW_bootbank_scsi-iscsi-linux-92_1.0.0.2-3vmw.670.0.0.8169922 cannot be removed live. VIB VMW_bootbank_nvme_1                            .2.2.28-1vmw.670.3.73.14320388 cannot be removed live. VIB VMW_bootbank_qedentv_2.0.6.4-10vmw.670.1.28.10302608 cannot be removed live. VIB VMW_bootbank_net-mlx4-en_1.9.7.0-1                            vmw.670.0.0.8169922 cannot be removed live. VIB VMW_bootbank_vmkplexer-vmkplexer_6.7.0-0.0.8169922 cannot be removed live. VIB VMW_bootbank_net-fcoe_1.0.29.9.3-7vmw.670.0.0.8                            169922 cannot be removed live.
     Please refer to the log file for more details.
    [root@xd-1567-5028d:~]


    This upgrade failed, details below.
    Version: 7.0.0 (Build 15843807)
    to:
    Version: 7.0.0 (Build 16324942)

      login as: root
      Using keyboard-interactive authentication.
      Password:
      The time and date of this login have been sent to the system logs.
    
      WARNING:
         All commands run on the ESXi shell are logged and may be included in
         support bundles. Do not provide passwords directly on the command line.
         Most tools can prompt for secrets or accept them from standard input.
    
      VMware offers supported, powerful system administration tools.  Please
      see www.vmware.com/go/sysadmintools for details.
    
      The ESXi Shell can be disabled by an administrative user. See the
      vSphere Security documentation for more information.
      [root@xd-1541-5028d:~] esxcli software profile update -p ESXi-7.0b-16324942-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml
      Update Result
         Message: Operation finished successfully.
         Reboot Required: false
         VIBs Installed:
         VIBs Removed:
         VIBs Skipped: VMW_bootbank_bnxtnet_216.0.50.0-4vmw.700.1.0.15843807, VMW_bootbank_bnxtroce_216.0.58.0-1vmw.700.1.0.15843807, VMW_bootbank_brcmfcoe_12.0.1500.0-1vmw.7807, VMW_bootbank_brcmnvmefc_12.4.293.2-3vmw.700.1.0.15843807, VMW_bootbank_elxiscsi_12.0.1200.0-1vmw.700.1.0.15843807, VMW_bootbank_elxnet_12.0.1250.0-5vmw.700.1.0.158ootbank_i40en_1.8.1.16-1vmw.700.1.0.15843807, VMW_bootbank_i40iwn_1.1.2.5-1vmw.700.1.0.15843807, VMW_bootbank_iavmd_2.0.0.1055-3vmw.700.1.0.15843807, VMW_bootbank_igbn_.700.1.0.15843807, VMW_bootbank_iser_1.1.0.0-1vmw.700.1.0.15843807, VMW_bootbank_ixgben_1.7.1.26-1vmw.700.1.0.15843807, VMW_bootbank_lpfc_12.4.293.3-5vmw.700.1.0.158438bank_lpnic_11.4.62.0-1vmw.700.1.0.15843807, VMW_bootbank_lsi-mr3_7.712.50.00-1vmw.700.1.0.15843807, VMW_bootbank_lsi-msgpt2_20.00.06.00-2vmw.700.1.0.15843807, VMW_bootbt35_13.00.12.00-1vmw.700.1.0.15843807, VMW_bootbank_lsi-msgpt3_17.00.10.00-1vmw.700.1.0.15843807, VMW_bootbank_mtip32xx-native_3.9.8-1vmw.700.1.0.15843807, VMW_bootbank4-10vmw.700.1.0.15843807, VMW_bootbank_nenic_1.0.29.0-1vmw.700.1.0.15843807, VMW_bootbank_nfnic_4.0.0.44-1vmw.700.1.0.15843807, VMW_bootbank_nhpsa_2.0.50-1vmw.700.1.0.1_bootbank_nmlx4-core_3.19.16.7-1vmw.700.1.0.15843807, VMW_bootbank_nmlx4-en_3.19.16.7-1vmw.700.1.0.15843807, VMW_bootbank_nmlx4-rdma_3.19.16.7-1vmw.700.1.0.15843807, VMmlx5-core_4.19.16.7-1vmw.700.1.0.15843807, VMW_bootbank_nmlx5-rdma_4.19.16.7-1vmw.700.1.0.15843807, VMW_bootbank_ntg3_4.1.4.1-1vmw.700.1.0.15843807, VMW_bootbank_nvme-p-1vmw.700.1.25.16324942, VMW_bootbank_nvmerdma_1.0.0.0-1vmw.700.1.0.15843807, VMW_bootbank_nvmxnet3-ens_2.0.0.22-1vmw.700.1.0.15843807, VMW_bootbank_nvmxnet3_2.0.0.30-115843807, VMW_bootbank_pvscsi_0.1-2vmw.700.1.0.15843807, VMW_bootbank_qcnic_1.0.15.0-8vmw.700.1.0.15843807, VMW_bootbank_qedentv_3.12.1.0-23vmw.700.1.0.15843807, VMW_botv_3.12.1.2-12vmw.700.1.0.15843807, VMW_bootbank_qfle3_1.0.66.0-5vmw.700.1.0.15843807, VMW_bootbank_qfle3f_1.0.51.0-12vmw.700.1.0.15843807, VMW_bootbank_qfle3i_1.0.15.00.15843807, VMW_bootbank_qflge_1.1.0.11-1vmw.700.1.0.15843807, VMW_bootbank_rste_2.0.2.0088-7vmw.700.1.0.15843807, VMW_bootbank_sfvmk_2.0.0.1004-3vmw.700.1.0.15843807, _smartpqi_1.0.4.3011-1vmw.700.1.0.15843807, VMW_bootbank_vmkata_0.1-1vmw.700.1.0.15843807, VMW_bootbank_vmkfcoe_1.0.0.2-1vmw.700.1.0.15843807, VMW_bootbank_vmkusb_0.1-1.16324942, VMW_bootbank_vmw-ahci_1.3.9-1vmw.700.1.0.15843807, VMware_bootbank_cpu-microcode_7.0.0-1.25.16324942, VMware_bootbank_crx_7.0.0-1.25.16324942, VMware_bootbanbelxima.so_12.0.1200.0-2vmw.700.1.0.15843807, VMware_bootbank_esx-base_7.0.0-1.25.16324942, VMware_bootbank_esx-dvfilter-generic-fastpath_7.0.0-1.25.16324942, VMware_boi_1.34.0-15603211, VMware_bootbank_esx-update_7.0.0-1.25.16324942, VMware_bootbank_esx-xserver_7.0.0-1.25.16324942, VMware_bootbank_loadesx_7.0.0-1.25.16324942, VMware_v2-hpv2-hpsa-plugin_1.0.0-2vmw.700.1.0.15843807, VMware_bootbank_lsuv2-intelv2-nvme-vmd-plugin_1.0.0-2vmw.700.1.0.15843807, VMware_bootbank_lsuv2-lsiv2-drivers-plugin_10.1.0.15843807, VMware_bootbank_lsuv2-nvme-pcie-plugin_1.0.0-1vmw.700.1.0.15843807, VMware_bootbank_lsuv2-oem-dell-plugin_1.0.0-1vmw.700.1.0.15843807, VMware_bootbank_lplugin_1.0.0-1vmw.700.1.0.15843807, VMware_bootbank_lsuv2-oem-lenovo-plugin_1.0.0-1vmw.700.1.0.15843807, VMware_bootbank_lsuv2-smartpqiv2-plugin_1.0.0-3vmw.700.1.0.1584_bootbank_native-misc-drivers_7.0.0-1.25.16324942, VMware_bootbank_qlnativefc_4.0.1.0-3vmw.700.1.0.15843807, VMware_bootbank_vdfs_7.0.0-1.25.16324942, VMware_bootbank_vxcli-nvme-plugin_1.2.0.37-1vmw.700.1.0.15843807, VMware_bootbank_vsan_7.0.0-1.25.16324942, VMware_bootbank_vsanhealth_7.0.0-1.25.16324942, VMware_locker_tools-light_11.-16321839
      [root@xd-1541-5028d:~] reboot

    update-to-xeon-d-1541-via-esxcli-worked
    This upgrade was successful, despite the ESXCLI command result showing "VIBs Installed:" as blank.

    Version: 7.0.0 (Build 16324942)
    to:
    Version: 7.0.1 (Build 16850804)

    This upgrade to my SYS-5028D-TN4T Xeon D-1541 system succeeded, yet it showed all VIBs skipped, as shown below. This same unusual behavior was seen on another Xeon D-1541 system last night.

      login as: root
      Using keyboard-interactive authentication.
      Password:
      The time and date of this login have been sent to the system logs.
    
      WARNING:
         All commands run on the ESXi shell are logged and may be included in
         support bundles. Do not provide passwords directly on the command line.
         Most tools can prompt for secrets or accept them from standard input.
    
      VMware offers supported, powerful system administration tools.  Please
      see www.vmware.com/go/sysadmintools for details.
    
      The ESXi Shell can be disabled by an administrative user. See the
      vSphere Security documentation for more information.
      [root@xd-1541-5028d:~] esxcli software profile update -p ESXi-7.0.1-16850804-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml
      Update Result
         Message: Operation finished successfully.
         Reboot Required: false
         VIBs Installed:
         VIBs Removed:
         VIBs Skipped: VMW_bootbank_bnxtnet_216.0.50.0-16vmw.701.0.0.16850804, VMW_bootbank_bnxtroce_216.0.58.0-7vmw.701.0.0.16850804, VMW_bootbank_brcmfcoe_12.0.1500.0-1vmw.701.0.0.16850804, VMW_bootbank_brcmnvmefc_12.6.278.10-3vmw.701.0.0.16850804, VMW_bootbank_elxiscsi_12.0.1200.0-2vmw.701.0.0.16850804, VMW_bootbank_elxnet_12.0.1250.0-5vmw.701.0.0.16850804, VMW_bootbank_i40en_1.8.1.123-1vmw.701.0.0.16850804, VMW_bootbank_i40iwn_1.1.2.6-1vmw.701.0.0.16850804, VMW_bootbank_iavmd_2.0.0.1055-5vmw.701.0.0.16850804, VMW_bootbank_icen_1.0.0.9-1vmw.701.0.0.16850804, VMW_bootbank_igbn_0.1.1.0-7vmw.701.0.0.16850804, VMW_bootbank_iser_1.1.0.1-1vmw.701.0.0.16850804, VMW_bootbank_ixgben_1.7.1.28-1vmw.701.0.0.16850804, VMW_bootbank_lpfc_12.6.278.10-8vmw.701.0.0.16850804, VMW_bootbank_lpnic_11.4.62.0-1vmw.701.0.0.16850804, VMW_bootbank_lsi-mr3_7.712.51.00-1vmw.701.0.0.16850804, VMW_bootbank_lsi-msgpt2_20.00.06.00-3vmw.701.0.0.16850804, VMW_bootbank_lsi-msgpt35_13.00.13.00-2vmw.701.0.0.16850804, VMW_bootbank_lsi-msgpt3_17.00.10.00-2vmw.701.0.0.16850804, VMW_bootbank_mtip32xx-native_3.9.8-1vmw.701.0.0.16850804, VMW_bootbank_ne1000_0.8.4-11vmw.701.0.0.16850804, VMW_bootbank_nenic_1.0.29.0-2vmw.701.0.0.16850804, VMW_bootbank_nfnic_4.0.0.44-2vmw.701.0.0.16850804, VMW_bootbank_nhpsa_70.0050.0.100-1vmw.701.0.0.16850804, VMW_bootbank_nmlx4-core_3.19.16.8-2vmw.701.0.0.16850804, VMW_bootbank_nmlx4-en_3.19.16.8-2vmw.701.0.0.16850804, VMW_bootbank_nmlx4-rdma_3.19.16.8-2vmw.701.0.0.16850804, VMW_bootbank_nmlx5-core_4.19.16.8-2vmw.701.0.0.16850804, VMW_bootbank_nmlx5-rdma_4.19.16.8-2vmw.701.0.0.16850804, VMW_bootbank_ntg3_4.1.5.0-0vmw.701.0.0.16850804, VMW_bootbank_nvme-pcie_1.2.3.9-2vmw.701.0.0.16850804, VMW_bootbank_nvmerdma_1.0.1.2-1vmw.701.0.0.16850804, VMW_bootbank_nvmxnet3-ens_2.0.0.22-1vmw.701.0.0.16850804, VMW_bootbank_nvmxnet3_2.0.0.30-1vmw.701.0.0.16850804, VMW_bootbank_pvscsi_0.1-2vmw.701.0.0.16850804, VMW_bootbank_qcnic_1.0.15.0-10vmw.701.0.0.16850804, VMW_bootbank_qedentv_3.40.3.0-12vmw.701.0.0.16850804, VMW_bootbank_qedrntv_3.40.4.0-12vmw.701.0.0.16850804, VMW_bootbank_qfle3_1.0.67.0-9vmw.701.0.0.16850804, VMW_bootbank_qfle3f_1.0.51.0-14vmw.701.0.0.16850804, VMW_bootbank_qfle3i_1.0.15.0-9vmw.701.0.0.16850804, VMW_bootbank_qflge_1.1.0.11-1vmw.701.0.0.16850804, VMW_bootbank_rste_2.0.2.0088-7vmw.701.0.0.16850804, VMW_bootbank_sfvmk_2.4.0.0010-15vmw.701.0.0.16850804, VMW_bootbank_smartpqi_70.4000.0.100-3vmw.701.0.0.16850804, VMW_bootbank_vmkata_0.1-1vmw.701.0.0.16850804, VMW_bootbank_vmkfcoe_1.0.0.2-1vmw.701.0.0.16850804, VMW_bootbank_vmkusb_0.1-1vmw.701.0.0.16850804, VMW_bootbank_vmw-ahci_2.0.5-2vmw.701.0.0.16850804, VMware_bootbank_cpu-microcode_7.0.1-0.0.16850804, VMware_bootbank_crx_7.0.1-0.0.16850804, VMware_bootbank_elx-esx-libelxima.so_12.0.1200.0-3vmw.701.0.0.16850804, VMware_bootbank_esx-base_7.0.1-0.0.16850804, VMware_bootbank_esx-dvfilter-generic-fastpath_7.0.1-0.0.16850804, VMware_bootbank_esx-ui_1.34.4-16668064, VMware_bootbank_esx-update_7.0.1-0.0.16850804, VMware_bootbank_esx-xserver_7.0.1-0.0.16850804, VMware_bootbank_gc_7.0.1-0.0.16850804, VMware_bootbank_loadesx_7.0.1-0.0.16850804, VMware_bootbank_lsuv2-hpv2-hpsa-plugin_1.0.0-3vmw.701.0.0.16850804, VMware_bootbank_lsuv2-intelv2-nvme-vmd-plugin_1.0.0-2vmw.701.0.0.16850804, VMware_bootbank_lsuv2-lsiv2-drivers-plugin_1.0.0-4vmw.701.0.0.16850804, VMware_bootbank_lsuv2-nvme-pcie-plugin_1.0.0-1vmw.701.0.0.16850804, VMware_bootbank_lsuv2-oem-dell-plugin_1.0.0-1vmw.701.0.0.16850804, VMware_bootbank_lsuv2-oem-hp-plugin_1.0.0-1vmw.701.0.0.16850804, VMware_bootbank_lsuv2-oem-lenovo-plugin_1.0.0-1vmw.701.0.0.16850804, VMware_bootbank_lsuv2-smartpqiv2-plugin_1.0.0-4vmw.701.0.0.16850804, VMware_bootbank_native-misc-drivers_7.0.1-0.0.16850804, VMware_bootbank_qlnativefc_4.0.3.0-17vmw.701.0.0.16850804, VMware_bootbank_vdfs_7.0.1-0.0.16850804, VMware_bootbank_vmware-esx-esxcli-nvme-plugin_1.2.0.38-1vmw.701.0.0.16850804, VMware_bootbank_vsan_7.0.1-0.0.16850804, VMware_bootbank_vsanhealth_7.0.1-0.0.16850804, VMware_locker_tools-light_11.1.1.16303738-16850804
      [root@xd-1541-5028d:~] reboot

    Version: 7.0.1 (Build 16324942)
    to:
    Version: 7.0.1a (Build 17119627)

    This upgrade to my SYS-5028D-TN4T Xeon D-1541 system succeeded, and doesn't show VIBS skipped like going to Update 1 did.

    7.0u1a

      login as: root
      Using keyboard-interactive authentication.
      Password:
      The time and date of this login have been sent to the system logs.
    
      WARNING:
         All commands run on the ESXi shell are logged and may be included in
         support bundles. Do not provide passwords directly on the command line.
         Most tools can prompt for secrets or accept them from standard input.
    
      VMware offers supported, powerful system administration tools.  Please
      see www.vmware.com/go/sysadmintools for details.
    
      The ESXi Shell can be disabled by an administrative user. See the
      vSphere Security documentation for more information.
      [root@xd-1541-5028d:~] esxcli software profile update -p ESXi-7.0U1a-17119627-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml
      Update Result
         Message: The update completed successfully, but the system needs to be rebooted for the changes to be effective.
         Reboot Required: true
         VIBs Installed: VMware_bootbank_cpu-microcode_7.0.1-0.10.17119627, VMware_bootbank_crx_7.0.1-0.10.17119627, VMware_bootbank_esx-base_7.0.1-0.10.17119627, VMware_bootbank_esx-dvfilter-generic-fastpath_7.0.1-0.10.17119627, VMware_bootbank_esx-update_7.0.1-0.10.17119627, VMware_bootbank_esx-xserver_7.0.1-0.10.17119627, VMware_bootbank_gc_7.0.1-0.10.17119627, VMware_bootbank_loadesx_7.0.1-0.10.17119627, VMware_bootbank_native-misc-drivers_7.0.1-0.10.17119627, VMware_bootbank_vdfs_7.0.1-0.10.17119627, VMware_bootbank_vsan_7.0.1-0.10.17119627, VMware_bootbank_vsanhealth_7.0.1-0.10.17119627
         VIBs Removed: VMware_bootbank_cpu-microcode_7.0.1-0.0.16850804, VMware_bootbank_crx_7.0.1-0.0.16850804, VMware_bootbank_esx-base_7.0.1-0.0.16850804, VMware_bootbank_esx-dvfilter-generic-fastpath_7.0.1-0.0.16850804, VMware_bootbank_esx-update_7.0.1-0.0.16850804, VMware_bootbank_esx-xserver_7.0.1-0.0.16850804, VMware_bootbank_gc_7.0.1-0.0.16850804, VMware_bootbank_loadesx_7.0.1-0.0.16850804, VMware_bootbank_native-misc-drivers_7.0.1-0.0.16850804, VMware_bootbank_vdfs_7.0.1-0.0.16850804, VMware_bootbank_vsan_7.0.1-0.0.16850804, VMware_bootbank_vsanhealth_7.0.1-0.0.16850804
         VIBs Skipped: VMW_bootbank_bnxtnet_216.0.50.0-16vmw.701.0.0.16850804, VMW_bootbank_bnxtroce_216.0.58.0-7vmw.701.0.0.16850804, VMW_bootbank_brcmfcoe_12.0.1500.0-1vmw.701.0.0.16850804, VMW_bootbank_brcmnvmefc_12.6.278.10-3vmw.701.0.0.16850804, VMW_bootbank_elxiscsi_12.0.1200.0-2vmw.701.0.0.16850804, VMW_bootbank_elxnet_12.0.1250.0-5vmw.701.0.0.16850804, VMW_bootbank_i40en_1.8.1.123-1vmw.701.0.0.16850804, VMW_bootbank_i40iwn_1.1.2.6-1vmw.701.0.0.16850804, VMW_bootbank_iavmd_2.0.0.1055-5vmw.701.0.0.16850804, VMW_bootbank_icen_1.0.0.9-1vmw.701.0.0.16850804, VMW_bootbank_igbn_0.1.1.0-7vmw.701.0.0.16850804, VMW_bootbank_iser_1.1.0.1-1vmw.701.0.0.16850804, VMW_bootbank_ixgben_1.7.1.28-1vmw.701.0.0.16850804, VMW_bootbank_lpfc_12.6.278.10-8vmw.701.0.0.16850804, VMW_bootbank_lpnic_11.4.62.0-1vmw.701.0.0.16850804, VMW_bootbank_lsi-mr3_7.712.51.00-1vmw.701.0.0.16850804, VMW_bootbank_lsi-msgpt2_20.00.06.00-3vmw.701.0.0.16850804, VMW_bootbank_lsi-msgpt35_13.00.13.00-2vmw.701.0.0.16850804, VMW_bootbank_lsi-msgpt3_17.00.10.00-2vmw.701.0.0.16850804, VMW_bootbank_mtip32xx-native_3.9.8-1vmw.701.0.0.16850804, VMW_bootbank_ne1000_0.8.4-11vmw.701.0.0.16850804, VMW_bootbank_nenic_1.0.29.0-2vmw.701.0.0.16850804, VMW_bootbank_nfnic_4.0.0.44-2vmw.701.0.0.16850804, VMW_bootbank_nhpsa_70.0050.0.100-1vmw.701.0.0.16850804, VMW_bootbank_nmlx4-core_3.19.16.8-2vmw.701.0.0.16850804, VMW_bootbank_nmlx4-en_3.19.16.8-2vmw.701.0.0.16850804, VMW_bootbank_nmlx4-rdma_3.19.16.8-2vmw.701.0.0.16850804, VMW_bootbank_nmlx5-core_4.19.16.8-2vmw.701.0.0.16850804, VMW_bootbank_nmlx5-rdma_4.19.16.8-2vmw.701.0.0.16850804, VMW_bootbank_ntg3_4.1.5.0-0vmw.701.0.0.16850804, VMW_bootbank_nvme-pcie_1.2.3.9-2vmw.701.0.0.16850804, VMW_bootbank_nvmerdma_1.0.1.2-1vmw.701.0.0.16850804, VMW_bootbank_nvmxnet3-ens_2.0.0.22-1vmw.701.0.0.16850804, VMW_bootbank_nvmxnet3_2.0.0.30-1vmw.701.0.0.16850804, VMW_bootbank_pvscsi_0.1-2vmw.701.0.0.16850804, VMW_bootbank_qcnic_1.0.15.0-10vmw.701.0.0.16850804, VMW_bootbank_qedentv_3.40.3.0-12vmw.701.0.0.16850804, VMW_bootbank_qedrntv_3.40.4.0-12vmw.701.0.0.16850804, VMW_bootbank_qfle3_1.0.67.0-9vmw.701.0.0.16850804, VMW_bootbank_qfle3f_1.0.51.0-14vmw.701.0.0.16850804, VMW_bootbank_qfle3i_1.0.15.0-9vmw.701.0.0.16850804, VMW_bootbank_qflge_1.1.0.11-1vmw.701.0.0.16850804, VMW_bootbank_rste_2.0.2.0088-7vmw.701.0.0.16850804, VMW_bootbank_sfvmk_2.4.0.0010-15vmw.701.0.0.16850804, VMW_bootbank_smartpqi_70.4000.0.100-3vmw.701.0.0.16850804, VMW_bootbank_vmkata_0.1-1vmw.701.0.0.16850804, VMW_bootbank_vmkfcoe_1.0.0.2-1vmw.701.0.0.16850804, VMW_bootbank_vmkusb_0.1-1vmw.701.0.0.16850804, VMW_bootbank_vmw-ahci_2.0.5-2vmw.701.0.0.16850804, VMware_bootbank_elx-esx-libelxima.so_12.0.1200.0-3vmw.701.0.0.16850804, VMware_bootbank_esx-ui_1.34.4-16668064, VMware_bootbank_lsuv2-hpv2-hpsa-plugin_1.0.0-3vmw.701.0.0.16850804, VMware_bootbank_lsuv2-intelv2-nvme-vmd-plugin_1.0.0-2vmw.701.0.0.16850804, VMware_bootbank_lsuv2-lsiv2-drivers-plugin_1.0.0-4vmw.701.0.0.16850804, VMware_bootbank_lsuv2-nvme-pcie-plugin_1.0.0-1vmw.701.0.0.16850804, VMware_bootbank_lsuv2-oem-dell-plugin_1.0.0-1vmw.701.0.0.16850804, VMware_bootbank_lsuv2-oem-hp-plugin_1.0.0-1vmw.701.0.0.16850804, VMware_bootbank_lsuv2-oem-lenovo-plugin_1.0.0-1vmw.701.0.0.16850804, VMware_bootbank_lsuv2-smartpqiv2-plugin_1.0.0-4vmw.701.0.0.16850804, VMware_bootbank_qlnativefc_4.0.3.0-17vmw.701.0.0.16850804, VMware_bootbank_vmware-esx-esxcli-nvme-plugin_1.2.0.38-1vmw.701.0.0.16850804, VMware_locker_tools-light_11.1.1.16303738-16850804
      [root@xd-1541-5028d:~] reboot

    Version: 7.0.1a (Build 17119627)
    to:
    Version: 7.0.1b (Build 17168206)

    7.0u1b

      login as: root
      Using keyboard-interactive authentication.
      Password:
      The time and date of this login have been sent to the system logs.
    
      WARNING:
         All commands run on the ESXi shell are logged and may be included in
         support bundles. Do not provide passwords directly on the command line.
         Most tools can prompt for secrets or accept them from standard input.
    
      VMware offers supported, powerful system administration tools.  Please
      see www.vmware.com/go/sysadmintools for details.
    
      The ESXi Shell can be disabled by an administrative user. See the
      vSphere Security documentation for more information.
      [root@xd-1567-5028d:~] esxcli software profile update -p ESXi-7.0U1b-17168206-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml
      Update Result
         Message: The update completed successfully, but the system needs to be rebooted for the changes to be effective.
         Reboot Required: true
         VIBs Installed: VMware_bootbank_cpu-microcode_7.0.1-0.15.17168206, VMware_bootbank_crx_7.0.1-0.15.17168206, VMware_bootbank_esx-base_7.0.1-0.15.17168206, VMware_bootbank_esx-dvfilter-generic-fastpath_7.0.1-0.15.17168206, VMware_bootbank_esx-update_7.0.1-0.15.17168206, VMware_bootbank_esx-xserver_7.0.1-0.15.17168206, VMware_bootbank_gc_7.0.1-0.15.17168206, VMware_bootbank_loadesx_7.0.1-0.15.17168206, VMware_bootbank_native-misc-drivers_7.0.1-0.15.17168206, VMware_bootbank_vdfs_7.0.1-0.15.17168206, VMware_bootbank_vsan_7.0.1-0.15.17168206, VMware_bootbank_vsanhealth_7.0.1-0.15.17168206
         VIBs Removed: VMware_bootbank_cpu-microcode_7.0.1-0.10.17119627, VMware_bootbank_crx_7.0.1-0.10.17119627, VMware_bootbank_esx-base_7.0.1-0.10.17119627, VMware_bootbank_esx-dvfilter-generic-fastpath_7.0.1-0.10.17119627, VMware_bootbank_esx-update_7.0.1-0.10.17119627, VMware_bootbank_esx-xserver_7.0.1-0.10.17119627, VMware_bootbank_gc_7.0.1-0.10.17119627, VMware_bootbank_loadesx_7.0.1-0.10.17119627, VMware_bootbank_native-misc-drivers_7.0.1-0.10.17119627, VMware_bootbank_vdfs_7.0.1-0.10.17119627, VMware_bootbank_vsan_7.0.1-0.10.17119627, VMware_bootbank_vsanhealth_7.0.1-0.10.17119627
         VIBs Skipped: VMW_bootbank_bnxtnet_216.0.50.0-16vmw.701.0.0.16850804, VMW_bootbank_bnxtroce_216.0.58.0-7vmw.701.0.0.16850804, VMW_bootbank_brcmfcoe_12.0.1500.0-1vmw.701.0.0.16850804, VMW_bootbank_brcmnvmefc_12.6.278.10-3vmw.701.0.0.16850804, VMW_bootbank_elxiscsi_12.0.1200.0-2vmw.701.0.0.16850804, VMW_bootbank_elxnet_12.0.1250.0-5vmw.701.0.0.16850804, VMW_bootbank_i40en_1.8.1.123-1vmw.701.0.0.16850804, VMW_bootbank_i40iwn_1.1.2.6-1vmw.701.0.0.16850804, VMW_bootbank_iavmd_2.0.0.1055-5vmw.701.0.0.16850804, VMW_bootbank_icen_1.0.0.9-1vmw.701.0.0.16850804, VMW_bootbank_igbn_0.1.1.0-7vmw.701.0.0.16850804, VMW_bootbank_iser_1.1.0.1-1vmw.701.0.0.16850804, VMW_bootbank_ixgben_1.7.1.28-1vmw.701.0.0.16850804, VMW_bootbank_lpfc_12.6.278.10-8vmw.701.0.0.16850804, VMW_bootbank_lpnic_11.4.62.0-1vmw.701.0.0.16850804, VMW_bootbank_lsi-mr3_7.712.51.00-1vmw.701.0.0.16850804, VMW_bootbank_lsi-msgpt2_20.00.06.00-3vmw.701.0.0.16850804, VMW_bootbank_lsi-msgpt35_13.00.13.00-2vmw.701.0.0.16850804, VMW_bootbank_lsi-msgpt3_17.00.10.00-2vmw.701.0.0.16850804, VMW_bootbank_mtip32xx-native_3.9.8-1vmw.701.0.0.16850804, VMW_bootbank_ne1000_0.8.4-11vmw.701.0.0.16850804, VMW_bootbank_nenic_1.0.29.0-2vmw.701.0.0.16850804, VMW_bootbank_nfnic_4.0.0.44-2vmw.701.0.0.16850804, VMW_bootbank_nhpsa_70.0050.0.100-1vmw.701.0.0.16850804, VMW_bootbank_nmlx4-core_3.19.16.8-2vmw.701.0.0.16850804, VMW_bootbank_nmlx4-en_3.19.16.8-2vmw.701.0.0.16850804, VMW_bootbank_nmlx4-rdma_3.19.16.8-2vmw.701.0.0.16850804, VMW_bootbank_nmlx5-core_4.19.16.8-2vmw.701.0.0.16850804, VMW_bootbank_nmlx5-rdma_4.19.16.8-2vmw.701.0.0.16850804, VMW_bootbank_ntg3_4.1.5.0-0vmw.701.0.0.16850804, VMW_bootbank_nvme-pcie_1.2.3.9-2vmw.701.0.0.16850804, VMW_bootbank_nvmerdma_1.0.1.2-1vmw.701.0.0.16850804, VMW_bootbank_nvmxnet3-ens_2.0.0.22-1vmw.701.0.0.16850804, VMW_bootbank_nvmxnet3_2.0.0.30-1vmw.701.0.0.16850804, VMW_bootbank_pvscsi_0.1-2vmw.701.0.0.16850804, VMW_bootbank_qcnic_1.0.15.0-10vmw.701.0.0.16850804, VMW_bootbank_qedentv_3.40.3.0-12vmw.701.0.0.16850804, VMW_bootbank_qedrntv_3.40.4.0-12vmw.701.0.0.16850804, VMW_bootbank_qfle3_1.0.67.0-9vmw.701.0.0.16850804, VMW_bootbank_qfle3f_1.0.51.0-14vmw.701.0.0.16850804, VMW_bootbank_qfle3i_1.0.15.0-9vmw.701.0.0.16850804, VMW_bootbank_qflge_1.1.0.11-1vmw.701.0.0.16850804, VMW_bootbank_rste_2.0.2.0088-7vmw.701.0.0.16850804, VMW_bootbank_sfvmk_2.4.0.0010-15vmw.701.0.0.16850804, VMW_bootbank_smartpqi_70.4000.0.100-3vmw.701.0.0.16850804, VMW_bootbank_vmkata_0.1-1vmw.701.0.0.16850804, VMW_bootbank_vmkfcoe_1.0.0.2-1vmw.701.0.0.16850804, VMW_bootbank_vmkusb_0.1-1vmw.701.0.0.16850804, VMW_bootbank_vmw-ahci_2.0.5-2vmw.701.0.0.16850804, VMware_bootbank_elx-esx-libelxima.so_12.0.1200.0-3vmw.701.0.0.16850804, VMware_bootbank_esx-ui_1.34.4-16668064, VMware_bootbank_lsuv2-hpv2-hpsa-plugin_1.0.0-3vmw.701.0.0.16850804, VMware_bootbank_lsuv2-intelv2-nvme-vmd-plugin_1.0.0-2vmw.701.0.0.16850804, VMware_bootbank_lsuv2-lsiv2-drivers-plugin_1.0.0-4vmw.701.0.0.16850804, VMware_bootbank_lsuv2-nvme-pcie-plugin_1.0.0-1vmw.701.0.0.16850804, VMware_bootbank_lsuv2-oem-dell-plugin_1.0.0-1vmw.701.0.0.16850804, VMware_bootbank_lsuv2-oem-hp-plugin_1.0.0-1vmw.701.0.0.16850804, VMware_bootbank_lsuv2-oem-lenovo-plugin_1.0.0-1vmw.701.0.0.16850804, VMware_bootbank_lsuv2-smartpqiv2-plugin_1.0.0-4vmw.701.0.0.16850804, VMware_bootbank_qlnativefc_4.0.3.0-17vmw.701.0.0.16850804, VMware_bootbank_vmware-esx-esxcli-nvme-plugin_1.2.0.38-1vmw.701.0.0.16850804, VMware_locker_tools-light_11.1.1.16303738-16850804
         [root@xd-1567-5028d:~] reboot

    Version: 7.0.1b (Build 17168206)
    to:
    Version: 7.0.1c (Build 17325551)

    7.0u1b

      login as: root
      Using keyboard-interactive authentication.
      Password:
      The time and date of this login have been sent to the system logs.
    
      WARNING:
         All commands run on the ESXi shell are logged and may be included in
         support bundles. Do not provide passwords directly on the command line.
         Most tools can prompt for secrets or accept them from standard input.
    
      VMware offers supported, powerful system administration tools.  Please
      see www.vmware.com/go/sysadmintools for details.
    
      The ESXi Shell can be disabled by an administrative user. See the
      vSphere Security documentation for more information.
      [root@xd-1541-5028d:~] esxcli software profile update -p ESXi-7.0U1c-17325551-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml
      Update Result
         Message: The update completed successfully, but the system needs to be rebooted for the changes to be effective.
         Reboot Required: true
         VIBs Installed: VMW_bootbank_nhpsa_70.0051.0.100-2vmw.701.0.25.17325551, VMW_bootbank_nvmerdma_1.0.1.2-1vmw.701.0.20.17325020, VMW_bootbank_smartpqi_70.4000.0.100-4vmwvmw.701.0.25.17325551, VMW_bootbank_vmkfcoe_1.0.0.2-1vmw.701.0.20.17325020, VMW_bootbank_vmkusb_0.1-1vmw.701.0.25.17325551, VMware_bootbank_cpu-microcode_7.0.1-0.25.17325 VMware_bootbank_esx-base_7.0.1-0.25.17325551, VMware_bootbank_esx-dvfilter-generic-fastpath_7.0.1-0.25.17325551, VMware_bootbank_esx-update_7.0.1-0.25.17325551, VMware_bre_bootbank_gc_7.0.1-0.25.17325551, VMware_bootbank_loadesx_7.0.1-0.25.17325551, VMware_bootbank_native-misc-drivers_7.0.1-0.25.17325551, VMware_bootbank_vdfs_7.0.1-0.25.25551, VMware_bootbank_vsanhealth_7.0.1-0.25.17325551
         VIBs Removed: VMW_bootbank_nhpsa_70.0050.0.100-1vmw.701.0.0.16850804, VMW_bootbank_nvmerdma_1.0.1.2-1vmw.701.0.0.16850804, VMW_bootbank_smartpqi_70.4000.0.100-3vmw.70101.0.0.16850804, VMW_bootbank_vmkfcoe_1.0.0.2-1vmw.701.0.0.16850804, VMW_bootbank_vmkusb_0.1-1vmw.701.0.0.16850804, VMware_bootbank_cpu-microcode_7.0.1-0.15.17168206, VMwbootbank_esx-base_7.0.1-0.15.17168206, VMware_bootbank_esx-dvfilter-generic-fastpath_7.0.1-0.15.17168206, VMware_bootbank_esx-update_7.0.1-0.15.17168206, VMware_bootbank_ank_gc_7.0.1-0.15.17168206, VMware_bootbank_loadesx_7.0.1-0.15.17168206, VMware_bootbank_native-misc-drivers_7.0.1-0.15.17168206, VMware_bootbank_vdfs_7.0.1-0.15.17168206Mware_bootbank_vsanhealth_7.0.1-0.15.17168206
         VIBs Skipped: VMW_bootbank_bnxtnet_216.0.50.0-16vmw.701.0.0.16850804, VMW_bootbank_bnxtroce_216.0.58.0-7vmw.701.0.0.16850804, VMW_bootbank_brcmfcoe_12.0.1500.0-1vmw.70278.10-3vmw.701.0.0.16850804, VMW_bootbank_elxiscsi_12.0.1200.0-2vmw.701.0.0.16850804, VMW_bootbank_elxnet_12.0.1250.0-5vmw.701.0.0.16850804, VMW_bootbank_i40en_1.8.1.123.1.2.6-1vmw.701.0.0.16850804, VMW_bootbank_iavmd_2.0.0.1055-5vmw.701.0.0.16850804, VMW_bootbank_icen_1.0.0.9-1vmw.701.0.0.16850804, VMW_bootbank_igbn_0.1.1.0-7vmw.701.0.0.0.0.16850804, VMW_bootbank_ixgben_1.7.1.28-1vmw.701.0.0.16850804, VMW_bootbank_lpfc_12.6.278.10-8vmw.701.0.0.16850804, VMW_bootbank_lpnic_11.4.62.0-1vmw.701.0.0.16850804.0.16850804, VMW_bootbank_lsi-msgpt2_20.00.06.00-3vmw.701.0.0.16850804, VMW_bootbank_lsi-msgpt35_13.00.13.00-2vmw.701.0.0.16850804, VMW_bootbank_lsi-msgpt3_17.00.10.00-2vtive_3.9.8-1vmw.701.0.0.16850804, VMW_bootbank_ne1000_0.8.4-11vmw.701.0.0.16850804, VMW_bootbank_nenic_1.0.29.0-2vmw.701.0.0.16850804, VMW_bootbank_nfnic_4.0.0.44-2vmw.7016.8-2vmw.701.0.0.16850804, VMW_bootbank_nmlx4-en_3.19.16.8-2vmw.701.0.0.16850804, VMW_bootbank_nmlx4-rdma_3.19.16.8-2vmw.701.0.0.16850804, VMW_bootbank_nmlx5-core_4.19.1-rdma_4.19.16.8-2vmw.701.0.0.16850804, VMW_bootbank_ntg3_4.1.5.0-0vmw.701.0.0.16850804, VMW_bootbank_nvme-pcie_1.2.3.9-2vmw.701.0.0.16850804, VMW_bootbank_nvmxnet3-ens_2.mxnet3_2.0.0.30-1vmw.701.0.0.16850804, VMW_bootbank_pvscsi_0.1-2vmw.701.0.0.16850804, VMW_bootbank_qcnic_1.0.15.0-10vmw.701.0.0.16850804, VMW_bootbank_qedentv_3.40.3.0-1240.4.0-12vmw.701.0.0.16850804, VMW_bootbank_qfle3_1.0.67.0-9vmw.701.0.0.16850804, VMW_bootbank_qfle3f_1.0.51.0-14vmw.701.0.0.16850804, VMW_bootbank_qfle3i_1.0.15.0-9vmw.71vmw.701.0.0.16850804, VMW_bootbank_rste_2.0.2.0088-7vmw.701.0.0.16850804, VMW_bootbank_sfvmk_2.4.0.0010-15vmw.701.0.0.16850804, VMW_bootbank_vmw-ahci_2.0.5-2vmw.701.0.0.o_12.0.1200.0-3vmw.701.0.0.16850804, VMware_bootbank_esx-ui_1.34.4-16668064, VMware_bootbank_lsuv2-hpv2-hpsa-plugin_1.0.0-3vmw.701.0.0.16850804, VMware_bootbank_lsuv2-int804, VMware_bootbank_lsuv2-lsiv2-drivers-plugin_1.0.0-4vmw.701.0.0.16850804, VMware_bootbank_lsuv2-nvme-pcie-plugin_1.0.0-1vmw.701.0.0.16850804, VMware_bootbank_lsuv2-oemare_bootbank_lsuv2-oem-hp-plugin_1.0.0-1vmw.701.0.0.16850804, VMware_bootbank_lsuv2-oem-lenovo-plugin_1.0.0-1vmw.701.0.0.16850804, VMware_bootbank_lsuv2-smartpqiv2-plugin_qlnativefc_4.0.3.0-17vmw.701.0.0.16850804, VMware_bootbank_vmware-esx-esxcli-nvme-plugin_1.2.0.38-1vmw.701.0.0.16850804, VMware_locker_tools-light_11.1.1.16303738-168508

    [root@xd-1541-5028d:~] reboot

    Version: 7.0.1c (Build 17325551)
    to:
    Version: 7.0.1d (Build 17551050)

    7.0u1d
      login as: root
      Using keyboard-interactive authentication.
      Password:
      The time and date of this login have been sent to the system logs.
    
      WARNING:
         All commands run on the ESXi shell are logged and may be included in
         support bundles. Do not provide passwords directly on the command line.
         Most tools can prompt for secrets or accept them from standard input.
    
      VMware offers supported, powerful system administration tools.  Please
      see www.vmware.com/go/sysadmintools for details.
    
      The ESXi Shell can be disabled by an administrative user. See the
      vSphere Security documentation for more information.
      [root@xd-1541-5028d:~] esxcli software profile update -p ESXi-7.0U1d-17551050-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml
      Update Result
         Message: The update completed successfully, but the system needs to be rebooted for the changes to be effective.
         Reboot Required: true
         VIBs Installed: VMware_bootbank_cpu-microcode_7.0.1-0.30.17551050, VMware_bootbank_crx_7.0.1-0.30.17551050, VMware_bootbank_esx-base_7.0.1-0.30.17551050, VMware_bootba30.17551050, VMware_bootbank_esx-xserver_7.0.1-0.30.17551050, VMware_bootbank_gc_7.0.1-0.30.17551050, VMware_bootbank_loadesx_7.0.1-0.30.17551050, VMware_bootbank_native-nk_vsan_7.0.1-0.30.17551050, VMware_bootbank_vsanhealth_7.0.1-0.30.17551050
         VIBs Removed: VMware_bootbank_cpu-microcode_7.0.1-0.25.17325551, VMware_bootbank_crx_7.0.1-0.25.17325551, VMware_bootbank_esx-base_7.0.1-0.25.17325551, VMware_bootbank.17325551, VMware_bootbank_esx-xserver_7.0.1-0.25.17325551, VMware_bootbank_gc_7.0.1-0.25.17325551, VMware_bootbank_loadesx_7.0.1-0.25.17325551, VMware_bootbank_native-mi_vsan_7.0.1-0.25.17325551, VMware_bootbank_vsanhealth_7.0.1-0.25.17325551
         VIBs Skipped: VMW_bootbank_bnxtnet_216.0.50.0-16vmw.701.0.0.16850804, VMW_bootbank_bnxtroce_216.0.58.0-7vmw.701.0.0.16850804, VMW_bootbank_brcmfcoe_12.0.1500.0-1vmw.70lxiscsi_12.0.1200.0-2vmw.701.0.0.16850804, VMW_bootbank_elxnet_12.0.1250.0-5vmw.701.0.0.16850804, VMW_bootbank_i40en_1.8.1.123-1vmw.701.0.0.16850804, VMW_bootbank_i40iwn_ootbank_icen_1.0.0.9-1vmw.701.0.0.16850804, VMW_bootbank_igbn_0.1.1.0-7vmw.701.0.0.16850804, VMW_bootbank_iser_1.1.0.1-1vmw.701.0.0.16850804, VMW_bootbank_ixgben_1.7.1.28_lpnic_11.4.62.0-1vmw.701.0.0.16850804, VMW_bootbank_lsi-mr3_7.712.51.00-1vmw.701.0.0.16850804, VMW_bootbank_lsi-msgpt2_20.00.06.00-3vmw.701.0.0.16850804, VMW_bootbank_ls.0.0.16850804, VMW_bootbank_mtip32xx-native_3.9.8-1vmw.701.0.0.16850804, VMW_bootbank_ne1000_0.8.4-11vmw.701.0.0.16850804, VMW_bootbank_nenic_1.0.29.0-2vmw.701.0.0.168508vmw.701.0.25.17325551, VMW_bootbank_nmlx4-core_3.19.16.8-2vmw.701.0.0.16850804, VMW_bootbank_nmlx4-en_3.19.16.8-2vmw.701.0.0.16850804, VMW_bootbank_nmlx4-rdma_3.19.16.8-2nk_nmlx5-rdma_4.19.16.8-2vmw.701.0.0.16850804, VMW_bootbank_ntg3_4.1.5.0-0vmw.701.0.0.16850804, VMW_bootbank_nvme-pcie_1.2.3.9-2vmw.701.0.0.16850804, VMW_bootbank_nvmerdm4, VMW_bootbank_nvmxnet3_2.0.0.30-1vmw.701.0.0.16850804, VMW_bootbank_pvscsi_0.1-2vmw.701.0.0.16850804, VMW_bootbank_qcnic_1.0.15.0-10vmw.701.0.0.16850804, VMW_bootbank_q804, VMW_bootbank_qfle3_1.0.67.0-9vmw.701.0.0.16850804, VMW_bootbank_qfle3f_1.0.51.0-14vmw.701.0.0.16850804, VMW_bootbank_qfle3i_1.0.15.0-9vmw.701.0.0.16850804, VMW_bootb804, VMW_bootbank_sfvmk_2.4.0.0010-15vmw.701.0.0.16850804, VMW_bootbank_smartpqi_70.4000.0.100-4vmw.701.0.25.17325551, VMW_bootbank_vmkata_0.1-1vmw.701.0.25.17325551, VMW7325551, VMW_bootbank_vmw-ahci_2.0.5-2vmw.701.0.0.16850804, VMware_bootbank_elx-esx-libelxima.so_12.0.1200.0-3vmw.701.0.0.16850804, VMware_bootbank_esx-ui_1.34.4-16668064v2-intelv2-nvme-vmd-plugin_1.0.0-2vmw.701.0.0.16850804, VMware_bootbank_lsuv2-lsiv2-drivers-plugin_1.0.0-4vmw.701.0.0.16850804, VMware_bootbank_lsuv2-nvme-pcie-plugin_1.004, VMware_bootbank_lsuv2-oem-hp-plugin_1.0.0-1vmw.701.0.0.16850804, VMware_bootbank_lsuv2-oem-lenovo-plugin_1.0.0-1vmw.701.0.0.16850804, VMware_bootbank_lsuv2-smartpqiv250804, VMware_bootbank_vmware-esx-esxcli-nvme-plugin_1.2.0.38-1vmw.701.0.0.16850804, VMware_locker_tools-light_11.1.1.16303738-16850804
      [root@xd-1541-5028d:~] reboot
      [root@xd-1541-5028d:~]

    Version: 7.0.1d (Build 17551050)
    to:
    Version: 7.0.2 (Build 17630552)

      login as: root
      Using keyboard-interactive authentication.
      Password:
      The time and date of this login have been sent to the system logs.
    
      WARNING:
         All commands run on the ESXi shell are logged and may be included in
         support bundles. Do not provide passwords directly on the command line.
         Most tools can prompt for secrets or accept them from standard input.
    
      VMware offers supported, powerful system administration tools.  Please
      see www.vmware.com/go/sysadmintools for details.
    
      The ESXi Shell can be disabled by an administrative user. See the
      vSphere Security documentation for more information.
      [root@xd-1541-5028d:~] esxcli software profile update -p ESXi-7.0.2-17630552-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml
      Update Result
         Message: The update completed successfully, but the system needs to be rebooted for the changes to be effective.
         Reboot Required: true
         VIBs Installed: VMW_bootbank_atlantic_1.0.3.0-8vmw.702.0.0.17630552, VMW_bootbank_bnxtnet_216.0.50.0-34vmw.702.0.0.17630552, VMW_bootbank_bnxtroce_216.0.58.0-19vmw.702.0.0.17630552, VMW_bootbank_brcmfcoe_12.0.1500.1-2vmw.702.0.0.17630552, VMW_bootbank_brcmnvmefc_12.8.298.1-1vmw.702.0.0.17630552, VMW_bootbank_elxiscsi_12.0.1200.0-8vmw.702.0.0.17630552, VMW_bootbank_elxnet_12.0.1250.0-5vmw.702.0.0.17630552, VMW_bootbank_i40enu_1.8.1.136-1vmw.702.0.0.17630552, VMW_bootbank_iavmd_2.0.0.1152-1vmw.702.0.0.17630552, VMW_bootbank_icen_1.0.0.10-1vmw.702.0.0.17630552, VMW_bootbank_irdman_1.3.1.19-1vmw.702.0.0.17630552, VMW_bootbank_iser_1.1.0.1-1vmw.702.0.0.17630552, VMW_bootbank_ixgben_1.7.1.35-1vmw.702.0.0.17630552, VMW_bootbank_lpfc_12.8.298.3-1vmw.702.0.0.17630552, VMW_bootbank_lpnic_11.4.62.0-1vmw.702.0.0.17630552, VMW_bootbank_lsi-mr3_7.716.03.00-1vmw.702.0.0.17630552, VMW_bootbank_lsi-msgpt2_20.00.06.00-3vmw.702.0.0.17630552, VMW_bootbank_lsi-msgpt35_17.00.02.00-1vmw.702.0.0.17630552, VMW_bootbank_lsi-msgpt3_17.00.10.00-2vmw.702.0.0.17630552, VMW_bootbank_mtip32xx-native_3.9.8-1vmw.702.0.0.17630552, VMW_bootbank_ne1000_0.8.4-11vmw.702.0.0.17630552, VMW_bootbank_nenic_1.0.33.0-1vmw.702.0.0.17630552, VMW_bootbank_nfnic_4.0.0.63-1vmw.702.0.0.17630552, VMW_bootbank_nhpsa_70.0051.0.100-2vmw.702.0.0.17630552, VMW_bootbank_nmlx4-core_3.19.16.8-2vmw.702.0.0.17630552, VMW_bootbank_nmlx4-en_3.19.16.8-2vmw.702.0.0.17630552, VMW_bootbank_nmlx4-rdma_3.19.16.8-2vmw.702.0.0.17630552, VMW_bootbank_nmlx5-core_4.19.16.10-1vmw.702.0.0.17630552, VMW_bootbank_nmlx5-rdma_4.19.16.10-1vmw.702.0.0.17630552, VMW_bootbank_ntg3_4.1.5.0-0vmw.702.0.0.17630552, VMW_bootbank_nvme-pcie_1.2.3.11-1vmw.702.0.0.17630552, VMW_bootbank_nvmerdma_1.0.2.1-1vmw.702.0.0.17630552, VMW_bootbank_nvmxnet3-ens_2.0.0.22-1vmw.702.0.0.17630552, VMW_bootbank_nvmxnet3_2.0.0.30-1vmw.702.0.0.17630552, VMW_bootbank_pvscsi_0.1-2vmw.702.0.0.17630552, VMW_bootbank_qcnic_1.0.15.0-11vmw.702.0.0.17630552, VMW_bootbank_qedentv_3.40.5.53-20vmw.702.0.0.17630552, VMW_bootbank_qedrntv_3.40.5.53-16vmw.702.0.0.17630552, VMW_bootbank_qfle3_1.0.67.0-14vmw.702.0.0.17630552, VMW_bootbank_qfle3f_1.0.51.0-19vmw.702.0.0.17630552, VMW_bootbank_qfle3i_1.0.15.0-12vmw.702.0.0.17630552, VMW_bootbank_qflge_1.1.0.11-1vmw.702.0.0.17630552, VMW_bootbank_rste_2.0.2.0088-7vmw.702.0.0.17630552, VMW_bootbank_sfvmk_2.4.0.2010-4vmw.702.0.0.17630552, VMW_bootbank_smartpqi_70.4000.0.100-6vmw.702.0.0.17630552, VMW_bootbank_vmkata_0.1-1vmw.702.0.0.17630552, VMW_bootbank_vmkfcoe_1.0.0.2-1vmw.702.0.0.17630552, VMW_bootbank_vmkusb_0.1-1vmw.702.0.0.17630552, VMW_bootbank_vmw-ahci_2.0.9-1vmw.702.0.0.17630552, VMware_bootbank_clusterstore_7.0.2-0.0.17630552, VMware_bootbank_cpu-microcode_7.0.2-0.0.17630552, VMware_bootbank_crx_7.0.2-0.0.17630552, VMware_bootbank_elx-esx-libelxima.so_12.0.1200.0-4vmw.702.0.0.17630552, VMware_bootbank_esx-base_7.0.2-0.0.17630552, VMware_bootbank_esx-dvfilter-generic-fastpath_7.0.2-0.0.17630552, VMware_bootbank_esx-ui_1.34.8-17417756, VMware_bootbank_esx-update_7.0.2-0.0.17630552, VMware_bootbank_esx-xserver_7.0.2-0.0.17630552, VMware_bootbank_gc_7.0.2-0.0.17630552, VMware_bootbank_loadesx_7.0.2-0.0.17630552, VMware_bootbank_lsuv2-hpv2-hpsa-plugin_1.0.0-3vmw.702.0.0.17630552, VMware_bootbank_lsuv2-intelv2-nvme-vmd-plugin_2.0.0-2vmw.702.0.0.17630552, VMware_bootbank_lsuv2-lsiv2-drivers-plugin_1.0.0-5vmw.702.0.0.17630552, VMware_bootbank_lsuv2-nvme-pcie-plugin_1.0.0-1vmw.702.0.0.17630552, VMware_bootbank_lsuv2-oem-dell-plugin_1.0.0-1vmw.702.0.0.17630552, VMware_bootbank_lsuv2-oem-hp-plugin_1.0.0-1vmw.702.0.0.17630552, VMware_bootbank_lsuv2-oem-lenovo-plugin_1.0.0-1vmw.702.0.0.17630552, VMware_bootbank_lsuv2-smartpqiv2-plugin_1.0.0-6vmw.702.0.0.17630552, VMware_bootbank_native-misc-drivers_7.0.2-0.0.17630552, VMware_bootbank_qlnativefc_4.1.14.0-5vmw.702.0.0.17630552, VMware_bootbank_vdfs_7.0.2-0.0.17630552, VMware_bootbank_vmware-esx-esxcli-nvme-plugin_1.2.0.42-1vmw.702.0.0.17630552, VMware_bootbank_vsan_7.0.2-0.0.17630552, VMware_bootbank_vsanhealth_7.0.2-0.0.17630552, VMware_locker_tools-light_11.2.5.17337674-17630552
         VIBs Removed: VMW_bootbank_bnxtnet_216.0.50.0-16vmw.701.0.0.16850804, VMW_bootbank_bnxtroce_216.0.58.0-7vmw.701.0.0.16850804, VMW_bootbank_brcmfcoe_12.0.1500.0-1vmw.701.0.0.16850804, VMW_bootbank_brcmnvmefc_12.6.278.10-3vmw.701.0.0.16850804, VMW_bootbank_elxiscsi_12.0.1200.0-2vmw.701.0.0.16850804, VMW_bootbank_elxnet_12.0.1250.0-5vmw.701.0.0.16850804, VMW_bootbank_i40en_1.8.1.123-1vmw.701.0.0.16850804, VMW_bootbank_i40iwn_1.1.2.6-1vmw.701.0.0.16850804, VMW_bootbank_iavmd_2.0.0.1055-5vmw.701.0.0.16850804, VMW_bootbank_icen_1.0.0.9-1vmw.701.0.0.16850804, VMW_bootbank_iser_1.1.0.1-1vmw.701.0.0.16850804, VMW_bootbank_ixgben_1.7.1.28-1vmw.701.0.0.16850804, VMW_bootbank_lpfc_12.6.278.10-8vmw.701.0.0.16850804, VMW_bootbank_lpnic_11.4.62.0-1vmw.701.0.0.16850804, VMW_bootbank_lsi-mr3_7.712.51.00-1vmw.701.0.0.16850804, VMW_bootbank_lsi-msgpt2_20.00.06.00-3vmw.701.0.0.16850804, VMW_bootbank_lsi-msgpt35_13.00.13.00-2vmw.701.0.0.16850804, VMW_bootbank_lsi-msgpt3_17.00.10.00-2vmw.701.0.0.16850804, VMW_bootbank_mtip32xx-native_3.9.8-1vmw.701.0.0.16850804, VMW_bootbank_ne1000_0.8.4-11vmw.701.0.0.16850804, VMW_bootbank_nenic_1.0.29.0-2vmw.701.0.0.16850804, VMW_bootbank_nfnic_4.0.0.44-2vmw.701.0.0.16850804, VMW_bootbank_nhpsa_70.0051.0.100-2vmw.701.0.25.17325551, VMW_bootbank_nmlx4-core_3.19.16.8-2vmw.701.0.0.16850804, VMW_bootbank_nmlx4-en_3.19.16.8-2vmw.701.0.0.16850804, VMW_bootbank_nmlx4-rdma_3.19.16.8-2vmw.701.0.0.16850804, VMW_bootbank_nmlx5-core_4.19.16.8-2vmw.701.0.0.16850804, VMW_bootbank_nmlx5-rdma_4.19.16.8-2vmw.701.0.0.16850804, VMW_bootbank_ntg3_4.1.5.0-0vmw.701.0.0.16850804, VMW_bootbank_nvme-pcie_1.2.3.9-2vmw.701.0.0.16850804, VMW_bootbank_nvmerdma_1.0.1.2-1vmw.701.0.20.17325020, VMW_bootbank_nvmxnet3-ens_2.0.0.22-1vmw.701.0.0.16850804, VMW_bootbank_nvmxnet3_2.0.0.30-1vmw.701.0.0.16850804, VMW_bootbank_pvscsi_0.1-2vmw.701.0.0.16850804, VMW_bootbank_qcnic_1.0.15.0-10vmw.701.0.0.16850804, VMW_bootbank_qedentv_3.40.3.0-12vmw.701.0.0.16850804, VMW_bootbank_qedrntv_3.40.4.0-12vmw.701.0.0.16850804, VMW_bootbank_qfle3_1.0.67.0-9vmw.701.0.0.16850804, VMW_bootbank_qfle3f_1.0.51.0-14vmw.701.0.0.16850804, VMW_bootbank_qfle3i_1.0.15.0-9vmw.701.0.0.16850804, VMW_bootbank_qflge_1.1.0.11-1vmw.701.0.0.16850804, VMW_bootbank_rste_2.0.2.0088-7vmw.701.0.0.16850804, VMW_bootbank_sfvmk_2.4.0.0010-15vmw.701.0.0.16850804, VMW_bootbank_smartpqi_70.4000.0.100-4vmw.701.0.25.17325551, VMW_bootbank_vmkata_0.1-1vmw.701.0.25.17325551, VMW_bootbank_vmkfcoe_1.0.0.2-1vmw.701.0.20.17325020, VMW_bootbank_vmkusb_0.1-1vmw.701.0.25.17325551, VMW_bootbank_vmw-ahci_2.0.5-2vmw.701.0.0.16850804, VMware_bootbank_cpu-microcode_7.0.1-0.30.17551050, VMware_bootbank_crx_7.0.1-0.30.17551050, VMware_bootbank_elx-esx-libelxima.so_12.0.1200.0-3vmw.701.0.0.16850804, VMware_bootbank_esx-base_7.0.1-0.30.17551050, VMware_bootbank_esx-dvfilter-generic-fastpath_7.0.1-0.30.17551050, VMware_bootbank_esx-ui_1.34.4-16668064, VMware_bootbank_esx-update_7.0.1-0.30.17551050, VMware_bootbank_esx-xserver_7.0.1-0.30.17551050, VMware_bootbank_gc_7.0.1-0.30.17551050, VMware_bootbank_loadesx_7.0.1-0.30.17551050, VMware_bootbank_lsuv2-hpv2-hpsa-plugin_1.0.0-3vmw.701.0.0.16850804, VMware_bootbank_lsuv2-intelv2-nvme-vmd-plugin_1.0.0-2vmw.701.0.0.16850804, VMware_bootbank_lsuv2-lsiv2-drivers-plugin_1.0.0-4vmw.701.0.0.16850804, VMware_bootbank_lsuv2-nvme-pcie-plugin_1.0.0-1vmw.701.0.0.16850804, VMware_bootbank_lsuv2-oem-dell-plugin_1.0.0-1vmw.701.0.0.16850804, VMware_bootbank_lsuv2-oem-hp-plugin_1.0.0-1vmw.701.0.0.16850804, VMware_bootbank_lsuv2-oem-lenovo-plugin_1.0.0-1vmw.701.0.0.16850804, VMware_bootbank_lsuv2-smartpqiv2-plugin_1.0.0-4vmw.701.0.0.16850804, VMware_bootbank_native-misc-drivers_7.0.1-0.30.17551050, VMware_bootbank_qlnativefc_4.0.3.0-17vmw.701.0.0.16850804, VMware_bootbank_vdfs_7.0.1-0.30.17551050, VMware_bootbank_vmware-esx-esxcli-nvme-plugin_1.2.0.38-1vmw.701.0.0.16850804, VMware_bootbank_vsan_7.0.1-0.30.17551050, VMware_bootbank_vsanhealth_7.0.1-0.30.17551050, VMware_locker_tools-light_11.1.1.16303738-16850804
         VIBs Skipped: VMW_bootbank_igbn_1.4.11.2-1vmw.702.0.0.17630552
      [root@xd-1541-5028d:~] reboot

    Live updating issue explained here, so on Feb 17 2021, I tried this suggestion of going into maintenance mode and rebooting, but it still gave me the same "cannot be live installed" errors. This was on my Xeon D-1567 system that had ESXi 7.0 Update 1a, where my attempts via ESXCLI to 7.0 Update 1d failed as follows:

      login as: root
      Using keyboard-interactive authentication.
      Password:
      The time and date of this login have been sent to the system logs.
    
      WARNING:
         All commands run on the ESXi shell are logged and may be included in
         support bundles. Do not provide passwords directly on the command line.
         Most tools can prompt for secrets or accept them from standard input.
    
      VMware offers supported, powerful system administration tools.  Please
      see www.vmware.com/go/sysadmintools for details.
    
      The ESXi Shell can be disabled by an administrative user. See the
      vSphere Security documentation for more information.
      [root@xd-1567-5028d:~]
      [root@xd-1567-5028d:~]
      [root@xd-1567-5028d:~] esxcli software profile update -p ESXi-7.0U1d-17551050-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml
      [StatelessError]
      The transaction is not supported: VIB VMware_bootbank_native-misc-drivers_7.0.1-0.30.17551050 cannot be live installed. VIB VMware_bootbank_gc_7.0.1-0.30.17551050 cannot be live installed. VIB VMware_bootbank_esx-base_7.0.1-0.30.17551050 cannot be live installed. VIB VMware_bootbank_cpu-microcode_7.0.1-0.30.17551050 cannot be live installed. VIB VMW_bootbank_vmkusb_0.1-1vmw.701.0.25.17325551 cannot be live installed. VIB VMware_bootbank_vsan_7.0.1-0.30.17551050 cannot be live installed. VIB VMW_bootbank_smartpqi_70.4000.0.100-4vmw.701.0.25.17325551 cannot be live installed. VIB VMW_bootbank_nvmerdma_1.0.1.2-1vmw.701.0.20.17325020 cannot be live installed. VIB VMware_bootbank_esx-update_7.0.1-0.30.17551050 cannot be live installed. VIB VMW_bootbank_vmkata_0.1-1vmw.701.0.25.17325551 cannot be live installed. VIB VMW_bootbank_vmkfcoe_1.0.0.2-1vmw.701.0.20.17325020 cannot be live installed. VIB VMW_bootbank_nhpsa_70.0051.0.100-2vmw.701.0.25.17325551 cannot be live installed. VIB VMW_bootbank_smartpqi_70.4000.0.100-3vmw.701.0.0.16850804 cannot be removed live. VIB VMware_bootbank_native-misc-drivers_7.0.1-0.10.17119627 cannot be removed live. VIB VMware_bootbank_esx-base_7.0.1-0.10.17119627 cannot be removed live. VIB VMW_bootbank_vmkusb_0.1-1vmw.701.0.0.16850804 cannot be removed live. VIB VMware_bootbank_gc_7.0.1-0.10.17119627 cannot be removed live. VIB VMware_bootbank_vsan_7.0.1-0.10.17119627 cannot be removed live. VIB VMW_bootbank_nvmerdma_1.0.1.2-1vmw.701.0.0.16850804 cannot be removed live. VIB VMware_bootbank_esx-update_7.0.1-0.10.17119627 cannot be removed live. VIB VMware_bootbank_cpu-microcode_7.0.1-0.10.17119627 cannot be removed live. VIB VMW_bootbank_vmkfcoe_1.0.0.2-1vmw.701.0.0.16850804 cannot be removed live. VIB VMware_bootbank_esx-dvfilter-generic-fastpath_7.0.1-0.10.17119627 cannot be removed live. VIB VMW_bootbank_nhpsa_70.0050.0.100-1vmw.701.0.0.16850804 cannot be removed live.
      Please refer to the log file for more details.
      [root@xd-1567-5028d:~] reboot

    Version: 7.0.2 (Build 17630552)
    to:
    Version: 7.0.2a (Build 17867351)

      login as: root
      Using keyboard-interactive authentication.
      Password:
      The time and date of this login have been sent to the system logs.
    
      WARNING:
         All commands run on the ESXi shell are logged and may be included in
         support bundles. Do not provide passwords directly on the command line.
         Most tools can prompt for secrets or accept them from standard input.
    
      VMware offers supported, powerful system administration tools.  Please
      see www.vmware.com/go/sysadmintools for details.
    
      The ESXi Shell can be disabled by an administrative user. See the
      vSphere Security documentation for more information.
      [root@xd-1541-5028d:~] esxcli software profile update -p ESXi-7.0U2a-17867351-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml
      Update Result
         Message: The update completed successfully, but the system needs to be rebooted for the changes to be effective.
         Reboot Required: true
         VIBs Installed: VMW_bootbank_atlantic_1.0.3.0-8vmw.702.0.0.17867351, VMW_bootbank_bnxtnet_216.0.50.0-34vmw.702.0.0.17867351, VMW_bootbank_bnxtroce_216.0.58.0-19vmw.702.0.0.17867351, VMW_bootbank_brcmfcoe_12.0.1500.1-2vmw.702.0.0.17867351, VMW_bootbank_brcmnvmefc_12.8.298.1-1vmw.702.0.0.17867351, VMW_bootbank_elxiscsi_12.0.1200.0-8vmw.702.0.0.17867351, VMW_bootbank_elxnet_12.0.1250.0-5vmw.702.0.0.17867351, VMW_bootbank_i40enu_1.8.1.136-1vmw.702.0.0.17867351, VMW_bootbank_iavmd_2.0.0.1152-1vmw.702.0.0.17867351, VMW_bootbank_icen_1.0.0.10-1vmw.702.0.0.17867351, VMW_bootbank_igbn_1.4.11.2-1vmw.702.0.0.17867351, VMW_bootbank_irdman_1.3.1.19-1vmw.702.0.0.17867351, VMW_bootbank_iser_1.1.0.1-1vmw.702.0.0.17867351, VMW_bootbank_ixgben_1.7.1.35-1vmw.702.0.0.17867351, VMW_bootbank_lpfc_12.8.298.3-1vmw.702.0.0.17867351, VMW_bootbank_lpnic_11.4.62.0-1vmw.702.0.0.17867351, VMW_bootbank_lsi-mr3_7.716.03.00-1vmw.702.0.0.17867351, VMW_bootbank_lsi-msgpt2_20.00.06.00-3vmw.702.0.0.17867351, VMW_bootbank_lsi-msgpt35_17.00.02.00-1vmw.702.0.0.17867351, VMW_bootbank_lsi-msgpt3_17.00.10.00-2vmw.702.0.0.17867351, VMW_bootbank_mtip32xx-native_3.9.8-1vmw.702.0.0.17867351, VMW_bootbank_ne1000_0.8.4-11vmw.702.0.0.17867351, VMW_bootbank_nenic_1.0.33.0-1vmw.702.0.0.17867351, VMW_bootbank_nfnic_4.0.0.63-1vmw.702.0.0.17867351, VMW_bootbank_nhpsa_70.0051.0.100-2vmw.702.0.0.17867351, VMW_bootbank_nmlx4-core_3.19.16.8-2vmw.702.0.0.17867351, VMW_bootbank_nmlx4-en_3.19.16.8-2vmw.702.0.0.17867351, VMW_bootbank_nmlx4-rdma_3.19.16.8-2vmw.702.0.0.17867351, VMW_bootbank_nmlx5-core_4.19.16.10-1vmw.702.0.0.17867351, VMW_bootbank_nmlx5-rdma_4.19.16.10-1vmw.702.0.0.17867351, VMW_bootbank_ntg3_4.1.5.0-0vmw.702.0.0.17867351, VMW_bootbank_nvme-pcie_1.2.3.11-1vmw.702.0.0.17867351, VMW_bootbank_nvmerdma_1.0.2.1-1vmw.702.0.0.17867351, VMW_bootbank_nvmxnet3-ens_2.0.0.22-1vmw.702.0.0.17867351, VMW_bootbank_nvmxnet3_2.0.0.30-1vmw.702.0.0.17867351, VMW_bootbank_pvscsi_0.1-2vmw.702.0.0.17867351, VMW_bootbank_qcnic_1.0.15.0-11vmw.702.0.0.17867351, VMW_bootbank_qedentv_3.40.5.53-20vmw.702.0.0.17867351, VMW_bootbank_qedrntv_3.40.5.53-16vmw.702.0.0.17867351, VMW_bootbank_qfle3_1.0.67.0-14vmw.702.0.0.17867351, VMW_bootbank_qfle3f_1.0.51.0-19vmw.702.0.0.17867351, VMW_bootbank_qfle3i_1.0.15.0-12vmw.702.0.0.17867351, VMW_bootbank_qflge_1.1.0.11-1vmw.702.0.0.17867351, VMW_bootbank_rste_2.0.2.0088-7vmw.702.0.0.17867351, VMW_bootbank_sfvmk_2.4.0.2010-4vmw.702.0.0.17867351, VMW_bootbank_smartpqi_70.4000.0.100-6vmw.702.0.0.17867351, VMW_bootbank_vmkata_0.1-1vmw.702.0.0.17867351, VMW_bootbank_vmkfcoe_1.0.0.2-1vmw.702.0.0.17867351, VMW_bootbank_vmkusb_0.1-1vmw.702.0.0.17867351, VMW_bootbank_vmw-ahci_2.0.9-1vmw.702.0.0.17867351, VMware_bootbank_clusterstore_7.0.2-0.0.17867351, VMware_bootbank_cpu-microcode_7.0.2-0.0.17867351, VMware_bootbank_crx_7.0.2-0.0.17867351, VMware_bootbank_elx-esx-libelxima.so_12.0.1200.0-4vmw.702.0.0.17867351, VMware_bootbank_esx-base_7.0.2-0.0.17867351, VMware_bootbank_esx-dvfilter-generic-fastpath_7.0.2-0.0.17867351, VMware_bootbank_esx-update_7.0.2-0.0.17867351, VMware_bootbank_esx-xserver_7.0.2-0.0.17867351, VMware_bootbank_gc_7.0.2-0.0.17867351, VMware_bootbank_loadesx_7.0.2-0.0.17867351, VMware_bootbank_lsuv2-hpv2-hpsa-plugin_1.0.0-3vmw.702.0.0.17867351, VMware_bootbank_lsuv2-intelv2-nvme-vmd-plugin_2.0.0-2vmw.702.0.0.17867351, VMware_bootbank_lsuv2-lsiv2-drivers-plugin_1.0.0-5vmw.702.0.0.17867351, VMware_bootbank_lsuv2-nvme-pcie-plugin_1.0.0-1vmw.702.0.0.17867351, VMware_bootbank_lsuv2-oem-dell-plugin_1.0.0-1vmw.702.0.0.17867351, VMware_bootbank_lsuv2-oem-hp-plugin_1.0.0-1vmw.702.0.0.17867351, VMware_bootbank_lsuv2-oem-lenovo-plugin_1.0.0-1vmw.702.0.0.17867351, VMware_bootbank_lsuv2-smartpqiv2-plugin_1.0.0-6vmw.702.0.0.17867351, VMware_bootbank_native-misc-drivers_7.0.2-0.0.17867351, VMware_bootbank_qlnativefc_4.1.14.0-5vmw.702.0.0.17867351, VMware_bootbank_vdfs_7.0.2-0.0.17867351, VMware_bootbank_vmware-esx-esxcli-nvme-plugin_1.2.0.42-1vmw.702.0.0.17867351, VMware_bootbank_vsan_7.0.2-0.0.17867351, VMware_bootbank_vsanhealth_7.0.2-0.0.17867351, VMware_locker_tools-light_11.2.5.17337674-17867351
         VIBs Removed: VMW_bootbank_atlantic_1.0.3.0-8vmw.702.0.0.17630552, VMW_bootbank_bnxtnet_216.0.50.0-34vmw.702.0.0.17630552, VMW_bootbank_bnxtroce_216.0.58.0-19vmw.702.0.0.17630552, VMW_bootbank_brcmfcoe_12.0.1500.1-2vmw.702.0.0.17630552, VMW_bootbank_brcmnvmefc_12.8.298.1-1vmw.702.0.0.17630552, VMW_bootbank_elxiscsi_12.0.1200.0-8vmw.702.0.0.17630552, VMW_bootbank_elxnet_12.0.1250.0-5vmw.702.0.0.17630552, VMW_bootbank_i40enu_1.8.1.136-1vmw.702.0.0.17630552, VMW_bootbank_iavmd_2.0.0.1152-1vmw.702.0.0.17630552, VMW_bootbank_icen_1.0.0.10-1vmw.702.0.0.17630552, VMW_bootbank_irdman_1.3.1.19-1vmw.702.0.0.17630552, VMW_bootbank_iser_1.1.0.1-1vmw.702.0.0.17630552, VMW_bootbank_ixgben_1.7.1.35-1vmw.702.0.0.17630552, VMW_bootbank_lpfc_12.8.298.3-1vmw.702.0.0.17630552, VMW_bootbank_lpnic_11.4.62.0-1vmw.702.0.0.17630552, VMW_bootbank_lsi-mr3_7.716.03.00-1vmw.702.0.0.17630552, VMW_bootbank_lsi-msgpt2_20.00.06.00-3vmw.702.0.0.17630552, VMW_bootbank_lsi-msgpt35_17.00.02.00-1vmw.702.0.0.17630552, VMW_bootbank_lsi-msgpt3_17.00.10.00-2vmw.702.0.0.17630552, VMW_bootbank_mtip32xx-native_3.9.8-1vmw.702.0.0.17630552, VMW_bootbank_ne1000_0.8.4-11vmw.702.0.0.17630552, VMW_bootbank_nenic_1.0.33.0-1vmw.702.0.0.17630552, VMW_bootbank_nfnic_4.0.0.63-1vmw.702.0.0.17630552, VMW_bootbank_nhpsa_70.0051.0.100-2vmw.702.0.0.17630552, VMW_bootbank_nmlx4-core_3.19.16.8-2vmw.702.0.0.17630552, VMW_bootbank_nmlx4-en_3.19.16.8-2vmw.702.0.0.17630552, VMW_bootbank_nmlx4-rdma_3.19.16.8-2vmw.702.0.0.17630552, VMW_bootbank_nmlx5-core_4.19.16.10-1vmw.702.0.0.17630552, VMW_bootbank_nmlx5-rdma_4.19.16.10-1vmw.702.0.0.17630552, VMW_bootbank_ntg3_4.1.5.0-0vmw.702.0.0.17630552, VMW_bootbank_nvme-pcie_1.2.3.11-1vmw.702.0.0.17630552, VMW_bootbank_nvmerdma_1.0.2.1-1vmw.702.0.0.17630552, VMW_bootbank_nvmxnet3-ens_2.0.0.22-1vmw.702.0.0.17630552, VMW_bootbank_nvmxnet3_2.0.0.30-1vmw.702.0.0.17630552, VMW_bootbank_pvscsi_0.1-2vmw.702.0.0.17630552, VMW_bootbank_qcnic_1.0.15.0-11vmw.702.0.0.17630552, VMW_bootbank_qedentv_3.40.5.53-20vmw.702.0.0.17630552, VMW_bootbank_qedrntv_3.40.5.53-16vmw.702.0.0.17630552, VMW_bootbank_qfle3_1.0.67.0-14vmw.702.0.0.17630552, VMW_bootbank_qfle3f_1.0.51.0-19vmw.702.0.0.17630552, VMW_bootbank_qfle3i_1.0.15.0-12vmw.702.0.0.17630552, VMW_bootbank_qflge_1.1.0.11-1vmw.702.0.0.17630552, VMW_bootbank_rste_2.0.2.0088-7vmw.702.0.0.17630552, VMW_bootbank_sfvmk_2.4.0.2010-4vmw.702.0.0.17630552, VMW_bootbank_smartpqi_70.4000.0.100-6vmw.702.0.0.17630552, VMW_bootbank_vmkata_0.1-1vmw.702.0.0.17630552, VMW_bootbank_vmkfcoe_1.0.0.2-1vmw.702.0.0.17630552, VMW_bootbank_vmkusb_0.1-1vmw.702.0.0.17630552, VMW_bootbank_vmw-ahci_2.0.9-1vmw.702.0.0.17630552, VMware_bootbank_clusterstore_7.0.2-0.0.17630552, VMware_bootbank_cpu-microcode_7.0.2-0.0.17630552, VMware_bootbank_crx_7.0.2-0.0.17630552, VMware_bootbank_elx-esx-libelxima.so_12.0.1200.0-4vmw.702.0.0.17630552, VMware_bootbank_esx-base_7.0.2-0.0.17630552, VMware_bootbank_esx-dvfilter-generic-fastpath_7.0.2-0.0.17630552, VMware_bootbank_esx-update_7.0.2-0.0.17630552, VMware_bootbank_esx-xserver_7.0.2-0.0.17630552, VMware_bootbank_gc_7.0.2-0.0.17630552, VMware_bootbank_loadesx_7.0.2-0.0.17630552, VMware_bootbank_lsuv2-hpv2-hpsa-plugin_1.0.0-3vmw.702.0.0.17630552, VMware_bootbank_lsuv2-intelv2-nvme-vmd-plugin_2.0.0-2vmw.702.0.0.17630552, VMware_bootbank_lsuv2-lsiv2-drivers-plugin_1.0.0-5vmw.702.0.0.17630552, VMware_bootbank_lsuv2-nvme-pcie-plugin_1.0.0-1vmw.702.0.0.17630552, VMware_bootbank_lsuv2-oem-dell-plugin_1.0.0-1vmw.702.0.0.17630552, VMware_bootbank_lsuv2-oem-hp-plugin_1.0.0-1vmw.702.0.0.17630552, VMware_bootbank_lsuv2-oem-lenovo-plugin_1.0.0-1vmw.702.0.0.17630552, VMware_bootbank_lsuv2-smartpqiv2-plugin_1.0.0-6vmw.702.0.0.17630552, VMware_bootbank_native-misc-drivers_7.0.2-0.0.17630552, VMware_bootbank_qlnativefc_4.1.14.0-5vmw.702.0.0.17630552, VMware_bootbank_vdfs_7.0.2-0.0.17630552, VMware_bootbank_vmware-esx-esxcli-nvme-plugin_1.2.0.42-1vmw.702.0.0.17630552, VMware_bootbank_vsan_7.0.2-0.0.17630552, VMware_bootbank_vsanhealth_7.0.2-0.0.17630552, VMware_locker_tools-light_11.2.5.17337674-17630552
         VIBs Skipped: VMware_bootbank_esx-ui_1.34.8-17417756
         [root@xd-1541-5028d:~] reboot

    Version: 7.0.2a (Build 17867351)
    to:
    Version: 7.0.2c (Build 18426014)

    7.0u2c
      login as: root
      Using keyboard-interactive authentication.
      Password:
      The time and date of this login have been sent to the system logs.
    
      WARNING:
         All commands run on the ESXi shell are logged and may be included in
         support bundles. Do not provide passwords directly on the command line.
         Most tools can prompt for secrets or accept them from standard input.
    
      VMware offers supported, powerful system administration tools.  Please
      see www.vmware.com/go/sysadmintools for details.
    
      The ESXi Shell can be disabled by an administrative user. See the
      vSphere Security documentation for more information.
      [root@xd-1541-5028d:~] esxcli software profile update -p ESXi-7.0U2c-18426014-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml
      Update Result
         Message: The update completed successfully, but the system needs to be rebooted for the changes to be effective.
         Reboot Required: true
         VIBs Installed: VMW_bootbank_bnxtnet_216.0.50.0-34vmw.702.0.20.18426014, VMW_bootbank_bnxtroce_216.0.58.0-20vmw.702.0.20.18426014, VMW_bootbank_i40enu_1.8.1.137-1vmw.702.0.20.18426014, VMW_bootbank_lpfc_12.8.298.3-2vmw.702.0.20.18426014, VMW_bootbank_qedentv_3.40.5.53-20vmw.702.0.20.18426014, VMW_bootbank_qedrntv_3.40.5.53-17vmw.702.0.20.18426014, VMW_bootbank_vmkusb_0.1-4vmw.702.0.20.18426014, VMware_bootbank_clusterstore_7.0.2-0.20.18426014, VMware_bootbank_cpu-microcode_7.0.2-0.20.18426014, VMware_bootbank_crx_7.0.2-0.20.18426014, VMware_bootbank_esx-base_7.0.2-0.20.18426014, VMware_bootbank_esx-dvfilter-generic-fastpath_7.0.2-0.20.18426014, VMware_bootbank_esx-update_7.0.2-0.20.18426014, VMware_bootbank_esx-xserver_7.0.2-0.20.18426014, VMware_bootbank_gc_7.0.2-0.20.18426014, VMware_bootbank_loadesx_7.0.2-0.20.18426014, VMware_bootbank_native-misc-drivers_7.0.2-0.20.18426014, VMware_bootbank_vdfs_7.0.2-0.20.18426014, VMware_bootbank_vsan_7.0.2-0.20.18426014, VMware_bootbank_vsanhealth_7.0.2-0.20.18426014, VMware_locker_tools-light_11.2.6.17901274-18295176
         VIBs Removed: VMW_bootbank_bnxtnet_216.0.50.0-34vmw.702.0.0.17867351, VMW_bootbank_bnxtroce_216.0.58.0-19vmw.702.0.0.17867351, VMW_bootbank_i40enu_1.8.1.136-1vmw.702.0.0.17867351, VMW_bootbank_lpfc_12.8.298.3-1vmw.702.0.0.17867351, VMW_bootbank_qedentv_3.40.5.53-20vmw.702.0.0.17867351, VMW_bootbank_qedrntv_3.40.5.53-16vmw.702.0.0.17867351, VMW_bootbank_vmkusb_0.1-1vmw.702.0.0.17867351, VMware_bootbank_clusterstore_7.0.2-0.0.17867351, VMware_bootbank_cpu-microcode_7.0.2-0.0.17867351, VMware_bootbank_crx_7.0.2-0.0.17867351, VMware_bootbank_esx-base_7.0.2-0.0.17867351, VMware_bootbank_esx-dvfilter-generic-fastpath_7.0.2-0.0.17867351, VMware_bootbank_esx-update_7.0.2-0.0.17867351, VMware_bootbank_esx-xserver_7.0.2-0.0.17867351, VMware_bootbank_gc_7.0.2-0.0.17867351, VMware_bootbank_loadesx_7.0.2-0.0.17867351, VMware_bootbank_native-misc-drivers_7.0.2-0.0.17867351, VMware_bootbank_vdfs_7.0.2-0.0.17867351, VMware_bootbank_vsan_7.0.2-0.0.17867351, VMware_bootbank_vsanhealth_7.0.2-0.0.17867351, VMware_locker_tools-light_11.2.5.17337674-17867351
         VIBs Skipped: VMW_bootbank_atlantic_1.0.3.0-8vmw.702.0.0.17867351, VMW_bootbank_brcmfcoe_12.0.1500.1-2vmw.702.0.0.17867351, VMW_bootbank_brcmnvmefc_12.8.298.1-1vmw.702.0.0.17867351, VMW_bootbank_elxiscsi_12.0.1200.0-8vmw.702.0.0.17867351, VMW_bootbank_elxnet_12.0.1250.0-5vmw.702.0.0.17867351, VMW_bootbank_iavmd_2.0.0.1152-1vmw.702.0.0.17867351, VMW_bootbank_icen_1.0.0.10-1vmw.702.0.0.17867351, VMW_bootbank_igbn_1.4.11.2-1vmw.702.0.0.17867351, VMW_bootbank_irdman_1.3.1.19-1vmw.702.0.0.17867351, VMW_bootbank_iser_1.1.0.1-1vmw.702.0.0.17867351, VMW_bootbank_ixgben_1.7.1.35-1vmw.702.0.0.17867351, VMW_bootbank_lpnic_11.4.62.0-1vmw.702.0.0.17867351, VMW_bootbank_lsi-mr3_7.716.03.00-1vmw.702.0.0.17867351, VMW_bootbank_lsi-msgpt2_20.00.06.00-3vmw.702.0.0.17867351, VMW_bootbank_lsi-msgpt35_17.00.02.00-1vmw.702.0.0.17867351, VMW_bootbank_lsi-msgpt3_17.00.10.00-2vmw.702.0.0.17867351, VMW_bootbank_mtip32xx-native_3.9.8-1vmw.702.0.0.17867351, VMW_bootbank_ne1000_0.8.4-11vmw.702.0.0.17867351, VMW_bootbank_nenic_1.0.33.0-1vmw.702.0.0.17867351, VMW_bootbank_nfnic_4.0.0.63-1vmw.702.0.0.17867351, VMW_bootbank_nhpsa_70.0051.0.100-2vmw.702.0.0.17867351, VMW_bootbank_nmlx4-core_3.19.16.8-2vmw.702.0.0.17867351, VMW_bootbank_nmlx4-en_3.19.16.8-2vmw.702.0.0.17867351, VMW_bootbank_nmlx4-rdma_3.19.16.8-2vmw.702.0.0.17867351, VMW_bootbank_nmlx5-core_4.19.16.10-1vmw.702.0.0.17867351, VMW_bootbank_nmlx5-rdma_4.19.16.10-1vmw.702.0.0.17867351, VMW_bootbank_ntg3_4.1.5.0-0vmw.702.0.0.17867351, VMW_bootbank_nvme-pcie_1.2.3.11-1vmw.702.0.0.17867351, VMW_bootbank_nvmerdma_1.0.2.1-1vmw.702.0.0.17867351, VMW_bootbank_nvmxnet3-ens_2.0.0.22-1vmw.702.0.0.17867351, VMW_bootbank_nvmxnet3_2.0.0.30-1vmw.702.0.0.17867351, VMW_bootbank_pvscsi_0.1-2vmw.702.0.0.17867351, VMW_bootbank_qcnic_1.0.15.0-11vmw.702.0.0.17867351, VMW_bootbank_qfle3_1.0.67.0-14vmw.702.0.0.17867351, VMW_bootbank_qfle3f_1.0.51.0-19vmw.702.0.0.17867351, VMW_bootbank_qfle3i_1.0.15.0-12vmw.702.0.0.17867351, VMW_bootbank_qflge_1.1.0.11-1vmw.702.0.0.17867351, VMW_bootbank_rste_2.0.2.0088-7vmw.702.0.0.17867351, VMW_bootbank_sfvmk_2.4.0.2010-4vmw.702.0.0.17867351, VMW_bootbank_smartpqi_70.4000.0.100-6vmw.702.0.0.17867351, VMW_bootbank_vmkata_0.1-1vmw.702.0.0.17867351, VMW_bootbank_vmkfcoe_1.0.0.2-1vmw.702.0.0.17867351, VMW_bootbank_vmw-ahci_2.0.9-1vmw.702.0.0.17867351, VMware_bootbank_elx-esx-libelxima.so_12.0.1200.0-4vmw.702.0.0.17867351, VMware_bootbank_esx-ui_1.34.8-17417756, VMware_bootbank_lsuv2-hpv2-hpsa-plugin_1.0.0-3vmw.702.0.0.17867351, VMware_bootbank_lsuv2-intelv2-nvme-vmd-plugin_2.0.0-2vmw.702.0.0.17867351, VMware_bootbank_lsuv2-lsiv2-drivers-plugin_1.0.0-5vmw.702.0.0.17867351, VMware_bootbank_lsuv2-nvme-pcie-plugin_1.0.0-1vmw.702.0.0.17867351, VMware_bootbank_lsuv2-oem-dell-plugin_1.0.0-1vmw.702.0.0.17867351, VMware_bootbank_lsuv2-oem-hp-plugin_1.0.0-1vmw.702.0.0.17867351, VMware_bootbank_lsuv2-oem-lenovo-plugin_1.0.0-1vmw.702.0.0.17867351, VMware_bootbank_lsuv2-smartpqiv2-plugin_1.0.0-6vmw.702.0.0.17867351, VMware_bootbank_qlnativefc_4.1.14.0-5vmw.702.0.0.17867351, VMware_bootbank_vmware-esx-esxcli-nvme-plugin_1.2.0.42-1vmw.702.0.0.17867351
         [root@xd-1541-5028d:~] reboot

    Version: 7.0.2c (Build 18426014)
    to:
    Version: 7.0.2d (Build 18538813)

    7.0u2d
      login as: root
      Using keyboard-interactive authentication.
      Password:
      The time and date of this login have been sent to the system logs.
    
      WARNING:
         All commands run on the ESXi shell are logged and may be included in
         support bundles. Do not provide passwords directly on the command line.
         Most tools can prompt for secrets or accept them from standard input.
    
      VMware offers supported, powerful system administration tools.  Please
      see www.vmware.com/go/sysadmintools for details.
    
      The ESXi Shell can be disabled by an administrative user. See the
      vSphere Security documentation for more information.
      [root@xd-1541-5028d:~] esxcli software profile update -p ESXi-7.0U2d-18538813-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml
      Update Result
         Message: The update completed successfully, but the system needs to be rebooted for the changes to be effective.
         Reboot Required: true
         VIBs Installed: VMware_bootbank_clusterstore_7.0.2-0.25.18538813, VMware_bootbank_cpu-microcode_7.0.2-0.25.18538813, VMware_bootbank_crx_7.0.2-0.25.18538813, VMware_bootbank_esx-base_7.0.2-0.25.18538813, VMware_bootbank_esx-dvfilter-generic-fastpath_7.0.2-0.25.18538813, VMware_bootbank_esx-update_7.0.2-0.25.18538813, VMware_bootbank_esx-xserver_7.0.2-0.25.18538813, VMware_bootbank_gc_7.0.2-0.25.18538813, VMware_bootbank_loadesx_7.0.2-0.25.18538813, VMware_bootbank_native-misc-drivers_7.0.2-0.25.18538813, VMware_bootbank_vdfs_7.0.2-0.25.18538813, VMware_bootbank_vsan_7.0.2-0.25.18538813, VMware_bootbank_vsanhealth_7.0.2-0.25.18538813
         VIBs Removed: VMware_bootbank_clusterstore_7.0.2-0.20.18426014, VMware_bootbank_cpu-microcode_7.0.2-0.20.18426014, VMware_bootbank_crx_7.0.2-0.20.18426014, VMware_bootbank_esx-base_7.0.2-0.20.18426014, VMware_bootbank_esx-dvfilter-generic-fastpath_7.0.2-0.20.18426014, VMware_bootbank_esx-update_7.0.2-0.20.18426014, VMware_bootbank_esx-xserver_7.0.2-0.20.18426014, VMware_bootbank_gc_7.0.2-0.20.18426014, VMware_bootbank_loadesx_7.0.2-0.20.18426014, VMware_bootbank_native-misc-drivers_7.0.2-0.20.18426014, VMware_bootbank_vdfs_7.0.2-0.20.18426014, VMware_bootbank_vsan_7.0.2-0.20.18426014, VMware_bootbank_vsanhealth_7.0.2-0.20.18426014
         VIBs Skipped: VMW_bootbank_atlantic_1.0.3.0-8vmw.702.0.0.17867351, VMW_bootbank_bnxtnet_216.0.50.0-34vmw.702.0.20.18426014, VMW_bootbank_bnxtroce_216.0.58.0-20vmw.702.0.20.18426014, VMW_bootbank_brcmfcoe_12.0.1500.1-2vmw.702.0.0.17867351, VMW_bootbank_brcmnvmefc_12.8.298.1-1vmw.702.0.0.17867351, VMW_bootbank_elxiscsi_12.0.1200.0-8vmw.702.0.0.17867351, VMW_bootbank_elxnet_12.0.1250.0-5vmw.702.0.0.17867351, VMW_bootbank_i40enu_1.8.1.137-1vmw.702.0.20.18426014, VMW_bootbank_iavmd_2.0.0.1152-1vmw.702.0.0.17867351, VMW_bootbank_icen_1.0.0.10-1vmw.702.0.0.17867351, VMW_bootbank_igbn_1.4.11.2-1vmw.702.0.0.17867351, VMW_bootbank_irdman_1.3.1.19-1vmw.702.0.0.17867351, VMW_bootbank_iser_1.1.0.1-1vmw.702.0.0.17867351, VMW_bootbank_ixgben_1.7.1.35-1vmw.702.0.0.17867351, VMW_bootbank_lpfc_12.8.298.3-2vmw.702.0.20.18426014, VMW_bootbank_lpnic_11.4.62.0-1vmw.702.0.0.17867351, VMW_bootbank_lsi-mr3_7.716.03.00-1vmw.702.0.0.17867351, VMW_bootbank_lsi-msgpt2_20.00.06.00-3vmw.702.0.0.17867351, VMW_bootbank_lsi-msgpt35_17.00.02.00-1vmw.702.0.0.17867351, VMW_bootbank_lsi-msgpt3_17.00.10.00-2vmw.702.0.0.17867351, VMW_bootbank_mtip32xx-native_3.9.8-1vmw.702.0.0.17867351, VMW_bootbank_ne1000_0.8.4-11vmw.702.0.0.17867351, VMW_bootbank_nenic_1.0.33.0-1vmw.702.0.0.17867351, VMW_bootbank_nfnic_4.0.0.63-1vmw.702.0.0.17867351, VMW_bootbank_nhpsa_70.0051.0.100-2vmw.702.0.0.17867351, VMW_bootbank_nmlx4-core_3.19.16.8-2vmw.702.0.0.17867351, VMW_bootbank_nmlx4-en_3.19.16.8-2vmw.702.0.0.17867351, VMW_bootbank_nmlx4-rdma_3.19.16.8-2vmw.702.0.0.17867351, VMW_bootbank_nmlx5-core_4.19.16.10-1vmw.702.0.0.17867351, VMW_bootbank_nmlx5-rdma_4.19.16.10-1vmw.702.0.0.17867351, VMW_bootbank_ntg3_4.1.5.0-0vmw.702.0.0.17867351, VMW_bootbank_nvme-pcie_1.2.3.11-1vmw.702.0.0.17867351, VMW_bootbank_nvmerdma_1.0.2.1-1vmw.702.0.0.17867351, VMW_bootbank_nvmxnet3-ens_2.0.0.22-1vmw.702.0.0.17867351, VMW_bootbank_nvmxnet3_2.0.0.30-1vmw.702.0.0.17867351, VMW_bootbank_pvscsi_0.1-2vmw.702.0.0.17867351, VMW_bootbank_qcnic_1.0.15.0-11vmw.702.0.0.17867351, VMW_bootbank_qedentv_3.40.5.53-20vmw.702.0.20.18426014, VMW_bootbank_qedrntv_3.40.5.53-17vmw.702.0.20.18426014, VMW_bootbank_qfle3_1.0.67.0-14vmw.702.0.0.17867351, VMW_bootbank_qfle3f_1.0.51.0-19vmw.702.0.0.17867351, VMW_bootbank_qfle3i_1.0.15.0-12vmw.702.0.0.17867351, VMW_bootbank_qflge_1.1.0.11-1vmw.702.0.0.17867351, VMW_bootbank_rste_2.0.2.0088-7vmw.702.0.0.17867351, VMW_bootbank_sfvmk_2.4.0.2010-4vmw.702.0.0.17867351, VMW_bootbank_smartpqi_70.4000.0.100-6vmw.702.0.0.17867351, VMW_bootbank_vmkata_0.1-1vmw.702.0.0.17867351, VMW_bootbank_vmkfcoe_1.0.0.2-1vmw.702.0.0.17867351, VMW_bootbank_vmkusb_0.1-4vmw.702.0.20.18426014, VMW_bootbank_vmw-ahci_2.0.9-1vmw.702.0.0.17867351, VMware_bootbank_elx-esx-libelxima.so_12.0.1200.0-4vmw.702.0.0.17867351, VMware_bootbank_esx-ui_1.34.8-17417756, VMware_bootbank_lsuv2-hpv2-hpsa-plugin_1.0.0-3vmw.702.0.0.17867351, VMware_bootbank_lsuv2-intelv2-nvme-vmd-plugin_2.0.0-2vmw.702.0.0.17867351, VMware_bootbank_lsuv2-lsiv2-drivers-plugin_1.0.0-5vmw.702.0.0.17867351, VMware_bootbank_lsuv2-nvme-pcie-plugin_1.0.0-1vmw.702.0.0.17867351, VMware_bootbank_lsuv2-oem-dell-plugin_1.0.0-1vmw.702.0.0.17867351, VMware_bootbank_lsuv2-oem-hp-plugin_1.0.0-1vmw.702.0.0.17867351, VMware_bootbank_lsuv2-oem-lenovo-plugin_1.0.0-1vmw.702.0.0.17867351, VMware_bootbank_lsuv2-smartpqiv2-plugin_1.0.0-6vmw.702.0.0.17867351, VMware_bootbank_qlnativefc_4.1.14.0-5vmw.702.0.0.17867351, VMware_bootbank_vmware-esx-esxcli-nvme-plugin_1.2.0.42-1vmw.702.0.0.17867351, VMware_locker_tools-light_11.2.6.17901274-18295176
      [root@xd-1541-5028d:~] reboot

    Version: 7.0.2d (Build 18538813)
    to:
    Version: 7.0.3 (Build 18644231)

    7.0u3
      login as: root
      Using keyboard-interactive authentication.
      Password:
      The time and date of this login have been sent to the system logs.
    
      WARNING:
         All commands run on the ESXi shell are logged and may be included in
         support bundles. Do not provide passwords directly on the command line.
         Most tools can prompt for secrets or accept them from standard input.
    
      VMware offers supported, powerful system administration tools.  Please
      see www.vmware.com/go/sysadmintools for details.
    
      The ESXi Shell can be disabled by an administrative user. See the
      vSphere Security documentation for more information.
      [root@xd-1541-5028d:~] esxcli software profile update -p ESXi-7.0U3-18644231-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml
      Update Result
         Message: The update completed successfully, but the system needs to be rebooted for the changes to be effective.
         Reboot Required: true
         VIBs Installed: VMW_bootbank_atlantic_1.0.3.0-8vmw.703.0.0.18644231, VMW_bootbank_bnxtnet_216.0.50.0-41vmw.703.0.0.18644231, VMW_bootbank_bnxtroce_216.0.58.0-23vmw.703.0.0.18644231, VMW_bootbank_brcmfcoe_12.0.1500.2-3vmw.703.0.0.18644231, VMW_bootbank_elxiscsi_12.0.1200.0-9vmw.703.0.0.18644231, VMW_bootbank_elxnet_12.0.1250.0-5vmw.703.0.0.18644231, VMW_bootbank_i40en_1.11.1.31-1vmw.703.0.0.18644231, VMW_bootbank_iavmd_2.7.0.1157-2vmw.703.0.0.18644231, VMW_bootbank_icen_1.4.1.7-1vmw.703.0.0.18644231, VMW_bootbank_igbn_1.4.11.2-1vmw.703.0.0.18644231, VMW_bootbank_ionic-en_16.0.0-16vmw.703.0.0.18644231, VMW_bootbank_irdman_1.3.1.20-1vmw.703.0.0.18644231, VMW_bootbank_iser_1.1.0.1-1vmw.703.0.0.18644231, VMW_bootbank_ixgben_1.7.1.35-1vmw.703.0.0.18644231, VMW_bootbank_lpfc_14.0.169.23-5vmw.703.0.0.18644231, VMW_bootbank_lpnic_11.4.62.0-1vmw.703.0.0.18644231, VMW_bootbank_lsi-mr3_7.718.02.00-1vmw.703.0.0.18644231, VMW_bootbank_lsi-msgpt2_20.00.06.00-4vmw.703.0.0.18644231, VMW_bootbank_lsi-msgpt35_19.00.02.00-1vmw.703.0.0.18644231, VMW_bootbank_lsi-msgpt3_17.00.12.00-1vmw.703.0.0.18644231, VMW_bootbank_mtip32xx-native_3.9.8-1vmw.703.0.0.18644231, VMW_bootbank_ne1000_0.8.4-11vmw.703.0.0.18644231, VMW_bootbank_nenic_1.0.33.0-1vmw.703.0.0.18644231, VMW_bootbank_nfnic_4.0.0.70-1vmw.703.0.0.18644231, VMW_bootbank_nhpsa_70.0051.0.100-4vmw.703.0.0.18644231, VMW_bootbank_nmlx4-core_3.19.16.8-2vmw.703.0.0.18644231, VMW_bootbank_nmlx4-en_3.19.16.8-2vmw.703.0.0.18644231, VMW_bootbank_nmlx4-rdma_3.19.16.8-2vmw.703.0.0.18644231, VMW_bootbank_nmlx5-core_4.19.16.11-1vmw.703.0.0.18644231, VMW_bootbank_nmlx5-rdma_4.19.16.11-1vmw.703.0.0.18644231, VMW_bootbank_ntg3_4.1.7.0-0vmw.703.0.0.18644231, VMW_bootbank_nvme-pcie_1.2.3.16-1vmw.703.0.0.18644231, VMW_bootbank_nvmerdma_1.0.3.5-1vmw.703.0.0.18644231, VMW_bootbank_nvmetcp_1.0.0.0-1vmw.703.0.0.18644231, VMW_bootbank_nvmxnet3-ens_2.0.0.22-1vmw.703.0.0.18644231, VMW_bootbank_nvmxnet3_2.0.0.30-1vmw.703.0.0.18644231, VMW_bootbank_pvscsi_0.1-4vmw.703.0.0.18644231, VMW_bootbank_qcnic_1.0.15.0-14vmw.703.0.0.18644231, VMW_bootbank_qedentv_3.40.5.53-22vmw.703.0.0.18644231, VMW_bootbank_qedrntv_3.40.5.53-18vmw.703.0.0.18644231, VMW_bootbank_qfle3_1.0.67.0-22vmw.703.0.0.18644231, VMW_bootbank_qfle3f_1.0.51.0-22vmw.703.0.0.18644231, VMW_bootbank_qfle3i_1.0.15.0-15vmw.703.0.0.18644231, VMW_bootbank_qflge_1.1.0.11-1vmw.703.0.0.18644231, VMW_bootbank_rste_2.0.2.0088-7vmw.703.0.0.18644231, VMW_bootbank_sfvmk_2.4.0.2010-6vmw.703.0.0.18644231, VMW_bootbank_smartpqi_70.4149.0.5000-1vmw.703.0.0.18644231, VMW_bootbank_vmkata_0.1-1vmw.703.0.0.18644231, VMW_bootbank_vmkfcoe_1.0.0.2-1vmw.703.0.0.18644231, VMW_bootbank_vmkusb_0.1-6vmw.703.0.0.18644231, VMW_bootbank_vmw-ahci_2.0.11-1vmw.703.0.0.18644231, VMware_bootbank_bmcal_7.0.3-0.0.18644231, VMware_bootbank_cpu-microcode_7.0.3-0.0.18644231, VMware_bootbank_crx_7.0.3-0.0.18644231, VMware_bootbank_elx-esx-libelxima.so_12.0.1200.0-4vmw.703.0.0.18644231, VMware_bootbank_esx-base_7.0.3-0.0.18644231, VMware_bootbank_esx-dvfilter-generic-fastpath_7.0.3-0.0.18644231, VMware_bootbank_esx-ui_1.36.0-18403931, VMware_bootbank_esx-update_7.0.3-0.0.18644231, VMware_bootbank_esx-xserver_7.0.3-0.0.18644231, VMware_bootbank_esxio-combiner_7.0.3-0.0.18644231, VMware_bootbank_gc_7.0.3-0.0.18644231, VMware_bootbank_loadesx_7.0.3-0.0.18644231, VMware_bootbank_lsuv2-hpv2-hpsa-plugin_1.0.0-3vmw.703.0.0.18644231, VMware_bootbank_lsuv2-intelv2-nvme-vmd-plugin_2.7.2173-1vmw.703.0.0.18644231, VMware_bootbank_lsuv2-lsiv2-drivers-plugin_1.0.0-9vmw.703.0.0.18644231, VMware_bootbank_lsuv2-nvme-pcie-plugin_1.0.0-1vmw.703.0.0.18644231, VMware_bootbank_lsuv2-oem-dell-plugin_1.0.0-1vmw.703.0.0.18644231, VMware_bootbank_lsuv2-oem-hp-plugin_1.0.0-1vmw.703.0.0.18644231, VMware_bootbank_lsuv2-oem-lenovo-plugin_1.0.0-1vmw.703.0.0.18644231, VMware_bootbank_lsuv2-smartpqiv2-plugin_1.0.0-8vmw.703.0.0.18644231, VMware_bootbank_native-misc-drivers_7.0.3-0.0.18644231, VMware_bootbank_qlnativefc_4.1.14.0-26vmw.703.0.0.18644231, VMware_bootbank_trx_7.0.3-0.0.18644231, VMware_bootbank_vdfs_7.0.3-0.0.18644231, VMware_bootbank_vmware-esx-esxcli-nvme-plugin_1.2.0.44-1vmw.703.0.0.18644231, VMware_bootbank_vsan_7.0.3-0.0.18644231, VMware_bootbank_vsanhealth_7.0.3-0.0.18644231, VMware_locker_tools-light_11.3.0.18090558-18644231
         VIBs Removed: VMW_bootbank_atlantic_1.0.3.0-8vmw.702.0.0.17867351, VMW_bootbank_bnxtnet_216.0.50.0-34vmw.702.0.20.18426014, VMW_bootbank_bnxtroce_216.0.58.0-20vmw.702.0.20.18426014, VMW_bootbank_brcmfcoe_12.0.1500.1-2vmw.702.0.0.17867351, VMW_bootbank_brcmnvmefc_12.8.298.1-1vmw.702.0.0.17867351, VMW_bootbank_elxiscsi_12.0.1200.0-8vmw.702.0.0.17867351, VMW_bootbank_elxnet_12.0.1250.0-5vmw.702.0.0.17867351, VMW_bootbank_i40enu_1.8.1.137-1vmw.702.0.20.18426014, VMW_bootbank_iavmd_2.0.0.1152-1vmw.702.0.0.17867351, VMW_bootbank_icen_1.0.0.10-1vmw.702.0.0.17867351, VMW_bootbank_igbn_1.4.11.2-1vmw.702.0.0.17867351, VMW_bootbank_irdman_1.3.1.19-1vmw.702.0.0.17867351, VMW_bootbank_iser_1.1.0.1-1vmw.702.0.0.17867351, VMW_bootbank_ixgben_1.7.1.35-1vmw.702.0.0.17867351, VMW_bootbank_lpfc_12.8.298.3-2vmw.702.0.20.18426014, VMW_bootbank_lpnic_11.4.62.0-1vmw.702.0.0.17867351, VMW_bootbank_lsi-mr3_7.716.03.00-1vmw.702.0.0.17867351, VMW_bootbank_lsi-msgpt2_20.00.06.00-3vmw.702.0.0.17867351, VMW_bootbank_lsi-msgpt35_17.00.02.00-1vmw.702.0.0.17867351, VMW_bootbank_lsi-msgpt3_17.00.10.00-2vmw.702.0.0.17867351, VMW_bootbank_mtip32xx-native_3.9.8-1vmw.702.0.0.17867351, VMW_bootbank_ne1000_0.8.4-11vmw.702.0.0.17867351, VMW_bootbank_nenic_1.0.33.0-1vmw.702.0.0.17867351, VMW_bootbank_nfnic_4.0.0.63-1vmw.702.0.0.17867351, VMW_bootbank_nhpsa_70.0051.0.100-2vmw.702.0.0.17867351, VMW_bootbank_nmlx4-core_3.19.16.8-2vmw.702.0.0.17867351, VMW_bootbank_nmlx4-en_3.19.16.8-2vmw.702.0.0.17867351, VMW_bootbank_nmlx4-rdma_3.19.16.8-2vmw.702.0.0.17867351, VMW_bootbank_nmlx5-core_4.19.16.10-1vmw.702.0.0.17867351, VMW_bootbank_nmlx5-rdma_4.19.16.10-1vmw.702.0.0.17867351, VMW_bootbank_ntg3_4.1.5.0-0vmw.702.0.0.17867351, VMW_bootbank_nvme-pcie_1.2.3.11-1vmw.702.0.0.17867351, VMW_bootbank_nvmerdma_1.0.2.1-1vmw.702.0.0.17867351, VMW_bootbank_nvmxnet3-ens_2.0.0.22-1vmw.702.0.0.17867351, VMW_bootbank_nvmxnet3_2.0.0.30-1vmw.702.0.0.17867351, VMW_bootbank_pvscsi_0.1-2vmw.702.0.0.17867351, VMW_bootbank_qcnic_1.0.15.0-11vmw.702.0.0.17867351, VMW_bootbank_qedentv_3.40.5.53-20vmw.702.0.20.18426014, VMW_bootbank_qedrntv_3.40.5.53-17vmw.702.0.20.18426014, VMW_bootbank_qfle3_1.0.67.0-14vmw.702.0.0.17867351, VMW_bootbank_qfle3f_1.0.51.0-19vmw.702.0.0.17867351, VMW_bootbank_qfle3i_1.0.15.0-12vmw.702.0.0.17867351, VMW_bootbank_qflge_1.1.0.11-1vmw.702.0.0.17867351, VMW_bootbank_rste_2.0.2.0088-7vmw.702.0.0.17867351, VMW_bootbank_sfvmk_2.4.0.2010-4vmw.702.0.0.17867351, VMW_bootbank_smartpqi_70.4000.0.100-6vmw.702.0.0.17867351, VMW_bootbank_vmkata_0.1-1vmw.702.0.0.17867351, VMW_bootbank_vmkfcoe_1.0.0.2-1vmw.702.0.0.17867351, VMW_bootbank_vmkusb_0.1-4vmw.702.0.20.18426014, VMW_bootbank_vmw-ahci_2.0.9-1vmw.702.0.0.17867351, VMware_bootbank_clusterstore_7.0.2-0.25.18538813, VMware_bootbank_cpu-microcode_7.0.2-0.25.18538813, VMware_bootbank_crx_7.0.2-0.25.18538813, VMware_bootbank_elx-esx-libelxima.so_12.0.1200.0-4vmw.702.0.0.17867351, VMware_bootbank_esx-base_7.0.2-0.25.18538813, VMware_bootbank_esx-dvfilter-generic-fastpath_7.0.2-0.25.18538813, VMware_bootbank_esx-ui_1.34.8-17417756, VMware_bootbank_esx-update_7.0.2-0.25.18538813, VMware_bootbank_esx-xserver_7.0.2-0.25.18538813, VMware_bootbank_gc_7.0.2-0.25.18538813, VMware_bootbank_loadesx_7.0.2-0.25.18538813, VMware_bootbank_lsuv2-hpv2-hpsa-plugin_1.0.0-3vmw.702.0.0.17867351, VMware_bootbank_lsuv2-intelv2-nvme-vmd-plugin_2.0.0-2vmw.702.0.0.17867351, VMware_bootbank_lsuv2-lsiv2-drivers-plugin_1.0.0-5vmw.702.0.0.17867351, VMware_bootbank_lsuv2-nvme-pcie-plugin_1.0.0-1vmw.702.0.0.17867351, VMware_bootbank_lsuv2-oem-dell-plugin_1.0.0-1vmw.702.0.0.17867351, VMware_bootbank_lsuv2-oem-hp-plugin_1.0.0-1vmw.702.0.0.17867351, VMware_bootbank_lsuv2-oem-lenovo-plugin_1.0.0-1vmw.702.0.0.17867351, VMware_bootbank_lsuv2-smartpqiv2-plugin_1.0.0-6vmw.702.0.0.17867351, VMware_bootbank_native-misc-drivers_7.0.2-0.25.18538813, VMware_bootbank_qlnativefc_4.1.14.0-5vmw.702.0.0.17867351, VMware_bootbank_vdfs_7.0.2-0.25.18538813, VMware_bootbank_vmware-esx-esxcli-nvme-plugin_1.2.0.42-1vmw.702.0.0.17867351, VMware_bootbank_vsan_7.0.2-0.25.18538813, VMware_bootbank_vsanhealth_7.0.2-0.25.18538813, VMware_locker_tools-light_11.2.6.17901274-18295176
         VIBs Skipped:
      [root@xd-1541-5028d:~] reboot

    Version: 7.0.3 (Build 18538813)
    to:
    Version: 7.0.3a (Build 18825058)

    7.0u3a
      login as: root
      Using keyboard-interactive authentication.
      Password:
      The time and date of this login have been sent to the system logs.
    
      WARNING:
         All commands run on the ESXi shell are logged and may be included in
         support bundles. Do not provide passwords directly on the command line.
         Most tools can prompt for secrets or accept them from standard input.
    
      VMware offers supported, powerful system administration tools.  Please
      see www.vmware.com/go/sysadmintools for details.
    
      The ESXi Shell can be disabled by an administrative user. See the
      vSphere Security documentation for more information.
      [root@xd-1541-5028d:~] esxcli software profile update -p ESXi-7.0U3a-18825058-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml
      Update Result
         Message: The update completed successfully, but the system needs to be rebooted for the changes to be effective.
         Reboot Required: true
         VIBs Installed: VMware_bootbank_bmcal_7.0.3-0.5.18825058, VMware_bootbank_cpu-microcode_7.0.3-0.5.18825058, VMware_bootbank_crx_7.0.3-0.5.18825058, VMware_bootbank_esx-base_7.0.3-0.5.18825058, VMware_bootbank_esx-dvfilter-generic-fastpath_7.0.3-0.5.18825058, VMware_bootbank_esx-update_7.0.3-0.5.18825058, VMware_bootbank_esx-xserver_7.0.3-0.5.18825058, VMware_bootbank_esxio-combiner_7.0.3-0.5.18825058, VMware_bootbank_gc_7.0.3-0.5.18825058, VMware_bootbank_loadesx_7.0.3-0.5.18825058, VMware_bootbank_native-misc-drivers_7.0.3-0.5.18825058, VMware_bootbank_trx_7.0.3-0.5.18825058, VMware_bootbank_vdfs_7.0.3-0.5.18825058, VMware_bootbank_vsan_7.0.3-0.5.18825058, VMware_bootbank_vsanhealth_7.0.3-0.5.18825058
         VIBs Removed: VMware_bootbank_bmcal_7.0.3-0.0.18644231, VMware_bootbank_cpu-microcode_7.0.3-0.0.18644231, VMware_bootbank_crx_7.0.3-0.0.18644231, VMware_bootbank_esx-base_7.0.3-0.0.18644231, VMware_bootbank_esx-dvfilter-generic-fastpath_7.0.3-0.0.18644231, VMware_bootbank_esx-update_7.0.3-0.0.18644231, VMware_bootbank_esx-xserver_7.0.3-0.0.18644231, VMware_bootbank_esxio-combiner_7.0.3-0.0.18644231, VMware_bootbank_gc_7.0.3-0.0.18644231, VMware_bootbank_loadesx_7.0.3-0.0.18644231, VMware_bootbank_native-misc-drivers_7.0.3-0.0.18644231, VMware_bootbank_trx_7.0.3-0.0.18644231, VMware_bootbank_vdfs_7.0.3-0.0.18644231, VMware_bootbank_vsan_7.0.3-0.0.18644231, VMware_bootbank_vsanhealth_7.0.3-0.0.18644231
         VIBs Skipped: VMW_bootbank_atlantic_1.0.3.0-8vmw.703.0.0.18644231, VMW_bootbank_bnxtnet_216.0.50.0-41vmw.703.0.0.18644231, VMW_bootbank_bnxtroce_216.0.58.0-23vmw.703.0.0.18644231, VMW_bootbank_brcmfcoe_12.0.1500.2-3vmw.703.0.0.18644231, VMW_bootbank_elxiscsi_12.0.1200.0-9vmw.703.0.0.18644231, VMW_bootbank_elxnet_12.0.1250.0-5vmw.703.0.0.18644231, VMW_bootbank_i40en_1.11.1.31-1vmw.703.0.0.18644231, VMW_bootbank_iavmd_2.7.0.1157-2vmw.703.0.0.18644231, VMW_bootbank_icen_1.4.1.7-1vmw.703.0.0.18644231, VMW_bootbank_igbn_1.4.11.2-1vmw.703.0.0.18644231, VMW_bootbank_ionic-en_16.0.0-16vmw.703.0.0.18644231, VMW_bootbank_irdman_1.3.1.20-1vmw.703.0.0.18644231, VMW_bootbank_iser_1.1.0.1-1vmw.703.0.0.18644231, VMW_bootbank_ixgben_1.7.1.35-1vmw.703.0.0.18644231, VMW_bootbank_lpfc_14.0.169.23-5vmw.703.0.0.18644231, VMW_bootbank_lpnic_11.4.62.0-1vmw.703.0.0.18644231, VMW_bootbank_lsi-mr3_7.718.02.00-1vmw.703.0.0.18644231, VMW_bootbank_lsi-msgpt2_20.00.06.00-4vmw.703.0.0.18644231, VMW_bootbank_lsi-msgpt35_19.00.02.00-1vmw.703.0.0.18644231, VMW_bootbank_lsi-msgpt3_17.00.12.00-1vmw.703.0.0.18644231, VMW_bootbank_mtip32xx-native_3.9.8-1vmw.703.0.0.18644231, VMW_bootbank_ne1000_0.8.4-11vmw.703.0.0.18644231, VMW_bootbank_nenic_1.0.33.0-1vmw.703.0.0.18644231, VMW_bootbank_nfnic_4.0.0.70-1vmw.703.0.0.18644231, VMW_bootbank_nhpsa_70.0051.0.100-4vmw.703.0.0.18644231, VMW_bootbank_nmlx4-core_3.19.16.8-2vmw.703.0.0.18644231, VMW_bootbank_nmlx4-en_3.19.16.8-2vmw.703.0.0.18644231, VMW_bootbank_nmlx4-rdma_3.19.16.8-2vmw.703.0.0.18644231, VMW_bootbank_nmlx5-core_4.19.16.11-1vmw.703.0.0.18644231, VMW_bootbank_nmlx5-rdma_4.19.16.11-1vmw.703.0.0.18644231, VMW_bootbank_ntg3_4.1.7.0-0vmw.703.0.0.18644231, VMW_bootbank_nvme-pcie_1.2.3.16-1vmw.703.0.0.18644231, VMW_bootbank_nvmerdma_1.0.3.5-1vmw.703.0.0.18644231, VMW_bootbank_nvmetcp_1.0.0.0-1vmw.703.0.0.18644231, VMW_bootbank_nvmxnet3-ens_2.0.0.22-1vmw.703.0.0.18644231, VMW_bootbank_nvmxnet3_2.0.0.30-1vmw.703.0.0.18644231, VMW_bootbank_pvscsi_0.1-4vmw.703.0.0.18644231, VMW_bootbank_qcnic_1.0.15.0-14vmw.703.0.0.18644231, VMW_bootbank_qedentv_3.40.5.53-22vmw.703.0.0.18644231, VMW_bootbank_qedrntv_3.40.5.53-18vmw.703.0.0.18644231, VMW_bootbank_qfle3_1.0.67.0-22vmw.703.0.0.18644231, VMW_bootbank_qfle3f_1.0.51.0-22vmw.703.0.0.18644231, VMW_bootbank_qfle3i_1.0.15.0-15vmw.703.0.0.18644231, VMW_bootbank_qflge_1.1.0.11-1vmw.703.0.0.18644231, VMW_bootbank_rste_2.0.2.0088-7vmw.703.0.0.18644231, VMW_bootbank_sfvmk_2.4.0.2010-6vmw.703.0.0.18644231, VMW_bootbank_smartpqi_70.4149.0.5000-1vmw.703.0.0.18644231, VMW_bootbank_vmkata_0.1-1vmw.703.0.0.18644231, VMW_bootbank_vmkfcoe_1.0.0.2-1vmw.703.0.0.18644231, VMW_bootbank_vmkusb_0.1-6vmw.703.0.0.18644231, VMW_bootbank_vmw-ahci_2.0.11-1vmw.703.0.0.18644231, VMware_bootbank_elx-esx-libelxima.so_12.0.1200.0-4vmw.703.0.0.18644231, VMware_bootbank_esx-ui_1.36.0-18403931, VMware_bootbank_lsuv2-hpv2-hpsa-plugin_1.0.0-3vmw.703.0.0.18644231, VMware_bootbank_lsuv2-intelv2-nvme-vmd-plugin_2.7.2173-1vmw.703.0.0.18644231, VMware_bootbank_lsuv2-lsiv2-drivers-plugin_1.0.0-9vmw.703.0.0.18644231, VMware_bootbank_lsuv2-nvme-pcie-plugin_1.0.0-1vmw.703.0.0.18644231, VMware_bootbank_lsuv2-oem-dell-plugin_1.0.0-1vmw.703.0.0.18644231, VMware_bootbank_lsuv2-oem-hp-plugin_1.0.0-1vmw.703.0.0.18644231, VMware_bootbank_lsuv2-oem-lenovo-plugin_1.0.0-1vmw.703.0.0.18644231, VMware_bootbank_lsuv2-smartpqiv2-plugin_1.0.0-8vmw.703.0.0.18644231, VMware_bootbank_qlnativefc_4.1.14.0-26vmw.703.0.0.18644231, VMware_bootbank_vmware-esx-esxcli-nvme-plugin_1.2.0.44-1vmw.703.0.0.18644231, VMware_locker_tools-light_11.3.0.18090558-18644231
      [root@xd-1541-5028d:~] reboot

    Version: 7.0.3a (Build 18538813)
    to:
    Version: 7.0.3b (Build 18905247)

    7.0u3b
      login as: root
      Using keyboard-interactive authentication.
      Password:
      The time and date of this login have been sent to the system logs.
    
      WARNING:
         All commands run on the ESXi shell are logged and may be included in
         support bundles. Do not provide passwords directly on the command line.
         Most tools can prompt for secrets or accept them from standard input.
    
      VMware offers supported, powerful system administration tools.  Please
      see www.vmware.com/go/sysadmintools for details.
    
      The ESXi Shell can be disabled by an administrative user. See the
      vSphere Security documentation for more information.
      [root@xd-1541-5028d:~] esxcli software profile update -p ESXi-7.0U3b-18905247-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml
    
      Update Result
         Message: The update completed successfully, but the system needs to be rebooted for the changes to be effective.
         Reboot Required: true
         VIBs Installed: VMW_bootbank_iavmd_2.7.0.1157-2vmw.703.0.10.18905247, VMware_bootbank_bmcal_7.0.3-0.10.18905247, VMware_bootbank_cpu-microcode_7.0.3-0.10.18905247, VMw47, VMware_bootbank_esx-dvfilter-generic-fastpath_7.0.3-0.10.18905247, VMware_bootbank_esx-update_7.0.3-0.10.18905247, VMware_bootbank_esx-xserver_7.0.3-0.10.18905247, VM18905247, VMware_bootbank_loadesx_7.0.3-0.10.18905247, VMware_bootbank_native-misc-drivers_7.0.3-0.10.18905247, VMware_bootbank_trx_7.0.3-0.10.18905247, VMware_bootbank_vnk_vsanhealth_7.0.3-0.10.18905247
         VIBs Removed: VMW_bootbank_iavmd_2.7.0.1157-2vmw.703.0.0.18644231, VMware_bootbank_bmcal_7.0.3-0.5.18825058, VMware_bootbank_cpu-microcode_7.0.3-0.5.18825058, VMware_bare_bootbank_esx-dvfilter-generic-fastpath_7.0.3-0.5.18825058, VMware_bootbank_esx-update_7.0.3-0.5.18825058, VMware_bootbank_esx-xserver_7.0.3-0.5.18825058, VMware_bootbware_bootbank_loadesx_7.0.3-0.5.18825058, VMware_bootbank_native-misc-drivers_7.0.3-0.5.18825058, VMware_bootbank_trx_7.0.3-0.5.18825058, VMware_bootbank_vdfs_7.0.3-0.5.1.3-0.5.18825058
         VIBs Skipped: VMW_bootbank_atlantic_1.0.3.0-8vmw.703.0.0.18644231, VMW_bootbank_bnxtnet_216.0.50.0-41vmw.703.0.0.18644231, VMW_bootbank_bnxtroce_216.0.58.0-23vmw.703.0nk_elxiscsi_12.0.1200.0-9vmw.703.0.0.18644231, VMW_bootbank_elxnet_12.0.1250.0-5vmw.703.0.0.18644231, VMW_bootbank_i40en_1.11.1.31-1vmw.703.0.0.18644231, VMW_bootbank_ice1, VMW_bootbank_ionic-en_16.0.0-16vmw.703.0.0.18644231, VMW_bootbank_irdman_1.3.1.20-1vmw.703.0.0.18644231, VMW_bootbank_iser_1.1.0.1-1vmw.703.0.0.18644231, VMW_bootbank_0.18644231, VMW_bootbank_lpnic_11.4.62.0-1vmw.703.0.0.18644231, VMW_bootbank_lsi-mr3_7.718.02.00-1vmw.703.0.0.18644231, VMW_bootbank_lsi-msgpt2_20.00.06.00-4vmw.703.0.0.1k_lsi-msgpt3_17.00.12.00-1vmw.703.0.0.18644231, VMW_bootbank_mtip32xx-native_3.9.8-1vmw.703.0.0.18644231, VMW_bootbank_ne1000_0.8.4-11vmw.703.0.0.18644231, VMW_bootbank_n644231, VMW_bootbank_nhpsa_70.0051.0.100-4vmw.703.0.0.18644231, VMW_bootbank_nmlx4-core_3.19.16.8-2vmw.703.0.0.18644231, VMW_bootbank_nmlx4-en_3.19.16.8-2vmw.703.0.0.18645-core_4.19.16.11-1vmw.703.0.0.18644231, VMW_bootbank_nmlx5-rdma_4.19.16.11-1vmw.703.0.0.18644231, VMW_bootbank_ntg3_4.1.7.0-0vmw.703.0.0.18644231, VMW_bootbank_nvme-pcie4231, VMW_bootbank_nvmetcp_1.0.0.0-1vmw.703.0.0.18644231, VMW_bootbank_nvmxnet3-ens_2.0.0.22-1vmw.703.0.0.18644231, VMW_bootbank_nvmxnet3_2.0.0.30-1vmw.703.0.0.18644231, .703.0.0.18644231, VMW_bootbank_qedentv_3.40.5.53-22vmw.703.0.0.18644231, VMW_bootbank_qedrntv_3.40.5.53-18vmw.703.0.0.18644231, VMW_bootbank_qfle3_1.0.67.0-22vmw.703.0.0e3i_1.0.15.0-15vmw.703.0.0.18644231, VMW_bootbank_qflge_1.1.0.11-1vmw.703.0.0.18644231, VMW_bootbank_rste_2.0.2.0088-7vmw.703.0.0.18644231, VMW_bootbank_sfvmk_2.4.0.2010-1, VMW_bootbank_vmkata_0.1-1vmw.703.0.0.18644231, VMW_bootbank_vmkfcoe_1.0.0.2-1vmw.703.0.0.18644231, VMW_bootbank_vmkusb_0.1-6vmw.703.0.0.18644231, VMW_bootbank_vmw-ahci4vmw.703.0.0.18644231, VMware_bootbank_esx-ui_1.36.0-18403931, VMware_bootbank_lsuv2-hpv2-hpsa-plugin_1.0.0-3vmw.703.0.0.18644231, VMware_bootbank_lsuv2-intelv2-nvme-vmd-n_1.0.0-9vmw.703.0.0.18644231, VMware_bootbank_lsuv2-nvme-pcie-plugin_1.0.0-1vmw.703.0.0.18644231, VMware_bootbank_lsuv2-oem-dell-plugin_1.0.0-1vmw.703.0.0.18644231, VMwav2-oem-lenovo-plugin_1.0.0-1vmw.703.0.0.18644231, VMware_bootbank_lsuv2-smartpqiv2-plugin_1.0.0-8vmw.703.0.0.18644231, VMware_bootbank_qlnativefc_4.1.14.0-26vmw.703.0.0.144231, VMware_locker_tools-light_11.3.0.18090558-18644231
      [root@xd-1541-5028d:~]
      [root@xd-1541-5028d:~] reboot

    Version: 7.0.3a (Build 18905247)
    to:
    Version: 7.0.3c (Build 19193900)

    7.0u3c
      login as: root
      Using keyboard-interactive authentication.
      Password:
      The time and date of this login have been sent to the system logs.
    
      WARNING:
         All commands run on the ESXi shell are logged and may be included in
         support bundles. Do not provide passwords directly on the command line.
         Most tools can prompt for secrets or accept them from standard input.
    
      VMware offers supported, powerful system administration tools.  Please
      see www.vmware.com/go/sysadmintools for details.
    
      The ESXi Shell can be disabled by an administrative user. See the
      vSphere Security documentation for more information.
      [root@xd-1541-5028d:~] esxcli software profile update -p ESXi-7.0U3c-19193900-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml
      Update Result
         Message: The update completed successfully, but the system needs to be rebooted for the changes to be effective.
         Reboot Required: true
         VIBs Installed: VMW_bootbank_atlantic_1.0.3.0-8vmw.703.0.20.19193900, VMW_bootbank_bnxtnet_216.0.50.0-41vmw.703.0.20.19193900, VMW_bootbank_bnxtroce_216.0.58.0-23vmw.703.0.20.19193900, VMW_bootbank_brcmfcoe_12.0.1500.2-3vmw.703.0.20.19193900, VMW_bootbank_elxiscsi_12.0.1200.0-9vmw.703.0.20.19193900, VMW_bootbank_elxnet_12.0.1250.0-5vmw.703.0.20.19193900, VMW_bootbank_i40en_1.11.1.31-1vmw.703.0.20.19193900, VMW_bootbank_iavmd_2.7.0.1157-2vmw.703.0.20.19193900, VMW_bootbank_icen_1.4.1.7-1vmw.703.0.20.19193900, VMW_bootbank_igbn_1.4.11.2-1vmw.703.0.20.19193900, VMW_bootbank_ionic-en_16.0.0-16vmw.703.0.20.19193900, VMW_bootbank_irdman_1.3.1.20-1vmw.703.0.20.19193900, VMW_bootbank_iser_1.1.0.1-1vmw.703.0.20.19193900, VMW_bootbank_ixgben_1.7.1.35-1vmw.703.0.20.19193900, VMW_bootbank_lpfc_14.0.169.25-5vmw.703.0.20.19193900, VMW_bootbank_lpnic_11.4.62.0-1vmw.703.0.20.19193900, VMW_bootbank_lsi-mr3_7.718.02.00-1vmw.703.0.20.19193900, VMW_bootbank_lsi-msgpt2_20.00.06.00-4vmw.703.0.20.19193900, VMW_bootbank_lsi-msgpt35_19.00.02.00-1vmw.703.0.20.19193900, VMW_bootbank_lsi-msgpt3_17.00.12.00-1vmw.703.0.20.19193900, VMW_bootbank_mtip32xx-native_3.9.8-1vmw.703.0.20.19193900, VMW_bootbank_ne1000_0.8.4-11vmw.703.0.20.19193900, VMW_bootbank_nenic_1.0.33.0-1vmw.703.0.20.19193900, VMW_bootbank_nfnic_4.0.0.70-1vmw.703.0.20.19193900, VMW_bootbank_nhpsa_70.0051.0.100-4vmw.703.0.20.19193900, VMW_bootbank_nmlx4-core_3.19.16.8-2vmw.703.0.20.19193900, VMW_bootbank_nmlx4-en_3.19.16.8-2vmw.703.0.20.19193900, VMW_bootbank_nmlx4-rdma_3.19.16.8-2vmw.703.0.20.19193900, VMW_bootbank_nmlx5-core_4.19.16.11-1vmw.703.0.20.19193900, VMW_bootbank_nmlx5-rdma_4.19.16.11-1vmw.703.0.20.19193900, VMW_bootbank_ntg3_4.1.7.0-0vmw.703.0.20.19193900, VMW_bootbank_nvme-pcie_1.2.3.16-1vmw.703.0.20.19193900, VMW_bootbank_nvmerdma_1.0.3.5-1vmw.703.0.20.19193900, VMW_bootbank_nvmetcp_1.0.0.0-1vmw.703.0.20.19193900, VMW_bootbank_nvmxnet3-ens_2.0.0.22-1vmw.703.0.20.19193900, VMW_bootbank_nvmxnet3_2.0.0.30-1vmw.703.0.20.19193900, VMW_bootbank_pvscsi_0.1-4vmw.703.0.20.19193900, VMW_bootbank_qcnic_1.0.15.0-14vmw.703.0.20.19193900, VMW_bootbank_qedentv_3.40.5.53-22vmw.703.0.20.19193900, VMW_bootbank_qedrntv_3.40.5.53-18vmw.703.0.20.19193900, VMW_bootbank_qfle3_1.0.67.0-22vmw.703.0.20.19193900, VMW_bootbank_qfle3f_1.0.51.0-22vmw.703.0.20.19193900, VMW_bootbank_qfle3i_1.0.15.0-15vmw.703.0.20.19193900, VMW_bootbank_qflge_1.1.0.11-1vmw.703.0.20.19193900, VMW_bootbank_rste_2.0.2.0088-7vmw.703.0.20.19193900, VMW_bootbank_sfvmk_2.4.0.2010-6vmw.703.0.20.19193900, VMW_bootbank_smartpqi_70.4149.0.5000-1vmw.703.0.20.19193900, VMW_bootbank_vmkata_0.1-1vmw.703.0.20.19193900, VMW_bootbank_vmkfcoe_1.0.0.2-1vmw.703.0.20.19193900, VMW_bootbank_vmkusb_0.1-6vmw.703.0.20.19193900, VMW_bootbank_vmw-ahci_2.0.11-1vmw.703.0.20.19193900, VMware_bootbank_bmcal_7.0.3-0.20.19193900, VMware_bootbank_cpu-microcode_7.0.3-0.20.19193900, VMware_bootbank_crx_7.0.3-0.20.19193900, VMware_bootbank_elx-esx-libelxima.so_12.0.1200.0-4vmw.703.0.20.19193900, VMware_bootbank_esx-base_7.0.3-0.20.19193900, VMware_bootbank_esx-dvfilter-generic-fastpath_7.0.3-0.20.19193900, VMware_bootbank_esx-update_7.0.3-0.20.19193900, VMware_bootbank_esx-xserver_7.0.3-0.20.19193900, VMware_bootbank_esxio-combiner_7.0.3-0.20.19193900, VMware_bootbank_gc_7.0.3-0.20.19193900, VMware_bootbank_loadesx_7.0.3-0.20.19193900, VMware_bootbank_lsuv2-hpv2-hpsa-plugin_1.0.0-3vmw.703.0.20.19193900, VMware_bootbank_lsuv2-intelv2-nvme-vmd-plugin_2.7.2173-1vmw.703.0.20.19193900, VMware_bootbank_lsuv2-lsiv2-drivers-plugin_1.0.0-9vmw.703.0.20.19193900, VMware_bootbank_lsuv2-nvme-pcie-plugin_1.0.0-1vmw.703.0.20.19193900, VMware_bootbank_lsuv2-oem-dell-plugin_1.0.0-1vmw.703.0.20.19193900, VMware_bootbank_lsuv2-oem-hp-plugin_1.0.0-1vmw.703.0.20.19193900, VMware_bootbank_lsuv2-oem-lenovo-plugin_1.0.0-1vmw.703.0.20.19193900, VMware_bootbank_lsuv2-smartpqiv2-plugin_1.0.0-8vmw.703.0.20.19193900, VMware_bootbank_native-misc-drivers_7.0.3-0.20.19193900, VMware_bootbank_qlnativefc_4.1.14.0-26vmw.703.0.20.19193900, VMware_bootbank_trx_7.0.3-0.20.19193900, VMware_bootbank_vdfs_7.0.3-0.20.19193900, VMware_bootbank_vmware-esx-esxcli-nvme-plugin_1.2.0.44-1vmw.703.0.20.19193900, VMware_bootbank_vsan_7.0.3-0.20.19193900, VMware_bootbank_vsanhealth_7.0.3-0.20.19193900, VMware_locker_tools-light_11.3.5.18557794-19193900
         VIBs Removed: VMW_bootbank_atlantic_1.0.3.0-8vmw.703.0.0.18644231, VMW_bootbank_bnxtnet_216.0.50.0-41vmw.703.0.0.18644231, VMW_bootbank_bnxtroce_216.0.58.0-23vmw.703.0.0.18644231, VMW_bootbank_brcmfcoe_12.0.1500.2-3vmw.703.0.0.18644231, VMW_bootbank_elxiscsi_12.0.1200.0-9vmw.703.0.0.18644231, VMW_bootbank_elxnet_12.0.1250.0-5vmw.703.0.0.18644231, VMW_bootbank_i40en_1.11.1.31-1vmw.703.0.0.18644231, VMW_bootbank_iavmd_2.7.0.1157-2vmw.703.0.10.18905247, VMW_bootbank_icen_1.4.1.7-1vmw.703.0.0.18644231, VMW_bootbank_igbn_1.4.11.2-1vmw.703.0.0.18644231, VMW_bootbank_ionic-en_16.0.0-16vmw.703.0.0.18644231, VMW_bootbank_irdman_1.3.1.20-1vmw.703.0.0.18644231, VMW_bootbank_iser_1.1.0.1-1vmw.703.0.0.18644231, VMW_bootbank_ixgben_1.7.1.35-1vmw.703.0.0.18644231, VMW_bootbank_lpfc_14.0.169.23-5vmw.703.0.0.18644231, VMW_bootbank_lpnic_11.4.62.0-1vmw.703.0.0.18644231, VMW_bootbank_lsi-mr3_7.718.02.00-1vmw.703.0.0.18644231, VMW_bootbank_lsi-msgpt2_20.00.06.00-4vmw.703.0.0.18644231, VMW_bootbank_lsi-msgpt35_19.00.02.00-1vmw.703.0.0.18644231, VMW_bootbank_lsi-msgpt3_17.00.12.00-1vmw.703.0.0.18644231, VMW_bootbank_mtip32xx-native_3.9.8-1vmw.703.0.0.18644231, VMW_bootbank_ne1000_0.8.4-11vmw.703.0.0.18644231, VMW_bootbank_nenic_1.0.33.0-1vmw.703.0.0.18644231, VMW_bootbank_nfnic_4.0.0.70-1vmw.703.0.0.18644231, VMW_bootbank_nhpsa_70.0051.0.100-4vmw.703.0.0.18644231, VMW_bootbank_nmlx4-core_3.19.16.8-2vmw.703.0.0.18644231, VMW_bootbank_nmlx4-en_3.19.16.8-2vmw.703.0.0.18644231, VMW_bootbank_nmlx4-rdma_3.19.16.8-2vmw.703.0.0.18644231, VMW_bootbank_nmlx5-core_4.19.16.11-1vmw.703.0.0.18644231, VMW_bootbank_nmlx5-rdma_4.19.16.11-1vmw.703.0.0.18644231, VMW_bootbank_ntg3_4.1.7.0-0vmw.703.0.0.18644231, VMW_bootbank_nvme-pcie_1.2.3.16-1vmw.703.0.0.18644231, VMW_bootbank_nvmerdma_1.0.3.5-1vmw.703.0.0.18644231, VMW_bootbank_nvmetcp_1.0.0.0-1vmw.703.0.0.18644231, VMW_bootbank_nvmxnet3-ens_2.0.0.22-1vmw.703.0.0.18644231, VMW_bootbank_nvmxnet3_2.0.0.30-1vmw.703.0.0.18644231, VMW_bootbank_pvscsi_0.1-4vmw.703.0.0.18644231, VMW_bootbank_qcnic_1.0.15.0-14vmw.703.0.0.18644231, VMW_bootbank_qedentv_3.40.5.53-22vmw.703.0.0.18644231, VMW_bootbank_qedrntv_3.40.5.53-18vmw.703.0.0.18644231, VMW_bootbank_qfle3_1.0.67.0-22vmw.703.0.0.18644231, VMW_bootbank_qfle3f_1.0.51.0-22vmw.703.0.0.18644231, VMW_bootbank_qfle3i_1.0.15.0-15vmw.703.0.0.18644231, VMW_bootbank_qflge_1.1.0.11-1vmw.703.0.0.18644231, VMW_bootbank_rste_2.0.2.0088-7vmw.703.0.0.18644231, VMW_bootbank_sfvmk_2.4.0.2010-6vmw.703.0.0.18644231, VMW_bootbank_smartpqi_70.4149.0.5000-1vmw.703.0.0.18644231, VMW_bootbank_vmkata_0.1-1vmw.703.0.0.18644231, VMW_bootbank_vmkfcoe_1.0.0.2-1vmw.703.0.0.18644231, VMW_bootbank_vmkusb_0.1-6vmw.703.0.0.18644231, VMW_bootbank_vmw-ahci_2.0.11-1vmw.703.0.0.18644231, VMware_bootbank_bmcal_7.0.3-0.10.18905247, VMware_bootbank_cpu-microcode_7.0.3-0.10.18905247, VMware_bootbank_crx_7.0.3-0.10.18905247, VMware_bootbank_elx-esx-libelxima.so_12.0.1200.0-4vmw.703.0.0.18644231, VMware_bootbank_esx-base_7.0.3-0.10.18905247, VMware_bootbank_esx-dvfilter-generic-fastpath_7.0.3-0.10.18905247, VMware_bootbank_esx-update_7.0.3-0.10.18905247, VMware_bootbank_esx-xserver_7.0.3-0.10.18905247, VMware_bootbank_esxio-combiner_7.0.3-0.10.18905247, VMware_bootbank_gc_7.0.3-0.10.18905247, VMware_bootbank_loadesx_7.0.3-0.10.18905247, VMware_bootbank_lsuv2-hpv2-hpsa-plugin_1.0.0-3vmw.703.0.0.18644231, VMware_bootbank_lsuv2-intelv2-nvme-vmd-plugin_2.7.2173-1vmw.703.0.0.18644231, VMware_bootbank_lsuv2-lsiv2-drivers-plugin_1.0.0-9vmw.703.0.0.18644231, VMware_bootbank_lsuv2-nvme-pcie-plugin_1.0.0-1vmw.703.0.0.18644231, VMware_bootbank_lsuv2-oem-dell-plugin_1.0.0-1vmw.703.0.0.18644231, VMware_bootbank_lsuv2-oem-hp-plugin_1.0.0-1vmw.703.0.0.18644231, VMware_bootbank_lsuv2-oem-lenovo-plugin_1.0.0-1vmw.703.0.0.18644231, VMware_bootbank_lsuv2-smartpqiv2-plugin_1.0.0-8vmw.703.0.0.18644231, VMware_bootbank_native-misc-drivers_7.0.3-0.10.18905247, VMware_bootbank_qlnativefc_4.1.14.0-26vmw.703.0.0.18644231, VMware_bootbank_trx_7.0.3-0.10.18905247, VMware_bootbank_vdfs_7.0.3-0.10.18905247, VMware_bootbank_vmware-esx-esxcli-nvme-plugin_1.2.0.44-1vmw.703.0.0.18644231, VMware_bootbank_vsan_7.0.3-0.10.18905247, VMware_bootbank_vsanhealth_7.0.3-0.10.18905247, VMware_locker_tools-light_11.3.0.18090558-18644231
         VIBs Skipped: VMware_bootbank_esx-ui_1.36.0-18403931
      [root@xd-1541-5028d:~] reboot

    Version: 7.0.3c (Build 19193900)
    to:
    Version: 7.0.3d (Build 19482537)

    7.0u3d
      login as: root
      Using keyboard-interactive authentication.
      Password:
      The time and date of this login have been sent to the system logs.
    
      WARNING:
         All commands run on the ESXi shell are logged and may be included in
         support bundles. Do not provide passwords directly on the command line.
         Most tools can prompt for secrets or accept them from standard input.
    
      VMware offers supported, powerful system administration tools.  Please
      see www.vmware.com/go/sysadmintools for details.
    
      The ESXi Shell can be disabled by an administrative user. See the
      vSphere Security documentation for more information.
      [root@xd-1541-5028d:~] esxcli software profile update -p ESXi-7.0U3d-19482537-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml
      Update Result
         Message: The update completed successfully, but the system needs to be rebooted for the changes to be effective.
         Reboot Required: true
         VIBs Installed: VMW_bootbank_lpfc_14.0.169.25-5vmw.703.0.35.19482537, VMW_bootbank_nvmetcp_1.0.0.1-1vmw.703.0.35.19482537, VMware_bootbank_bmcal_7.0.3-0.35.19482537, Vrocode_7.0.3-0.35.19482537, VMware_bootbank_crx_7.0.3-0.35.19482537, VMware_bootbank_esx-base_7.0.3-0.35.19482537, VMware_bootbank_esx-dvfilter-generic-fastpath_7.0.3-0.3tbank_esx-update_7.0.3-0.35.19482537, VMware_bootbank_esx-xserver_7.0.3-0.35.19482537, VMware_bootbank_esxio-combiner_7.0.3-0.35.19482537, VMware_bootbank_gc_7.0.3-0.35.1nk_loadesx_7.0.3-0.35.19482537, VMware_bootbank_lsuv2-lsiv2-drivers-plugin_1.0.0-10vmw.703.0.35.19482537, VMware_bootbank_native-misc-drivers_7.0.3-0.35.19482537, VMware_5.19482537, VMware_bootbank_vdfs_7.0.3-0.35.19482537, VMware_bootbank_vsan_7.0.3-0.35.19482537, VMware_bootbank_vsanhealth_7.0.3-0.35.19482537, VMware_locker_tools-light_31
         VIBs Removed: VMW_bootbank_lpfc_14.0.169.25-5vmw.703.0.20.19193900, VMW_bootbank_nvmetcp_1.0.0.0-1vmw.703.0.20.19193900, VMware_bootbank_bmcal_7.0.3-0.20.19193900, VMwcode_7.0.3-0.20.19193900, VMware_bootbank_crx_7.0.3-0.20.19193900, VMware_bootbank_esx-base_7.0.3-0.20.19193900, VMware_bootbank_esx-dvfilter-generic-fastpath_7.0.3-0.20.ank_esx-update_7.0.3-0.20.19193900, VMware_bootbank_esx-xserver_7.0.3-0.20.19193900, VMware_bootbank_esxio-combiner_7.0.3-0.20.19193900, VMware_bootbank_gc_7.0.3-0.20.191_loadesx_7.0.3-0.20.19193900, VMware_bootbank_lsuv2-lsiv2-drivers-plugin_1.0.0-9vmw.703.0.20.19193900, VMware_bootbank_native-misc-drivers_7.0.3-0.20.19193900, VMware_boo9193900, VMware_bootbank_vdfs_7.0.3-0.20.19193900, VMware_bootbank_vsan_7.0.3-0.20.19193900, VMware_bootbank_vsanhealth_7.0.3-0.20.19193900, VMware_locker_tools-light_11.
         VIBs Skipped: VMW_bootbank_atlantic_1.0.3.0-8vmw.703.0.20.19193900, VMW_bootbank_bnxtnet_216.0.50.0-41vmw.703.0.20.19193900, VMW_bootbank_bnxtroce_216.0.58.0-23vmw.703otbank_brcmfcoe_12.0.1500.2-3vmw.703.0.20.19193900, VMW_bootbank_elxiscsi_12.0.1200.0-9vmw.703.0.20.19193900, VMW_bootbank_elxnet_12.0.1250.0-5vmw.703.0.20.19193900, VMW_31-1vmw.703.0.20.19193900, VMW_bootbank_iavmd_2.7.0.1157-2vmw.703.0.20.19193900, VMW_bootbank_icen_1.4.1.7-1vmw.703.0.20.19193900, VMW_bootbank_igbn_1.4.11.2-1vmw.703.0.2nk_ionic-en_16.0.0-16vmw.703.0.20.19193900, VMW_bootbank_irdman_1.3.1.20-1vmw.703.0.20.19193900, VMW_bootbank_iser_1.1.0.1-1vmw.703.0.20.19193900, VMW_bootbank_ixgben_1.7193900, VMW_bootbank_lpnic_11.4.62.0-1vmw.703.0.20.19193900, VMW_bootbank_lsi-mr3_7.718.02.00-1vmw.703.0.20.19193900, VMW_bootbank_lsi-msgpt2_20.00.06.00-4vmw.703.0.20.19si-msgpt35_19.00.02.00-1vmw.703.0.20.19193900, VMW_bootbank_lsi-msgpt3_17.00.12.00-1vmw.703.0.20.19193900, VMW_bootbank_mtip32xx-native_3.9.8-1vmw.703.0.20.19193900, VMW_11vmw.703.0.20.19193900, VMW_bootbank_nenic_1.0.33.0-1vmw.703.0.20.19193900, VMW_bootbank_nfnic_4.0.0.70-1vmw.703.0.20.19193900, VMW_bootbank_nhpsa_70.0051.0.100-4vmw.703otbank_nmlx4-core_3.19.16.8-2vmw.703.0.20.19193900, VMW_bootbank_nmlx4-en_3.19.16.8-2vmw.703.0.20.19193900, VMW_bootbank_nmlx4-rdma_3.19.16.8-2vmw.703.0.20.19193900, VMW_19.16.11-1vmw.703.0.20.19193900, VMW_bootbank_nmlx5-rdma_4.19.16.11-1vmw.703.0.20.19193900, VMW_bootbank_ntg3_4.1.7.0-0vmw.703.0.20.19193900, VMW_bootbank_nvme-pcie_1.2.33900, VMW_bootbank_nvmerdma_1.0.3.5-1vmw.703.0.20.19193900, VMW_bootbank_nvmxnet3-ens_2.0.0.22-1vmw.703.0.20.19193900, VMW_bootbank_nvmxnet3_2.0.0.30-1vmw.703.0.20.191939i_0.1-4vmw.703.0.20.19193900, VMW_bootbank_qcnic_1.0.15.0-14vmw.703.0.20.19193900, VMW_bootbank_qedentv_3.40.5.53-22vmw.703.0.20.19193900, VMW_bootbank_qedrntv_3.40.5.53-0, VMW_bootbank_qfle3_1.0.67.0-22vmw.703.0.20.19193900, VMW_bootbank_qfle3f_1.0.51.0-22vmw.703.0.20.19193900, VMW_bootbank_qfle3i_1.0.15.0-15vmw.703.0.20.19193900, VMW_bo1vmw.703.0.20.19193900, VMW_bootbank_rste_2.0.2.0088-7vmw.703.0.20.19193900, VMW_bootbank_sfvmk_2.4.0.2010-6vmw.703.0.20.19193900, VMW_bootbank_smartpqi_70.4149.0.5000-1vVMW_bootbank_vmkata_0.1-1vmw.703.0.20.19193900, VMW_bootbank_vmkfcoe_1.0.0.2-1vmw.703.0.20.19193900, VMW_bootbank_vmkusb_0.1-6vmw.703.0.20.19193900, VMW_bootbank_vmw-ahci19193900, VMware_bootbank_elx-esx-libelxima.so_12.0.1200.0-4vmw.703.0.20.19193900, VMware_bootbank_esx-ui_1.36.0-18403931, VMware_bootbank_lsuv2-hpv2-hpsa-plugin_1.0.0-3vVMware_bootbank_lsuv2-intelv2-nvme-vmd-plugin_2.7.2173-1vmw.703.0.20.19193900, VMware_bootbank_lsuv2-nvme-pcie-plugin_1.0.0-1vmw.703.0.20.19193900, VMware_bootbank_lsuv2-1vmw.703.0.20.19193900, VMware_bootbank_lsuv2-oem-hp-plugin_1.0.0-1vmw.703.0.20.19193900, VMware_bootbank_lsuv2-oem-lenovo-plugin_1.0.0-1vmw.703.0.20.19193900, VMware_boo-plugin_1.0.0-8vmw.703.0.20.19193900, VMware_bootbank_qlnativefc_4.1.14.0-26vmw.703.0.20.19193900, VMware_bootbank_vmware-esx-esxcli-nvme-plugin_1.2.0.44-1vmw.703.0.20.19
      [root@xd-1541-5028d:~] reboot

    Version: 7.0.3d (Build 19482537)
    to:
    Version: 7.0.3e (Build 19898904)

    7.0u3e
      login as: root
      Using keyboard-interactive authentication.
      Password:
      The time and date of this login have been sent to the system logs.
    
      WARNING:
         All commands run on the ESXi shell are logged and may be included in
         support bundles. Do not provide passwords directly on the command line.
         Most tools can prompt for secrets or accept them from standard input.
    
      VMware offers supported, powerful system administration tools.  Please
      see www.vmware.com/go/sysadmintools for details.
    
      The ESXi Shell can be disabled by an administrative user. See the
      vSphere Security documentation for more information.
      [root@xd-1541-5028d:~] esxcli software profile update -p ESXi-7.0U3e-19898904-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml
      Update Result
         Message: The update completed successfully, but the system needs to be rebooted for the changes to be effective.
         Reboot Required: true
         VIBs Installed: VMware_bootbank_bmcal_7.0.3-0.40.19898904, VMware_bootbank_cpu-microcode_7.0.3-0.40.19898904, VMware_bootbank_crx_7.0.3-0.40.19898904, VMware_bootbank_esx-base_7.0.3-0.40.19898904, VMware_bootbank_esx-dvfilter-generic-fastpath_7.0.3-0.40.19898904, VMware_bootbank_esx-update_7.0.3-0.40.19898904, VMware_bootbank_esx-xserver_7.0.3-0.40.19898904, VMware_bootbank_esxio-combiner_7.0.3-0.40.19898904, VMware_bootbank_gc_7.0.3-0.40.19898904, VMware_bootbank_loadesx_7.0.3-0.40.19898904, VMware_bootbank_native-misc-drivers_7.0.3-0.40.19898904, VMware_bootbank_trx_7.0.3-0.40.19898904, VMware_bootbank_vdfs_7.0.3-0.40.19898904, VMware_bootbank_vsan_7.0.3-0.40.19898904, VMware_bootbank_vsanhealth_7.0.3-0.40.19898904
         VIBs Removed: VMware_bootbank_bmcal_7.0.3-0.35.19482537, VMware_bootbank_cpu-microcode_7.0.3-0.35.19482537, VMware_bootbank_crx_7.0.3-0.35.19482537, VMware_bootbank_esx-base_7.0.3-0.35.19482537, VMware_bootbank_esx-dvfilter-generic-fastpath_7.0.3-0.35.19482537, VMware_bootbank_esx-update_7.0.3-0.35.19482537, VMware_bootbank_esx-xserver_7.0.3-0.35.19482537, VMware_bootbank_esxio-combiner_7.0.3-0.35.19482537, VMware_bootbank_gc_7.0.3-0.35.19482537, VMware_bootbank_loadesx_7.0.3-0.35.19482537, VMware_bootbank_native-misc-drivers_7.0.3-0.35.19482537, VMware_bootbank_trx_7.0.3-0.35.19482537, VMware_bootbank_vdfs_7.0.3-0.35.19482537, VMware_bootbank_vsan_7.0.3-0.35.19482537, VMware_bootbank_vsanhealth_7.0.3-0.35.19482537
         VIBs Skipped: VMW_bootbank_atlantic_1.0.3.0-8vmw.703.0.20.19193900, VMW_bootbank_bnxtnet_216.0.50.0-41vmw.703.0.20.19193900, VMW_bootbank_bnxtroce_216.0.58.0-23vmw.703.0.20.19193900, VMW_bootbank_brcmfcoe_12.0.1500.2-3vmw.703.0.20.19193900, VMW_bootbank_elxiscsi_12.0.1200.0-9vmw.703.0.20.19193900, VMW_bootbank_elxnet_12.0.1250.0-5vmw.703.0.20.19193900, VMW_bootbank_i40en_1.11.1.31-1vmw.703.0.20.19193900, VMW_bootbank_iavmd_2.7.0.1157-2vmw.703.0.20.19193900, VMW_bootbank_icen_1.4.1.7-1vmw.703.0.20.19193900, VMW_bootbank_igbn_1.4.11.2-1vmw.703.0.20.19193900, VMW_bootbank_ionic-en_16.0.0-16vmw.703.0.20.19193900, VMW_bootbank_irdman_1.3.1.20-1vmw.703.0.20.19193900, VMW_bootbank_iser_1.1.0.1-1vmw.703.0.20.19193900, VMW_bootbank_ixgben_1.7.1.35-1vmw.703.0.20.19193900, VMW_bootbank_lpfc_14.0.169.25-5vmw.703.0.35.19482537, VMW_bootbank_lpnic_11.4.62.0-1vmw.703.0.20.19193900, VMW_bootbank_lsi-mr3_7.718.02.00-1vmw.703.0.20.19193900, VMW_bootbank_lsi-msgpt2_20.00.06.00-4vmw.703.0.20.19193900, VMW_bootbank_lsi-msgpt35_19.00.02.00-1vmw.703.0.20.19193900, VMW_bootbank_lsi-msgpt3_17.00.12.00-1vmw.703.0.20.19193900, VMW_bootbank_mtip32xx-native_3.9.8-1vmw.703.0.20.19193900, VMW_bootbank_ne1000_0.8.4-11vmw.703.0.20.19193900, VMW_bootbank_nenic_1.0.33.0-1vmw.703.0.20.19193900, VMW_bootbank_nfnic_4.0.0.70-1vmw.703.0.20.19193900, VMW_bootbank_nhpsa_70.0051.0.100-4vmw.703.0.20.19193900, VMW_bootbank_nmlx4-core_3.19.16.8-2vmw.703.0.20.19193900, VMW_bootbank_nmlx4-en_3.19.16.8-2vmw.703.0.20.19193900, VMW_bootbank_nmlx4-rdma_3.19.16.8-2vmw.703.0.20.19193900, VMW_bootbank_nmlx5-core_4.19.16.11-1vmw.703.0.20.19193900, VMW_bootbank_nmlx5-rdma_4.19.16.11-1vmw.703.0.20.19193900, VMW_bootbank_ntg3_4.1.7.0-0vmw.703.0.20.19193900, VMW_bootbank_nvme-pcie_1.2.3.16-1vmw.703.0.20.19193900, VMW_bootbank_nvmerdma_1.0.3.5-1vmw.703.0.20.19193900, VMW_bootbank_nvmetcp_1.0.0.1-1vmw.703.0.35.19482537, VMW_bootbank_nvmxnet3-ens_2.0.0.22-1vmw.703.0.20.19193900, VMW_bootbank_nvmxnet3_2.0.0.30-1vmw.703.0.20.19193900, VMW_bootbank_pvscsi_0.1-4vmw.703.0.20.19193900, VMW_bootbank_qcnic_1.0.15.0-14vmw.703.0.20.19193900, VMW_bootbank_qedentv_3.40.5.53-22vmw.703.0.20.19193900, VMW_bootbank_qedrntv_3.40.5.53-18vmw.703.0.20.19193900, VMW_bootbank_qfle3_1.0.67.0-22vmw.703.0.20.19193900, VMW_bootbank_qfle3f_1.0.51.0-22vmw.703.0.20.19193900, VMW_bootbank_qfle3i_1.0.15.0-15vmw.703.0.20.19193900, VMW_bootbank_qflge_1.1.0.11-1vmw.703.0.20.19193900, VMW_bootbank_rste_2.0.2.0088-7vmw.703.0.20.19193900, VMW_bootbank_sfvmk_2.4.0.2010-6vmw.703.0.20.19193900, VMW_bootbank_smartpqi_70.4149.0.5000-1vmw.703.0.20.19193900, VMW_bootbank_vmkata_0.1-1vmw.703.0.20.19193900, VMW_bootbank_vmkfcoe_1.0.0.2-1vmw.703.0.20.19193900, VMW_bootbank_vmkusb_0.1-6vmw.703.0.20.19193900, VMW_bootbank_vmw-ahci_2.0.11-1vmw.703.0.20.19193900, VMware_bootbank_elx-esx-libelxima.so_12.0.1200.0-4vmw.703.0.20.19193900, VMware_bootbank_esx-ui_1.36.0-18403931, VMware_bootbank_lsuv2-hpv2-hpsa-plugin_1.0.0-3vmw.703.0.20.19193900, VMware_bootbank_lsuv2-intelv2-nvme-vmd-plugin_2.7.2173-1vmw.703.0.20.19193900, VMware_bootbank_lsuv2-lsiv2-drivers-plugin_1.0.0-10vmw.703.0.35.19482537, VMware_bootbank_lsuv2-nvme-pcie-plugin_1.0.0-1vmw.703.0.20.19193900, VMware_bootbank_lsuv2-oem-dell-plugin_1.0.0-1vmw.703.0.20.19193900, VMware_bootbank_lsuv2-oem-hp-plugin_1.0.0-1vmw.703.0.20.19193900, VMware_bootbank_lsuv2-oem-lenovo-plugin_1.0.0-1vmw.703.0.20.19193900, VMware_bootbank_lsuv2-smartpqiv2-plugin_1.0.0-8vmw.703.0.20.19193900, VMware_bootbank_qlnativefc_4.1.14.0-26vmw.703.0.20.19193900, VMware_bootbank_vmware-esx-esxcli-nvme-plugin_1.2.0.44-1vmw.703.0.20.19193900, VMware_locker_tools-light_11.3.5.18557794-19482531
      [root@xd-1541-5028d:~] reboot

    Version: 7.0.3e (Build 19898904)
    to:
    Version: 7.0.3f (Build 20036589)

    7.0u3f
      login as: root
      Using keyboard-interactive authentication.
      Password:
      The time and date of this login have been sent to the system logs.
    
      WARNING:
         All commands run on the ESXi shell are logged and may be included in
         support bundles. Do not provide passwords directly on the command line.
         Most tools can prompt for secrets or accept them from standard input.
    
      VMware offers supported, powerful system administration tools.  Please
      see www.vmware.com/go/sysadmintools for details.
    
      The ESXi Shell can be disabled by an administrative user. See the
      vSphere Security documentation for more information.
      [root@xd-1541-5028d:~] esxcli software profile update -p ESXi-7.0U3f-20036589-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml
      Update Result
         Message: The update completed successfully, but the system needs to be rebooted for the changes to be effective.
         Reboot Required: true
         VIBs Installed: VMW_bootbank_bnxtnet_216.0.50.0-44vmw.703.0.50.20036589, VMW_bootbank_bnxtroce_216.0.58.0-23vmw.703.0.50.20036589, VMW_bootbank_icen_1.4.1.20-1vmw.703.0.20036589, VMW_bootbank_iser_1.1.0.1-1vmw.703.0.50.20036589, VMW_bootbank_lpfc_14.0.169.26-5vmw.703.0.50.20036589, VMW_bootbank_ne1000_0.9.0-1vmw.703.0.50.20036589, VMW_ank_bmcal_7.0.3-0.50.20036589, VMware_bootbank_cpu-microcode_7.0.3-0.50.20036589, VMware_bootbank_crx_7.0.3-0.50.20036589, VMware_bootbank_esx-base_7.0.3-0.50.20036589, V20036589, VMware_bootbank_esx-ui_1.43.8-19798623, VMware_bootbank_esx-update_7.0.3-0.50.20036589, VMware_bootbank_esx-xserver_7.0.3-0.50.20036589, VMware_bootbank_esxio-c50.20036589, VMware_bootbank_loadesx_7.0.3-0.50.20036589, VMware_bootbank_lsuv2-lsiv2-drivers-plugin_1.0.0-12vmw.703.0.50.20036589, VMware_bootbank_native-misc-drivers_7.89, VMware_bootbank_vdfs_7.0.3-0.50.20036589, VMware_bootbank_vsan_7.0.3-0.50.20036589, VMware_bootbank_vsanhealth_7.0.3-0.50.20036589, VMware_locker_tools-light_12.0.0.1
         VIBs Removed: VMW_bootbank_bnxtnet_216.0.50.0-41vmw.703.0.20.19193900, VMW_bootbank_bnxtroce_216.0.58.0-23vmw.703.0.20.19193900, VMW_bootbank_icen_1.4.1.7-1vmw.703.0.29193900, VMW_bootbank_iser_1.1.0.1-1vmw.703.0.20.19193900, VMW_bootbank_lpfc_14.0.169.25-5vmw.703.0.35.19482537, VMW_bootbank_ne1000_0.8.4-11vmw.703.0.20.19193900, VMW_bok_bmcal_7.0.3-0.40.19898904, VMware_bootbank_cpu-microcode_7.0.3-0.40.19898904, VMware_bootbank_crx_7.0.3-0.40.19898904, VMware_bootbank_esx-base_7.0.3-0.40.19898904, VMw898904, VMware_bootbank_esx-ui_1.36.0-18403931, VMware_bootbank_esx-update_7.0.3-0.40.19898904, VMware_bootbank_esx-xserver_7.0.3-0.40.19898904, VMware_bootbank_esxio-com.19898904, VMware_bootbank_loadesx_7.0.3-0.40.19898904, VMware_bootbank_lsuv2-lsiv2-drivers-plugin_1.0.0-10vmw.703.0.35.19482537, VMware_bootbank_native-misc-drivers_7.0., VMware_bootbank_vdfs_7.0.3-0.40.19898904, VMware_bootbank_vsan_7.0.3-0.40.19898904, VMware_bootbank_vsanhealth_7.0.3-0.40.19898904, VMware_locker_tools-light_11.3.5.185
         VIBs Skipped: VMW_bootbank_atlantic_1.0.3.0-8vmw.703.0.20.19193900, VMW_bootbank_brcmfcoe_12.0.1500.2-3vmw.703.0.20.19193900, VMW_bootbank_elxiscsi_12.0.1200.0-9vmw.703.0.20.19193900, VMW_bootbank_i40en_1.11.1.31-1vmw.703.0.20.19193900, VMW_bootbank_iavmd_2.7.0.1157-2vmw.703.0.20.19193900, VMW_bootbank_igbn_1.4.11.2-1vmw.703.0.20.191930, VMW_bootbank_ixgben_1.7.1.35-1vmw.703.0.20.19193900, VMW_bootbank_lpnic_11.4.62.0-1vmw.703.0.20.19193900, VMW_bootbank_lsi-mr3_7.718.02.00-1vmw.703.0.20.19193900, VMW_VMW_bootbank_lsi-msgpt35_19.00.02.00-1vmw.703.0.20.19193900, VMW_bootbank_lsi-msgpt3_17.00.12.00-1vmw.703.0.20.19193900, VMW_bootbank_mtip32xx-native_3.9.8-1vmw.703.0.20.3900, VMW_bootbank_nfnic_4.0.0.70-1vmw.703.0.20.19193900, VMW_bootbank_nhpsa_70.0051.0.100-4vmw.703.0.20.19193900, VMW_bootbank_nmlx4-core_3.19.16.8-2vmw.703.0.20.19193900, VMW_bootbank_nmlx4-rdma_3.19.16.8-2vmw.703.0.20.19193900, VMW_bootbank_nmlx5-core_4.19.16.11-1vmw.703.0.20.19193900, VMW_bootbank_nmlx5-rdma_4.19.16.11-1vmw.703.0.20.10, VMW_bootbank_nvme-pcie_1.2.3.16-1vmw.703.0.20.19193900, VMW_bootbank_nvmerdma_1.0.3.5-1vmw.703.0.20.19193900, VMW_bootbank_nvmetcp_1.0.0.1-1vmw.703.0.35.19482537, VMW_MW_bootbank_nvmxnet3_2.0.0.30-1vmw.703.0.20.19193900, VMW_bootbank_pvscsi_0.1-4vmw.703.0.20.19193900, VMW_bootbank_qcnic_1.0.15.0-14vmw.703.0.20.19193900, VMW_bootbank_qedrntv_3.40.5.53-18vmw.703.0.20.19193900, VMW_bootbank_qfle3_1.0.67.0-22vmw.703.0.20.19193900, VMW_bootbank_qfle3f_1.0.51.0-22vmw.703.0.20.19193900, VMW_bootbank_qfle3i_1..11-1vmw.703.0.20.19193900, VMW_bootbank_rste_2.0.2.0088-7vmw.703.0.20.19193900, VMW_bootbank_sfvmk_2.4.0.2010-6vmw.703.0.20.19193900, VMW_bootbank_smartpqi_70.4149.0.50003.0.20.19193900, VMW_bootbank_vmkfcoe_1.0.0.2-1vmw.703.0.20.19193900, VMW_bootbank_vmw-ahci_2.0.11-1vmw.703.0.20.19193900, VMware_bootbank_elx-esx-libelxima.so_12.0.1200sa-plugin_1.0.0-3vmw.703.0.20.19193900, VMware_bootbank_lsuv2-intelv2-nvme-vmd-plugin_2.7.2173-1vmw.703.0.20.19193900, VMware_bootbank_lsuv2-nvme-pcie-plugin_1.0.0-1vmw.71.0.0-1vmw.703.0.20.19193900, VMware_bootbank_lsuv2-oem-hp-plugin_1.0.0-1vmw.703.0.20.19193900, VMware_bootbank_lsuv2-oem-lenovo-plugin_1.0.0-1vmw.703.0.20.19193900, VMwa19193900, VMware_bootbank_qlnativefc_4.1.14.0-26vmw.703.0.20.19193900, VMware_bootbank_vmware-esx-esxcli-nvme-plugin_1.2.0.44-1vmw.703.0.20.19193900
      [root@xd-1541-5028d:~] reboot

    Version: 7.0.3f (Build 20036589)
    to:
    Version: 7.0.3g (Build 20328353)

    ESXi-7.0u3g
      login as: root
      Using keyboard-interactive authentication.
      Password:
      The time and date of this login have been sent to the system logs.
    
      WARNING:
         All commands run on the ESXi shell are logged and may be included in
         support bundles. Do not provide passwords directly on the command line.
         Most tools can prompt for secrets or accept them from standard input.
    
      VMware offers supported, powerful system administration tools.  Please
      see www.vmware.com/go/sysadmintools for details.
    
      The ESXi Shell can be disabled by an administrative user. See the
      vSphere Security documentation for more information.
      [root@xd-1541-5028d:~] esxcli software profile update -p ESXi-7.0U3g-20328353-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml
      Update Result
         Message: The update completed successfully, but the system needs to be rebooted for the changes to be effective.
         Reboot Required: true
         VIBs Installed: VMware_bootbank_bmcal_7.0.3-0.55.20328353, VMware_bootbank_cpu-microcode_7.0.3-0.55.20328353, VMware_bootbank_crx_7.0.3-0.55.20328353, VMware_bootbank_esx-base_7.0.3-0.55.20328353, VMware_bootbank_esx-dvfilter-generic-fastpath_7.0.3-0.55.20328353, VMware_bootbank_esx-update_7.0.3-0.55.20328353, VMware_bootbank_esx-xserver_7.0.3-0.55.20328353, VMware_bootbank_esxio-combiner_7.0.3-0.55.20328353, VMware_bootbank_gc_7.0.3-0.55.20328353, VMware_bootbank_loadesx_7.0.3-0.55.20328353, VMware_bootbank_native-misc-drivers_7.0.3-0.55.20328353, VMware_bootbank_trx_7.0.3-0.55.20328353, VMware_bootbank_vdfs_7.0.3-0.55.20328353, VMware_bootbank_vsan_7.0.3-0.55.20328353, VMware_bootbank_vsanhealth_7.0.3-0.55.20328353
         VIBs Removed: VMware_bootbank_bmcal_7.0.3-0.50.20036589, VMware_bootbank_cpu-microcode_7.0.3-0.50.20036589, VMware_bootbank_crx_7.0.3-0.50.20036589, VMware_bootbank_esx-base_7.0.3-0.50.20036589, VMware_bootbank_esx-dvfilter-generic-fastpath_7.0.3-0.50.20036589, VMware_bootbank_esx-update_7.0.3-0.50.20036589, VMware_bootbank_esx-xserver_7.0.3-0.50.20036589, VMware_bootbank_esxio-combiner_7.0.3-0.50.20036589, VMware_bootbank_gc_7.0.3-0.50.20036589, VMwarrebe_bootbank_loadesx_7.0.3-0.50.20036589, VMware_bootbank_native-misc-drivers_7.0.3-0.50.20036589, VMware_bootbank_trx_7.0.3-0.50.20036589, VMware_bootbank_vdfs_7.0.3-0.50.20036589, VMware_bootbank_vsan_7.0.3-0.50.20036589, VMware_bootbank_vsanhealth_7.0.3-0.50.20036589
         VIBs Skipped: VMW_bootbank_atlantic_1.0.3.0-8vmw.703.0.20.19193900, VMW_bootbank_bnxtnet_216.0.50.0-44vmw.703.0.50.20036589, VMW_bootbank_bnxtroce_216.0.58.0-23vmw.703.0.50.20036589, VMW_bootbank_brcmfcoe_12.0.1500.2-3vmw.703.0.20.19193900, VMW_bootbank_elxiscsi_12.0.1200.0-9vmw.703.0.20.19193900, VMW_bootbank_elxnet_12.0.1250.0-5vmw.703.0.20.19193900, VMW_bootbank_i40en_1.11.1.31-1vmw.703.0.20.19193900, VMW_bootbank_iavmd_2.7.0.1157-2vmw.703.0.20.19193900, VMW_bootbank_icen_1.4.1.20-1vmw.703.0.50.20036589, VMW_bootbank_igbn_1.4.11.2-1vmw.703.0.20.19193900, VMW_bootbank_ionic-en_16.0.0-16vmw.703.0.20.19193900, VMW_bootbank_irdman_1.3.1.22-1vmw.703.0.50.20036589, VMW_bootbank_iser_1.1.0.1-1vmw.703.0.50.20036589, VMW_bootbank_ixgben_1.7.1.35-1vmw.703.0.20.19193900, VMW_bootbank_lpfc_14.0.169.26-5vmw.703.0.50.20036589, VMW_bootbank_lpnic_11.4.62.0-1vmw.703.0.20.19193900, VMW_bootbank_lsi-mr3_7.718.02.00-1vmw.703.0.20.19193900, VMW_bootbank_lsi-msgpt2_20.00.06.00-4vmw.703.0.20.19193900, VMW_bootbank_lsi-msgpt35_19.00.02.00-1vmw.703.0.20.19193900, VMW_bootbank_lsi-msgpt3_17.00.12.00-1vmw.703.0.20.19193900, VMW_bootbank_mtip32xx-native_3.9.8-1vmw.703.0.20.19193900, VMW_bootbank_ne1000_0.9.0-1vmw.703.0.50.20036589, VMW_bootbank_nenic_1.0.33.0-1vmw.703.0.20.19193900, VMW_bootbank_nfnic_4.0.0.70-1vmw.703.0.20.19193900, VMW_bootbank_nhpsa_70.0051.0.100-4vmw.703.0.20.19193900, VMW_bootbank_nmlx4-core_3.19.16.8-2vmw.703.0.20.19193900, VMW_bootbank_nmlx4-en_3.19.16.8-2vmw.703.0.20.19193900, VMW_bootbank_nmlx4-rdma_3.19.16.8-2vmw.703.0.20.19193900, VMW_bootbank_nmlx5-core_4.19.16.11-1vmw.703.0.20.19193900, VMW_bootbank_nmlx5-rdma_4.19.16.11-1vmw.703.0.20.19193900, VMW_bootbank_ntg3_4.1.7.0-0vmw.703.0.20.19193900, VMW_bootbank_nvme-pcie_1.2.3.16-1vmw.703.0.20.19193900, VMW_bootbank_nvmerdma_1.0.3.5-1vmw.703.0.20.19193900, VMW_bootbank_nvmetcp_1.0.0.1-1vmw.703.0.35.19482537, VMW_bootbank_nvmxnet3-ens_2.0.0.22-1vmw.703.0.20.19193900, VMW_bootbank_nvmxnet3_2.0.0.30-1vmw.703.0.20.19193900, VMW_bootbank_pvscsi_0.1-4vmw.703.0.20.19193900, VMW_bootbank_qcnic_1.0.15.0-14vmw.703.0.20.19193900, VMW_bootbank_qedentv_3.40.5.53-22vmw.703.0.20.19193900, VMW_bootbank_qedrntv_3.40.5.53-18vmw.703.0.20.19193900, VMW_bootbank_qfle3_1.0.67.0-22vmw.703.0.20.19193900, VMW_bootbank_qfle3f_1.0.51.0-22vmw.703.0.20.19193900, VMW_bootbank_qfle3i_1.0.15.0-15vmw.703.0.20.19193900, VMW_bootbank_qflge_1.1.0.11-1vmw.703.0.20.19193900, VMW_bootbank_rste_2.0.2.0088-7vmw.703.0.20.19193900, VMW_bootbank_sfvmk_2.4.0.2010-6vmw.703.0.20.19193900, VMW_bootbank_smartpqi_70.4149.0.5000-1vmw.703.0.20.19193900, VMW_bootbank_vmkata_0.1-1vmw.703.0.20.19193900, VMW_bootbank_vmkfcoe_1.0.0.2-1vmw.703.0.20.19193900, VMW_bootbank_vmkusb_0.1-7vmw.703.0.50.20036589, VMW_bootbank_vmw-ahci_2.0.11-1vmw.703.0.20.19193900, VMware_bootbank_elx-esx-libelxima.so_12.0.1200.0-4vmw.703.0.20.19193900, VMware_bootbank_esx-ui_1.43.8-19798623, VMware_bootbank_lsuv2-hpv2-hpsa-plugin_1.0.0-3vmw.703.0.20.19193900, VMware_bootbank_lsuv2-intelv2-nvme-vmd-plugin_2.7.2173-1vmw.703.0.20.19193900, VMware_bootbank_lsuv2-lsiv2-drivers-plugin_1.0.0-12vmw.703.0.50.20036589, VMware_bootbank_lsuv2-nvme-pcie-plugin_1.0.0-1vmw.703.0.20.19193900, VMware_bootbank_lsuv2-oem-dell-plugin_1.0.0-1vmw.703.0.20.19193900, VMware_bootbank_lsuv2-oem-hp-plugin_1.0.0-1vmw.703.0.20.19193900, VMware_bootbank_lsuv2-oem-lenovo-plugin_1.0.0-1vmw.703.0.20.19193900, VMware_bootbank_lsuv2-smartpqiv2-plugin_1.0.0-8vmw.703.0.20.19193900, VMware_bootbank_qlnativefc_4.1.14.0-26vmw.703.0.20.19193900, VMware_bootbank_vmware-esx-esxcli-nvme-plugin_1.2.0.44-1vmw.703.0.20.19193900, VMware_locker_tools-light_12.0.0.19345655-20036586
      [root@xd-1541-5028d:~] root

    Version: 7.0.3g (Build 20328353)
    to:
    Version: 8.0.0 (Build 20513097)

    ESXi-8.0
      login as: root
      Using keyboard-interactive authentication.
      Password:
      The time and date of this login have been sent to the system logs.
    
      WARNING:
         All commands run on the ESXi shell are logged and may be included in
         support bundles. Do not provide passwords directly on the command line.
         Most tools can prompt for secrets or accept them from standard input.
    
      VMware offers supported, powerful system administration tools.  Please
      see www.vmware.com/go/sysadmintools for details.
    
      The ESXi Shell can be disabled by an administrative user. See the
      vSphere Security documentation for more information.
      [root@xd-1541-5028d:~] esxcli network firewall ruleset set -e true -r httpClient
      [root@xd-1541-5028d:~] esxcli software profile update -p ESXi-8.0.0-20513097-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml --no-hardware-warning
      Update Result
         Message: The update completed successfully, but the system needs to be rebooted for the changes to be effective.
         Reboot Required: true
         VIBs Installed: VMW_bootbank_atlantic_1.0.3.0-10vmw.800.1.0.20513097, VMW_bootbank_bcm-mpi3_8.1.1.0.0.0-1vmw.800.1.0.20513097, VMW_bootbank_bfedac-esxio_0.1-1vmw.800.1.0.20513097, VMW_bootbank_bnxtnet_216.0.50.0-66vmw.800.1.0.20513097, VMW_bootbank_bnxtroce_216.0.58.0-27vmw.800.1.0.20513097, VMW_bootbank_brcmfcoe_12.0.1500.3-4vmw.800.1.0.20513097, VMW_bootbank_cndi-igc_1.2.9.0-1vmw.800.1.0.20513097, VMW_bootbank_dwi2c-esxio_0.1-2vmw.800.1.0.20513097, VMW_bootbank_dwi2c_0.1-2vmw.800.1.0.20513097, VMW_bootbank_elxiscsi_12.0.1200.0-10vmw.800.1.0.20513097, VMW_bootbank_elxnet_12.0.1250.0-8vmw.800.1.0.20513097, VMW_bootbank_i40en_1.11.2.5-1vmw.800.1.0.20513097, VMW_bootbank_iavmd_3.0.0.1010-5vmw.800.1.0.20513097, VMW_bootbank_icen_1.5.1.16-1vmw.800.1.0.20513097, VMW_bootbank_igbn_1.4.11.6-1vmw.800.1.0.20513097, VMW_bootbank_ionic-en-esxio_20.0.0-29vmw.800.1.0.20513097, VMW_bootbank_ionic-en_20.0.0-29vmw.800.1.0.20513097, VMW_bootbank_irdman_1.3.1.22-1vmw.800.1.0.20513097, VMW_bootbank_iser_1.1.0.2-1vmw.800.1.0.20513097, VMW_bootbank_ixgben_1.7.1.39-1vmw.800.1.0.20513097, VMW_bootbank_lpfc_14.0.635.3-14vmw.800.1.0.20513097, VMW_bootbank_lpnic_11.4.62.0-1vmw.800.1.0.20513097, VMW_bootbank_lsi-mr3_7.722.02.00-1vmw.800.1.0.20513097, VMW_bootbank_lsi-msgpt2_20.00.06.00-4vmw.800.1.0.20513097, VMW_bootbank_lsi-msgpt35_23.00.00.00-1vmw.800.1.0.20513097, VMW_bootbank_lsi-msgpt3_17.00.13.00-2vmw.800.1.0.20513097, VMW_bootbank_mlnx-bfbootctl-esxio_0.1-1vmw.800.1.0.20513097, VMW_bootbank_mnet-esxio_0.1-1vmw.800.1.0.20513097, VMW_bootbank_mtip32xx-native_3.9.8-1vmw.800.1.0.20513097, VMW_bootbank_ne1000_0.9.0-2vmw.800.1.0.20513097, VMW_bootbank_nenic_1.0.35.0-3vmw.800.1.0.20513097, VMW_bootbank_nfnic_5.0.0.35-3vmw.800.1.0.20513097, VMW_bootbank_nhpsa_70.0051.0.100-4vmw.800.1.0.20513097, VMW_bootbank_nmlx5-core-esxio_4.23.0.36-8vmw.800.1.0.20513097, VMW_bootbank_nmlx5-core_4.23.0.36-8vmw.800.1.0.20513097, VMW_bootbank_nmlx5-rdma-esxio_4.23.0.36-8vmw.800.1.0.20513097, VMW_bootbank_nmlx5-rdma_4.23.0.36-8vmw.800.1.0.20513097, VMW_bootbank_nmlxbf-gige-esxio_2.1-1vmw.800.1.0.20513097, VMW_bootbank_ntg3_4.1.8.0-4vmw.800.1.0.20513097, VMW_bootbank_nvme-pcie-esxio_1.2.4.1-1vmw.800.1.0.20513097, VMW_bootbank_nvme-pcie_1.2.4.1-1vmw.800.1.0.20513097, VMW_bootbank_nvmerdma_1.0.3.9-1vmw.800.1.0.20513097, VMW_bootbank_nvmetcp_1.0.1.2-1vmw.800.1.0.20513097, VMW_bootbank_nvmxnet3-ens-esxio_2.0.0.23-1vmw.800.1.0.20513097, VMW_bootbank_nvmxnet3-ens_2.0.0.23-1vmw.800.1.0.20513097, VMW_bootbank_nvmxnet3-esxio_2.0.0.31-1vmw.800.1.0.20513097, VMW_bootbank_nvmxnet3_2.0.0.31-1vmw.800.1.0.20513097, VMW_bootbank_penedac-esxio_0.1-1vmw.800.1.0.20513097, VMW_bootbank_pengpio-esxio_0.1-1vmw.800.1.0.20513097, VMW_bootbank_pensandoatlas_1.46.0.E.24.1.256-2vmw.800.1.0.20293628, VMW_bootbank_penspi-esxio_0.1-1vmw.800.1.0.20513097, VMW_bootbank_pvscsi-esxio_0.1-5vmw.800.1.0.20513097, VMW_bootbank_pvscsi_0.1-5vmw.800.1.0.20513097, VMW_bootbank_qcnic_1.0.15.0-22vmw.800.1.0.20513097, VMW_bootbank_qedentv_3.40.5.70-4vmw.800.1.0.20513097, VMW_bootbank_qedrntv_3.40.5.70-1vmw.800.1.0.20513097, VMW_bootbank_qfle3_1.0.67.0-30vmw.800.1.0.20513097, VMW_bootbank_qfle3f_1.0.51.0-28vmw.800.1.0.20513097, VMW_bootbank_qfle3i_1.0.15.0-20vmw.800.1.0.20513097, VMW_bootbank_qflge_1.1.0.11-1vmw.800.1.0.20513097, VMW_bootbank_rd1173-esxio_0.1-1vmw.800.1.0.20513097, VMW_bootbank_rdmahl_1.0.0-1vmw.800.1.0.20513097, VMW_bootbank_rste_2.0.2.0088-7vmw.800.1.0.20513097, VMW_bootbank_sfvmk_2.4.0.2010-13vmw.800.1.0.20513097, VMW_bootbank_smartpqi_80.4253.0.5000-2vmw.800.1.0.20513097, VMW_bootbank_spidev-esxio_0.1-1vmw.800.1.0.20513097, VMW_bootbank_vmkata_0.1-1vmw.800.1.0.20513097, VMW_bootbank_vmksdhci-esxio_1.0.2-2vmw.800.1.0.20513097, VMW_bootbank_vmksdhci_1.0.2-2vmw.800.1.0.20513097, VMW_bootbank_vmkusb-esxio_0.1-14vmw.800.1.0.20513097, VMW_bootbank_vmkusb_0.1-14vmw.800.1.0.20513097, VMW_bootbank_vmw-ahci_2.0.14-1vmw.800.1.0.20513097, VMware_bootbank_bmcal-esxio_8.0.0-1.0.20513097, VMware_bootbank_bmcal_8.0.0-1.0.20513097, VMware_bootbank_clusterstore_8.0.0-1.0.20513097, VMware_bootbank_cpu-microcode_8.0.0-1.0.20513097, VMware_bootbank_crx_8.0.0-1.0.20513097, VMware_bootbank_drivervm-gpu_8.0.0-1.0.20513097, VMware_bootbank_elx-esx-libelxima.so_12.0.1200.0-6vmw.800.1.0.20513097, VMware_bootbank_esx-base_8.0.0-1.0.20513097, VMware_bootbank_esx-dvfilter-generic-fastpath_8.0.0-1.0.20513097, VMware_bootbank_esx-ui_2.5.1-20374953, VMware_bootbank_esx-update_8.0.0-1.0.20513097, VMware_bootbank_esx-xserver_8.0.0-1.0.20513097, VMware_bootbank_esxio-base_8.0.0-1.0.20513097, VMware_bootbank_esxio-combiner-esxio_8.0.0-1.0.20513097, VMware_bootbank_esxio-combiner_8.0.0-1.0.20513097, VMware_bootbank_esxio-dvfilter-generic-fastpath_8.0.0-1.0.20513097, VMware_bootbank_esxio-update_8.0.0-1.0.20513097, VMware_bootbank_esxio_8.0.0-1.0.20513097, VMware_bootbank_gc-esxio_8.0.0-1.0.20513097, VMware_bootbank_gc_8.0.0-1.0.20513097, VMware_bootbank_loadesx_8.0.0-1.0.20513097, VMware_bootbank_loadesxio_8.0.0-1.0.20513097, VMware_bootbank_lsuv2-hpv2-hpsa-plugin_1.0.0-3vmw.800.1.0.20513097, VMware_bootbank_lsuv2-intelv2-nvme-vmd-plugin_2.7.2173-2vmw.800.1.0.20513097, VMware_bootbank_lsuv2-lsiv2-drivers-plugin_1.0.0-12vmw.800.1.0.20513097, VMware_bootbank_lsuv2-nvme-pcie-plugin_1.0.0-1vmw.800.1.0.20513097, VMware_bootbank_lsuv2-oem-dell-plugin_1.0.0-2vmw.800.1.0.20513097, VMware_bootbank_lsuv2-oem-lenovo-plugin_1.0.0-2vmw.800.1.0.20513097, VMware_bootbank_lsuv2-smartpqiv2-plugin_1.0.0-8vmw.800.1.0.20513097, VMware_bootbank_native-misc-drivers-esxio_8.0.0-1.0.20513097, VMware_bootbank_native-misc-drivers_8.0.0-1.0.20513097, VMware_bootbank_qlnativefc_5.2.46.0-3vmw.800.1.0.20513097, VMware_bootbank_trx_8.0.0-1.0.20513097, VMware_bootbank_vdfs_8.0.0-1.0.20513097, VMware_bootbank_vmware-esx-esxcli-nvme-plugin-esxio_1.2.0.52-1vmw.800.1.0.20513097, VMware_bootbank_vmware-esx-esxcli-nvme-plugin_1.2.0.52-1vmw.800.1.0.20513097, VMware_bootbank_vsan_8.0.0-1.0.20513097, VMware_bootbank_vsanhealth_8.0.0-1.0.20513097, VMware_locker_tools-light_12.0.6.20104755-20513097
         VIBs Removed: VMW_bootbank_atlantic_1.0.3.0-8vmw.703.0.20.19193900, VMW_bootbank_bnxtnet_216.0.50.0-44vmw.703.0.50.20036589, VMW_bootbank_bnxtroce_216.0.58.0-23vmw.703.0.50.20036589, VMW_bootbank_brcmfcoe_12.0.1500.2-3vmw.703.0.20.19193900, VMW_bootbank_elxiscsi_12.0.1200.0-9vmw.703.0.20.19193900, VMW_bootbank_elxnet_12.0.1250.0-5vmw.703.0.20.19193900, VMW_bootbank_i40en_1.11.1.31-1vmw.703.0.20.19193900, VMW_bootbank_iavmd_2.7.0.1157-2vmw.703.0.20.19193900, VMW_bootbank_icen_1.4.1.20-1vmw.703.0.50.20036589, VMW_bootbank_igbn_1.4.11.2-1vmw.703.0.20.19193900, VMW_bootbank_ionic-en_16.0.0-16vmw.703.0.20.19193900, VMW_bootbank_irdman_1.3.1.22-1vmw.703.0.50.20036589, VMW_bootbank_iser_1.1.0.1-1vmw.703.0.50.20036589, VMW_bootbank_ixgben_1.7.1.35-1vmw.703.0.20.19193900, VMW_bootbank_lpfc_14.0.169.26-5vmw.703.0.50.20036589, VMW_bootbank_lpnic_11.4.62.0-1vmw.703.0.20.19193900, VMW_bootbank_lsi-mr3_7.718.02.00-1vmw.703.0.20.19193900, VMW_bootbank_lsi-msgpt2_20.00.06.00-4vmw.703.0.20.19193900, VMW_bootbank_lsi-msgpt35_19.00.02.00-1vmw.703.0.20.19193900, VMW_bootbank_lsi-msgpt3_17.00.12.00-1vmw.703.0.20.19193900, VMW_bootbank_mtip32xx-native_3.9.8-1vmw.703.0.20.19193900, VMW_bootbank_ne1000_0.9.0-1vmw.703.0.50.20036589, VMW_bootbank_nenic_1.0.33.0-1vmw.703.0.20.19193900, VMW_bootbank_nfnic_4.0.0.70-1vmw.703.0.20.19193900, VMW_bootbank_nhpsa_70.0051.0.100-4vmw.703.0.20.19193900, VMW_bootbank_nmlx4-core_3.19.16.8-2vmw.703.0.20.19193900, VMW_bootbank_nmlx4-en_3.19.16.8-2vmw.703.0.20.19193900, VMW_bootbank_nmlx4-rdma_3.19.16.8-2vmw.703.0.20.19193900, VMW_bootbank_nmlx5-core_4.19.16.11-1vmw.703.0.20.19193900, VMW_bootbank_nmlx5-rdma_4.19.16.11-1vmw.703.0.20.19193900, VMW_bootbank_ntg3_4.1.7.0-0vmw.703.0.20.19193900, VMW_bootbank_nvme-pcie_1.2.3.16-1vmw.703.0.20.19193900, VMW_bootbank_nvmerdma_1.0.3.5-1vmw.703.0.20.19193900, VMW_bootbank_nvmetcp_1.0.0.1-1vmw.703.0.35.19482537, VMW_bootbank_nvmxnet3-ens_2.0.0.22-1vmw.703.0.20.19193900, VMW_bootbank_nvmxnet3_2.0.0.30-1vmw.703.0.20.19193900, VMW_bootbank_pvscsi_0.1-4vmw.703.0.20.19193900, VMW_bootbank_qcnic_1.0.15.0-14vmw.703.0.20.19193900, VMW_bootbank_qedentv_3.40.5.53-22vmw.703.0.20.19193900, VMW_bootbank_qedrntv_3.40.5.53-18vmw.703.0.20.19193900, VMW_bootbank_qfle3_1.0.67.0-22vmw.703.0.20.19193900, VMW_bootbank_qfle3f_1.0.51.0-22vmw.703.0.20.19193900, VMW_bootbank_qfle3i_1.0.15.0-15vmw.703.0.20.19193900, VMW_bootbank_qflge_1.1.0.11-1vmw.703.0.20.19193900, VMW_bootbank_rste_2.0.2.0088-7vmw.703.0.20.19193900, VMW_bootbank_sfvmk_2.4.0.2010-6vmw.703.0.20.19193900, VMW_bootbank_smartpqi_70.4149.0.5000-1vmw.703.0.20.19193900, VMW_bootbank_vmkata_0.1-1vmw.703.0.20.19193900, VMW_bootbank_vmkfcoe_1.0.0.2-1vmw.703.0.20.19193900, VMW_bootbank_vmkusb_0.1-7vmw.703.0.50.20036589, VMW_bootbank_vmw-ahci_2.0.11-1vmw.703.0.20.19193900, VMware_bootbank_bmcal_7.0.3-0.55.20328353, VMware_bootbank_cpu-microcode_7.0.3-0.55.20328353, VMware_bootbank_crx_7.0.3-0.55.20328353, VMware_bootbank_elx-esx-libelxima.so_12.0.1200.0-4vmw.703.0.20.19193900, VMware_bootbank_esx-base_7.0.3-0.55.20328353, VMware_bootbank_esx-dvfilter-generic-fastpath_7.0.3-0.55.20328353, VMware_bootbank_esx-ui_1.43.8-19798623, VMware_bootbank_esx-update_7.0.3-0.55.20328353, VMware_bootbank_esx-xserver_7.0.3-0.55.20328353, VMware_bootbank_esxio-combiner_7.0.3-0.55.20328353, VMware_bootbank_gc_7.0.3-0.55.20328353, VMware_bootbank_loadesx_7.0.3-0.55.20328353, VMware_bootbank_lsuv2-hpv2-hpsa-plugin_1.0.0-3vmw.703.0.20.19193900, VMware_bootbank_lsuv2-intelv2-nvme-vmd-plugin_2.7.2173-1vmw.703.0.20.19193900, VMware_bootbank_lsuv2-lsiv2-drivers-plugin_1.0.0-12vmw.703.0.50.20036589, VMware_bootbank_lsuv2-nvme-pcie-plugin_1.0.0-1vmw.703.0.20.19193900, VMware_bootbank_lsuv2-oem-dell-plugin_1.0.0-1vmw.703.0.20.19193900, VMware_bootbank_lsuv2-oem-hp-plugin_1.0.0-1vmw.703.0.20.19193900, VMware_bootbank_lsuv2-oem-lenovo-plugin_1.0.0-1vmw.703.0.20.19193900, VMware_bootbank_lsuv2-smartpqiv2-plugin_1.0.0-8vmw.703.0.20.19193900, VMware_bootbank_native-misc-drivers_7.0.3-0.55.20328353, VMware_bootbank_qlnativefc_4.1.14.0-26vmw.703.0.20.19193900, VMware_bootbank_trx_7.0.3-0.55.20328353, VMware_bootbank_vdfs_7.0.3-0.55.20328353, VMware_bootbank_vmware-esx-esxcli-nvme-plugin_1.2.0.44-1vmw.703.0.20.19193900, VMware_bootbank_vsan_7.0.3-0.55.20328353, VMware_bootbank_vsanhealth_7.0.3-0.55.20328353, VMware_locker_tools-light_12.0.0.19345655-20036586
         VIBs Skipped:
      [root@xd-1541-5028d:~] esxcli network firewall ruleset set -e false -r httpClient
      [root@xd-1541-5028d:~] reboot

    Version: 8.0.0 (Build 20513097)
    to:
    Version: 8.0.0a (Build 20842819)

    ESXi-8.0a
      login as: root
      Using keyboard-interactive authentication.
      Password:
      The time and date of this login have been sent to the system logs.
    
      WARNING:
         All commands run on the ESXi shell are logged and may be included in
         support bundles. Do not provide passwords directly on the command line.
         Most tools can prompt for secrets or accept them from standard input.
    
      VMware offers supported, powerful system administration tools.  Please
      see www.vmware.com/go/sysadmintools for details.
    
      The ESXi Shell can be disabled by an administrative user. See the
      vSphere Security documentation for more information.
      [root@xd-1541-5028d:~] esxcli network firewall ruleset set -e true -r httpClient
      [root@xd-1541-5028d:~] esxcli software profile update -p ESXi-8.0a-20842819-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml --no-hardware-warning
      Update Result
         Message: The update completed successfully, but the system needs to be rebooted for the changes to be effective.
         Reboot Required: true
         VIBs Installed: VMware_bootbank_bmcal-esxio_8.0.0-1.10.20842819, VMware_bootbank_bmcal_8.0.0-1.10.20842819, VMware_bootbank_clusterstore_8.0.0-1.10.20842819, VMware_bootbank_cpu-microcode_crx_8.0.0-1.10.20842819, VMware_bootbank_drivervm-gpu_8.0.0-1.10.20842819, VMware_bootbank_esx-base_8.0.0-1.10.20842819, VMware_bootbank_esx-dvfilter-generic-fastpath_8.0.0-1.10.20842819, V20842819, VMware_bootbank_esx-xserver_8.0.0-1.10.20842819, VMware_bootbank_esxio-base_8.0.0-1.10.20842819, VMware_bootbank_esxio-combiner-esxio_8.0.0-1.10.20842819, VMware_bootbank_esxio-comtbank_esxio-dvfilter-generic-fastpath_8.0.0-1.10.20842819, VMware_bootbank_esxio-update_8.0.0-1.10.20842819, VMware_bootbank_esxio_8.0.0-1.10.20842819, VMware_bootbank_gc-esxio_8.0.0-1.10.20.20842819, VMware_bootbank_loadesx_8.0.0-1.10.20842819, VMware_bootbank_loadesxio_8.0.0-1.10.20842819, VMware_bootbank_native-misc-drivers-esxio_8.0.0-1.10.20842819, VMware_bootbank_native-mre_bootbank_trx_8.0.0-1.10.20842819, VMware_bootbank_vdfs_8.0.0-1.10.20842819, VMware_bootbank_vsan_8.0.0-1.10.20842819, VMware_bootbank_vsanhealth_8.0.0-1.10.20842819
         VIBs Removed: VMware_bootbank_bmcal-esxio_8.0.0-1.0.20513097, VMware_bootbank_bmcal_8.0.0-1.0.20513097, VMware_bootbank_clusterstore_8.0.0-1.0.20513097, VMware_bootbank_cpu-microcode_8.0..0.0-1.0.20513097, VMware_bootbank_drivervm-gpu_8.0.0-1.0.20513097, VMware_bootbank_esx-base_8.0.0-1.0.20513097, VMware_bootbank_esx-dvfilter-generic-fastpath_8.0.0-1.0.20513097, VMware_bootMware_bootbank_esx-xserver_8.0.0-1.0.20513097, VMware_bootbank_esxio-base_8.0.0-1.0.20513097, VMware_bootbank_esxio-combiner-esxio_8.0.0-1.0.20513097, VMware_bootbank_esxio-combiner_8.0.0-1.ilter-generic-fastpath_8.0.0-1.0.20513097, VMware_bootbank_esxio-update_8.0.0-1.0.20513097, VMware_bootbank_esxio_8.0.0-1.0.20513097, VMware_bootbank_gc-esxio_8.0.0-1.0.20513097, VMware_boototbank_loadesx_8.0.0-1.0.20513097, VMware_bootbank_loadesxio_8.0.0-1.0.20513097, VMware_bootbank_native-misc-drivers-esxio_8.0.0-1.0.20513097, VMware_bootbank_native-misc-drivers_8.0.0-1.0.20.20513097, VMware_bootbank_vdfs_8.0.0-1.0.20513097, VMware_bootbank_vsan_8.0.0-1.0.20513097, VMware_bootbank_vsanhealth_8.0.0-1.0.20513097
         VIBs Skipped: VMW_bootbank_atlantic_1.0.3.0-10vmw.800.1.0.20513097, VMW_bootbank_bcm-mpi3_8.1.1.0.0.0-1vmw.800.1.0.20513097, VMW_bootbank_bfedac-esxio_0.1-1vmw.800.1.0.20513097, VMW_bootb20513097, VMW_bootbank_bnxtroce_216.0.58.0-27vmw.800.1.0.20513097, VMW_bootbank_brcmfcoe_12.0.1500.3-4vmw.800.1.0.20513097, VMW_bootbank_cndi-igc_1.2.9.0-1vmw.800.1.0.20513097, VMW_bootbank_, VMW_bootbank_dwi2c_0.1-2vmw.800.1.0.20513097, VMW_bootbank_elxiscsi_12.0.1200.0-10vmw.800.1.0.20513097, VMW_bootbank_elxnet_12.0.1250.0-8vmw.800.1.0.20513097, VMW_bootbank_i40en_1.11.2.5-1vmd_3.0.0.1010-5vmw.800.1.0.20513097, VMW_bootbank_icen_1.5.1.16-1vmw.800.1.0.20513097, VMW_bootbank_igbn_1.4.11.6-1vmw.800.1.0.20513097, VMW_bootbank_ionic-en-esxio_20.0.0-29vmw.800.1.0.2059vmw.800.1.0.20513097, VMW_bootbank_irdman_1.3.1.22-1vmw.800.1.0.20513097, VMW_bootbank_iser_1.1.0.2-1vmw.800.1.0.20513097, VMW_bootbank_ixgben_1.7.1.39-1vmw.800.1.0.20513097, VMW_bootbank_l, VMW_bootbank_lpnic_11.4.62.0-1vmw.800.1.0.20513097, VMW_bootbank_lsi-mr3_7.722.02.00-1vmw.800.1.0.20513097, VMW_bootbank_lsi-msgpt2_20.00.06.00-4vmw.800.1.0.20513097, VMW_bootbank_lsi-msgp, VMW_bootbank_lsi-msgpt3_17.00.13.00-2vmw.800.1.0.20513097, VMW_bootbank_mlnx-bfbootctl-esxio_0.1-1vmw.800.1.0.20513097, VMW_bootbank_mnet-esxio_0.1-1vmw.800.1.0.20513097, VMW_bootbank_mtip97, VMW_bootbank_ne1000_0.9.0-2vmw.800.1.0.20513097, VMW_bootbank_nenic_1.0.35.0-3vmw.800.1.0.20513097, VMW_bootbank_nfnic_5.0.0.35-3vmw.800.1.0.20513097, VMW_bootbank_nhpsa_70.0051.0.100-4vx5-core-esxio_4.23.0.36-8vmw.800.1.0.20513097, VMW_bootbank_nmlx5-core_4.23.0.36-8vmw.800.1.0.20513097, VMW_bootbank_nmlx5-rdma-esxio_4.23.0.36-8vmw.800.1.0.20513097, VMW_bootbank_nmlx5-rdma_bootbank_nmlxbf-gige-esxio_2.1-1vmw.800.1.0.20513097, VMW_bootbank_ntg3_4.1.8.0-4vmw.800.1.0.20513097, VMW_bootbank_nvme-pcie-esxio_1.2.4.1-1vmw.800.1.0.20513097, VMW_bootbank_nvme-pcie_1.2ank_nvmerdma_1.0.3.9-1vmw.800.1.0.20513097, VMW_bootbank_nvmetcp_1.0.1.2-1vmw.800.1.0.20513097, VMW_bootbank_nvmxnet3-ens-esxio_2.0.0.23-1vmw.800.1.0.20513097, VMW_bootbank_nvmxnet3-ens_2.0.ank_nvmxnet3-esxio_2.0.0.31-1vmw.800.1.0.20513097, VMW_bootbank_nvmxnet3_2.0.0.31-1vmw.800.1.0.20513097, VMW_bootbank_penedac-esxio_0.1-1vmw.800.1.0.20513097, VMW_bootbank_pengpio-esxio_0.1-ensandoatlas_1.46.0.E.24.1.256-2vmw.800.1.0.20293628, VMW_bootbank_penspi-esxio_0.1-1vmw.800.1.0.20513097, VMW_bootbank_pvscsi-esxio_0.1-5vmw.800.1.0.20513097, VMW_bootbank_pvscsi_0.1-5vmw.8.0.15.0-22vmw.800.1.0.20513097, VMW_bootbank_qedentv_3.40.5.70-4vmw.800.1.0.20513097, VMW_bootbank_qedrntv_3.40.5.70-1vmw.800.1.0.20513097, VMW_bootbank_qfle3_1.0.67.0-30vmw.800.1.0.20513097800.1.0.20513097, VMW_bootbank_qfle3i_1.0.15.0-20vmw.800.1.0.20513097, VMW_bootbank_qflge_1.1.0.11-1vmw.800.1.0.20513097, VMW_bootbank_rd1173-esxio_0.1-1vmw.800.1.0.20513097, VMW_bootbank_rd_bootbank_rste_2.0.2.0088-7vmw.800.1.0.20513097, VMW_bootbank_sfvmk_2.4.0.2010-13vmw.800.1.0.20513097, VMW_bootbank_smartpqi_80.4253.0.5000-2vmw.800.1.0.20513097, VMW_bootbank_spidev-esxio_0k_vmkata_0.1-1vmw.800.1.0.20513097, VMW_bootbank_vmksdhci-esxio_1.0.2-2vmw.800.1.0.20513097, VMW_bootbank_vmksdhci_1.0.2-2vmw.800.1.0.20513097, VMW_bootbank_vmkusb-esxio_0.1-14vmw.800.1.0.20.800.1.0.20513097, VMW_bootbank_vmw-ahci_2.0.14-1vmw.800.1.0.20513097, VMware_bootbank_elx-esx-libelxima.so_12.0.1200.0-6vmw.800.1.0.20513097, VMware_bootbank_esx-ui_2.5.1-20374953, VMware_b3vmw.800.1.0.20513097, VMware_bootbank_lsuv2-intelv2-nvme-vmd-plugin_2.7.2173-2vmw.800.1.0.20513097, VMware_bootbank_lsuv2-lsiv2-drivers-plugin_1.0.0-12vmw.800.1.0.20513097, VMware_bootbank_.1.0.20513097, VMware_bootbank_lsuv2-oem-dell-plugin_1.0.0-2vmw.800.1.0.20513097, VMware_bootbank_lsuv2-oem-lenovo-plugin_1.0.0-2vmw.800.1.0.20513097, VMware_bootbank_lsuv2-smartpqiv2-pluginbootbank_qlnativefc_5.2.46.0-3vmw.800.1.0.20513097, VMware_bootbank_vmware-esx-esxcli-nvme-plugin-esxio_1.2.0.52-1vmw.800.1.0.20513097, VMware_bootbank_vmware-esx-esxcli-nvme-plugin_1.2.0.52_tools-light_12.0.6.20104755-20513097
      [root@xd-1541-5028d:~] esxcli network firewall ruleset set -e false -r httpClient
      [root@xd-1541-5028d:~] reboot

    Version: 8.0.0a (Build 20328353)
    to:
    Version: 8.0.0b (Build 21203435)

    ESXi-8.0b
      login as: root
      Using keyboard-interactive authentication.
      Password:
      The time and date of this login have been sent to the system logs.
    
      WARNING:
         All commands run on the ESXi shell are logged and may be included in
         support bundles. Do not provide passwords directly on the command line.
         Most tools can prompt for secrets or accept them from standard input.
    
      VMware offers supported, powerful system administration tools.  Please
      see www.vmware.com/go/sysadmintools for details.
    
      The ESXi Shell can be disabled by an administrative user. See the
      vSphere Security documentation for more information.
      [root@xd-1541-5028d:~] esxcli network firewall ruleset set -e true -r httpClient
      [root@xd-1541-5028d:~] esxcli software profile update -p ESXi-8.0b-21203435-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml --no-hardware-warning
      Update Result
         Message: The update completed successfully, but the system needs to be rebooted for the changes to be effective.
         Reboot Required: true
         VIBs Installed: VMW_bootbank_dwi2c-esxio_0.1-7vmw.800.1.20.21203435, VMW_bootbank_dwi2c_0.1-7vmw.800.1.20.21203435, VMW_bootbank_i40en_1.11.2.6-1vmw.800.1.20.21203435, VMW_bootbank_ionic-en-esxio_20.0.0-30vmw.800.1.20.21203435, VMW_bootbank_ionic-en_20.0.0-30vmw.800.1.20.21203435, VMW_bootbank_lpfc_14.0.635.4-14vmw.800.1.20.21203435, VMW_bootbank_nmlx5-core-esxio_4.23.0.36-10.2vmw.800.1.20.21203435, VMW_bootbank_nmlx5-core_4.23.0.36-10.2vmw.800.1.20.21203435, VMW_bootbank_nmlx5-rdma-esxio_4.23.0.36-10.2vmw.800.1.20.21203435, VMW_bootbank_nmlx5-rdma_4.23.0.36-10.2vmw.800.1.20.21203435, VMware_bootbank_bmcal-esxio_8.0.0-1.20.21203435, VMware_bootbank_bmcal_8.0.0-1.20.21203435, VMware_bootbank_clusterstore_8.0.0-1.20.21203435, VMware_bootbank_cpu-microcode_8.0.0-1.20.21203435, VMware_bootbank_crx_8.0.0-1.20.21203435, VMware_bootbank_drivervm-gpu_8.0.0-1.20.21203435, VMware_bootbank_esx-base_8.0.0-1.20.21203435, VMware_bootbank_esx-dvfilter-generic-fastpath_8.0.0-1.20.21203435, VMware_bootbank_esx-ui_2.10.1-20925449, VMware_bootbank_esx-update_8.0.0-1.20.21203435, VMware_bootbank_esx-xserver_8.0.0-1.20.21203435, VMware_bootbank_esxio-base_8.0.0-1.20.21203435, VMware_bootbank_esxio-combiner-esxio_8.0.0-1.20.21203435, VMware_bootbank_esxio-combiner_8.0.0-1.20.21203435, VMware_bootbank_esxio-dvfilter-generic-fastpath_8.0.0-1.20.21203435, VMware_bootbank_esxio-update_8.0.0-1.20.21203435, VMware_bootbank_esxio_8.0.0-1.20.21203435, VMware_bootbank_gc-esxio_8.0.0-1.20.21203435, VMware_bootbank_gc_8.0.0-1.20.21203435, VMware_bootbank_loadesx_8.0.0-1.20.21203435, VMware_bootbank_loadesxio_8.0.0-1.20.21203435, VMware_bootbank_native-misc-drivers-esxio_8.0.0-1.20.21203435, VMware_bootbank_native-misc-drivers_8.0.0-1.20.21203435, VMware_bootbank_trx_8.0.0-1.20.21203435, VMware_bootbank_vdfs_8.0.0-1.20.21203435, VMware_bootbank_vsan_8.0.0-1.20.21203435, VMware_bootbank_vsanhealth_8.0.0-1.20.21203435, VMware_locker_tools-light_12.1.5.20735119-21203431
         VIBs Removed: VMW_bootbank_dwi2c-esxio_0.1-2vmw.800.1.0.20513097, VMW_bootbank_dwi2c_0.1-2vmw.800.1.0.20513097, VMW_bootbank_i40en_1.11.2.5-1vmw.800.1.0.20513097, VMW_bootbank_ionic-en-esxio_20.0.0-29vmw.800.1.0.20513097, VMW_bootbank_ionic-en_20.0.0-29vmw.800.1.0.20513097, VMW_bootbank_lpfc_14.0.635.3-14vmw.800.1.0.20513097, VMW_bootbank_nmlx5-core-esxio_4.23.0.36-8vmw.800.1.0.20513097, VMW_bootbank_nmlx5-core_4.23.0.36-8vmw.800.1.0.20513097, VMW_bootbank_nmlx5-rdma-esxio_4.23.0.36-8vmw.800.1.0.20513097, VMW_bootbank_nmlx5-rdma_4.23.0.36-8vmw.800.1.0.20513097, VMware_bootbank_bmcal-esxio_8.0.0-1.10.20842819, VMware_bootbank_bmcal_8.0.0-1.10.20842819, VMware_bootbank_clusterstore_8.0.0-1.10.20842819, VMware_bootbank_cpu-microcode_8.0.0-1.10.20842819, VMware_bootbank_crx_8.0.0-1.10.20842819, VMware_bootbank_drivervm-gpu_8.0.0-1.10.20842819, VMware_bootbank_esx-base_8.0.0-1.10.20842819, VMware_bootbank_esx-dvfilter-generic-fastpath_8.0.0-1.10.20842819, VMware_bootbank_esx-ui_2.5.1-20374953, VMware_bootbank_esx-update_8.0.0-1.10.20842819, VMware_bootbank_esx-xserver_8.0.0-1.10.20842819, VMware_bootbank_esxio-base_8.0.0-1.10.20842819, VMware_bootbank_esxio-combiner-esxio_8.0.0-1.10.20842819, VMware_bootbank_esxio-combiner_8.0.0-1.10.20842819, VMware_bootbank_esxio-dvfilter-generic-fastpath_8.0.0-1.10.20842819, VMware_bootbank_esxio-update_8.0.0-1.10.20842819, VMware_bootbank_esxio_8.0.0-1.10.20842819, VMware_bootbank_gc-esxio_8.0.0-1.10.20842819, VMware_bootbank_gc_8.0.0-1.10.20842819, VMware_bootbank_loadesx_8.0.0-1.10.20842819, VMware_bootbank_loadesxio_8.0.0-1.10.20842819, VMware_bootbank_native-misc-drivers-esxio_8.0.0-1.10.20842819, VMware_bootbank_native-misc-drivers_8.0.0-1.10.20842819, VMware_bootbank_trx_8.0.0-1.10.20842819, VMware_bootbank_vdfs_8.0.0-1.10.20842819, VMware_bootbank_vsan_8.0.0-1.10.20842819, VMware_bootbank_vsanhealth_8.0.0-1.10.20842819, VMware_locker_tools-light_12.0.6.20104755-20513097
         VIBs Skipped: VMW_bootbank_atlantic_1.0.3.0-10vmw.800.1.0.20513097, VMW_bootbank_bcm-mpi3_8.1.1.0.0.0-1vmw.800.1.0.20513097, VMW_bootbank_bfedac-esxio_0.1-1vmw.800.1.0.20513097, VMW_bootbank_bnxtnet_216.0.50.0-66vmw.800.1.0.20513097, VMW_bootbank_bnxtroce_216.0.58.0-27vmw.800.1.0.20513097, VMW_bootbank_brcmfcoe_12.0.1500.3-4vmw.800.1.0.20513097, VMW_bootbank_cndi-igc_1.2.9.0-1vmw.800.1.0.20513097, VMW_bootbank_elxiscsi_12.0.1200.0-10vmw.800.1.0.20513097, VMW_bootbank_elxnet_12.0.1250.0-8vmw.800.1.0.20513097, VMW_bootbank_iavmd_3.0.0.1010-5vmw.800.1.0.20513097, VMW_bootbank_icen_1.5.1.16-1vmw.800.1.0.20513097, VMW_bootbank_igbn_1.4.11.6-1vmw.800.1.0.20513097, VMW_bootbank_irdman_1.3.1.22-1vmw.800.1.0.20513097, VMW_bootbank_iser_1.1.0.2-1vmw.800.1.0.20513097, VMW_bootbank_ixgben_1.7.1.39-1vmw.800.1.0.20513097, VMW_bootbank_lpnic_11.4.62.0-1vmw.800.1.0.20513097, VMW_bootbank_lsi-mr3_7.722.02.00-1vmw.800.1.0.20513097, VMW_bootbank_lsi-msgpt2_20.00.06.00-4vmw.800.1.0.20513097, VMW_bootbank_lsi-msgpt35_23.00.00.00-1vmw.800.1.0.20513097, VMW_bootbank_lsi-msgpt3_17.00.13.00-2vmw.800.1.0.20513097, VMW_bootbank_mlnx-bfbootctl-esxio_0.1-1vmw.800.1.0.20513097, VMW_bootbank_mnet-esxio_0.1-1vmw.800.1.0.20513097, VMW_bootbank_mtip32xx-native_3.9.8-1vmw.800.1.0.20513097, VMW_bootbank_ne1000_0.9.0-2vmw.800.1.0.20513097, VMW_bootbank_nenic_1.0.35.0-3vmw.800.1.0.20513097, VMW_bootbank_nfnic_5.0.0.35-3vmw.800.1.0.20513097, VMW_bootbank_nhpsa_70.0051.0.100-4vmw.800.1.0.20513097, VMW_bootbank_nmlxbf-gige-esxio_2.1-1vmw.800.1.0.20513097, VMW_bootbank_ntg3_4.1.8.0-4vmw.800.1.0.20513097, VMW_bootbank_nvme-pcie-esxio_1.2.4.1-1vmw.800.1.0.20513097, VMW_bootbank_nvme-pcie_1.2.4.1-1vmw.800.1.0.20513097, VMW_bootbank_nvmerdma_1.0.3.9-1vmw.800.1.0.20513097, VMW_bootbank_nvmetcp_1.0.1.2-1vmw.800.1.0.20513097, VMW_bootbank_nvmxnet3-ens-esxio_2.0.0.23-1vmw.800.1.0.20513097, VMW_bootbank_nvmxnet3-ens_2.0.0.23-1vmw.800.1.0.20513097, VMW_bootbank_nvmxnet3-esxio_2.0.0.31-1vmw.800.1.0.20513097, VMW_bootbank_nvmxnet3_2.0.0.31-1vmw.800.1.0.20513097, VMW_bootbank_penedac-esxio_0.1-1vmw.800.1.0.20513097, VMW_bootbank_pengpio-esxio_0.1-1vmw.800.1.0.20513097, VMW_bootbank_pensandoatlas_1.46.0.E.24.1.256-2vmw.800.1.0.20293628, VMW_bootbank_penspi-esxio_0.1-1vmw.800.1.0.20513097, VMW_bootbank_pvscsi-esxio_0.1-5vmw.800.1.0.20513097, VMW_bootbank_pvscsi_0.1-5vmw.800.1.0.20513097, VMW_bootbank_qcnic_1.0.15.0-22vmw.800.1.0.20513097, VMW_bootbank_qedentv_3.40.5.70-4vmw.800.1.0.20513097, VMW_bootbank_qedrntv_3.40.5.70-1vmw.800.1.0.20513097, VMW_bootbank_qfle3_1.0.67.0-30vmw.800.1.0.20513097, VMW_bootbank_qfle3f_1.0.51.0-28vmw.800.1.0.20513097, VMW_bootbank_qfle3i_1.0.15.0-20vmw.800.1.0.20513097, VMW_bootbank_qflge_1.1.0.11-1vmw.800.1.0.20513097, VMW_bootbank_rd1173-esxio_0.1-1vmw.800.1.0.20513097, VMW_bootbank_rdmahl_1.0.0-1vmw.800.1.0.20513097, VMW_bootbank_rste_2.0.2.0088-7vmw.800.1.0.20513097, VMW_bootbank_sfvmk_2.4.0.2010-13vmw.800.1.0.20513097, VMW_bootbank_smartpqi_80.4253.0.5000-2vmw.800.1.0.20513097, VMW_bootbank_spidev-esxio_0.1-1vmw.800.1.0.20513097, VMW_bootbank_vmkata_0.1-1vmw.800.1.0.20513097, VMW_bootbank_vmksdhci-esxio_1.0.2-2vmw.800.1.0.20513097, VMW_bootbank_vmksdhci_1.0.2-2vmw.800.1.0.20513097, VMW_bootbank_vmkusb-esxio_0.1-14vmw.800.1.0.20513097, VMW_bootbank_vmkusb_0.1-14vmw.800.1.0.20513097, VMW_bootbank_vmw-ahci_2.0.14-1vmw.800.1.0.20513097, VMware_bootbank_elx-esx-libelxima.so_12.0.1200.0-6vmw.800.1.0.20513097, VMware_bootbank_lsuv2-hpv2-hpsa-plugin_1.0.0-3vmw.800.1.0.20513097, VMware_bootbank_lsuv2-intelv2-nvme-vmd-plugin_2.7.2173-2vmw.800.1.0.20513097, VMware_bootbank_lsuv2-lsiv2-drivers-plugin_1.0.0-12vmw.800.1.0.20513097, VMware_bootbank_lsuv2-nvme-pcie-plugin_1.0.0-1vmw.800.1.0.20513097, VMware_bootbank_lsuv2-oem-dell-plugin_1.0.0-2vmw.800.1.0.20513097, VMware_bootbank_lsuv2-oem-lenovo-plugin_1.0.0-2vmw.800.1.0.20513097, VMware_bootbank_lsuv2-smartpqiv2-plugin_1.0.0-8vmw.800.1.0.20513097, VMware_bootbank_qlnativefc_5.2.46.0-3vmw.800.1.0.20513097, VMware_bootbank_vmware-esx-esxcli-nvme-plugin-esxio_1.2.0.52-1vmw.800.1.0.20513097, VMware_bootbank_vmware-esx-esxcli-nvme-plugin_1.2.0.52-1vmw.800.1.0.20513097
      [root@xd-1541-5028d:~] esxcli network firewall ruleset set -e false -r httpClient
      [root@xd-1541-5028d:~] reboot

    Version: 8.0.0b (Build 21203435)
    to:
    Version: 8.0.0c (Build 21493926)

    ESXi-8.0c
      login as: root
      Using keyboard-interactive authentication.
      Password:
      The time and date of this login have been sent to the system logs.
    
      WARNING:
         All commands run on the ESXi shell are logged and may be included in
         support bundles. Do not provide passwords directly on the command line.
         Most tools can prompt for secrets or accept them from standard input.
    
      VMware offers supported, powerful system administration tools.  Please
      see www.vmware.com/go/sysadmintools for details.
    
      The ESXi Shell can be disabled by an administrative user. See the
      vSphere Security documentation for more information.
      [root@xd-1541-5028d:~] esxcli network firewall ruleset set -e true -r httpClient
      [root@xd-1541-5028d:~] esxcli software profile update -p ESXi-8.0c-21493926-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml --no-hardware-warning
      Update Result
         Message: The update completed successfully, but the system needs to be rebooted for the changes to be effective.
         Reboot Required: true
         VIBs Installed: VMware_bootbank_bmcal-esxio_8.0.0-1.25.21493926, VMware_bootbank_bmcal_8.0.0-1.25.21493926, VMware_bootbank_clusterstore_8.0.0-1.25.21493926, VMware_bootbank_cpu-microcode, VMware_bootbank_crx_8.0.0-1.25.21493926, VMware_bootbank_drivervm-gpu_8.0.0-1.25.21493926, VMware_bootbank_esx-base_8.0.0-1.25.21493926, VMware_bootbank_esx-dvfilter-generic-fastpath_8.0.0re_bootbank_esx-update_8.0.0-1.25.21493926, VMware_bootbank_esx-xserver_8.0.0-1.25.21493926, VMware_bootbank_esxio-base_8.0.0-1.25.21493926, VMware_bootbank_esxio-combiner-esxio_8.0.0-1.25.2bank_esxio-combiner_8.0.0-1.25.21493926, VMware_bootbank_esxio-dvfilter-generic-fastpath_8.0.0-1.25.21493926, VMware_bootbank_esxio-update_8.0.0-1.25.21493926, VMware_bootbank_esxio_8.0.0-1.bootbank_gc-esxio_8.0.0-1.25.21493926, VMware_bootbank_gc_8.0.0-1.25.21493926, VMware_bootbank_loadesx_8.0.0-1.25.21493926, VMware_bootbank_loadesxio_8.0.0-1.25.21493926, VMware_bootbank_natio_8.0.0-1.25.21493926, VMware_bootbank_native-misc-drivers_8.0.0-1.25.21493926, VMware_bootbank_trx_8.0.0-1.25.21493926, VMware_bootbank_vdfs_8.0.0-1.25.21493926, VMware_bootbank_vsan_8.0.0re_bootbank_vsanhealth_8.0.0-1.25.21493926
         VIBs Removed: VMware_bootbank_bmcal-esxio_8.0.0-1.20.21203435, VMware_bootbank_bmcal_8.0.0-1.20.21203435, VMware_bootbank_clusterstore_8.0.0-1.20.21203435, VMware_bootbank_cpu-microcode_8VMware_bootbank_crx_8.0.0-1.20.21203435, VMware_bootbank_drivervm-gpu_8.0.0-1.20.21203435, VMware_bootbank_esx-base_8.0.0-1.20.21203435, VMware_bootbank_esx-dvfilter-generic-fastpath_8.0.0-1_bootbank_esx-update_8.0.0-1.20.21203435, VMware_bootbank_esx-xserver_8.0.0-1.20.21203435, VMware_bootbank_esxio-base_8.0.0-1.20.21203435, VMware_bootbank_esxio-combiner-esxio_8.0.0-1.20.212nk_esxio-combiner_8.0.0-1.20.21203435, VMware_bootbank_esxio-dvfilter-generic-fastpath_8.0.0-1.20.21203435, VMware_bootbank_esxio-update_8.0.0-1.20.21203435, VMware_bootbank_esxio_8.0.0-1.20otbank_gc-esxio_8.0.0-1.20.21203435, VMware_bootbank_gc_8.0.0-1.20.21203435, VMware_bootbank_loadesx_8.0.0-1.20.21203435, VMware_bootbank_loadesxio_8.0.0-1.20.21203435, VMware_bootbank_nativ_8.0.0-1.20.21203435, VMware_bootbank_native-misc-drivers_8.0.0-1.20.21203435, VMware_bootbank_trx_8.0.0-1.20.21203435, VMware_bootbank_vdfs_8.0.0-1.20.21203435, VMware_bootbank_vsan_8.0.0-1_bootbank_vsanhealth_8.0.0-1.20.21203435
         VIBs Skipped: VMW_bootbank_atlantic_1.0.3.0-10vmw.800.1.0.20513097, VMW_bootbank_bcm-mpi3_8.1.1.0.0.0-1vmw.800.1.0.20513097, VMW_bootbank_bfedac-esxio_0.1-1vmw.800.1.0.20513097, VMW_bootb.0-66vmw.800.1.0.20513097, VMW_bootbank_bnxtroce_216.0.58.0-27vmw.800.1.0.20513097, VMW_bootbank_brcmfcoe_12.0.1500.3-4vmw.800.1.0.20513097, VMW_bootbank_cndi-igc_1.2.9.0-1vmw.800.1.0.2051302c-esxio_0.1-7vmw.800.1.20.21203435, VMW_bootbank_dwi2c_0.1-7vmw.800.1.20.21203435, VMW_bootbank_elxiscsi_12.0.1200.0-10vmw.800.1.0.20513097, VMW_bootbank_elxnet_12.0.1250.0-8vmw.800.1.0.205i40en_1.11.2.6-1vmw.800.1.20.21203435, VMW_bootbank_iavmd_3.0.0.1010-5vmw.800.1.0.20513097, VMW_bootbank_icen_1.5.1.16-1vmw.800.1.0.20513097, VMW_bootbank_igbn_1.4.11.6-1vmw.800.1.0.20513097-en-esxio_20.0.0-30vmw.800.1.20.21203435, VMW_bootbank_ionic-en_20.0.0-30vmw.800.1.20.21203435, VMW_bootbank_irdman_1.3.1.22-1vmw.800.1.0.20513097, VMW_bootbank_iser_1.1.0.2-1vmw.800.1.0.205ixgben_1.7.1.39-1vmw.800.1.0.20513097, VMW_bootbank_lpfc_14.0.635.4-14vmw.800.1.20.21203435, VMW_bootbank_lpnic_11.4.62.0-1vmw.800.1.0.20513097, VMW_bootbank_lsi-mr3_7.722.02.00-1vmw.800.1.0ank_lsi-msgpt2_20.00.06.00-4vmw.800.1.0.20513097, VMW_bootbank_lsi-msgpt35_23.00.00.00-1vmw.800.1.0.20513097, VMW_bootbank_lsi-msgpt3_17.00.13.00-2vmw.800.1.0.20513097, VMW_bootbank_mlnx-bfbw.800.1.0.20513097, VMW_bootbank_mnet-esxio_0.1-1vmw.800.1.0.20513097, VMW_bootbank_mtip32xx-native_3.9.8-1vmw.800.1.0.20513097, VMW_bootbank_ne1000_0.9.0-2vmw.800.1.0.20513097, VMW_bootbank.800.1.0.20513097, VMW_bootbank_nfnic_5.0.0.35-3vmw.800.1.0.20513097, VMW_bootbank_nhpsa_70.0051.0.100-4vmw.800.1.0.20513097, VMW_bootbank_nmlx5-core-esxio_4.23.0.36-10.2vmw.800.1.20.21203435-core_4.23.0.36-10.2vmw.800.1.20.21203435, VMW_bootbank_nmlx5-rdma-esxio_4.23.0.36-10.2vmw.800.1.20.21203435, VMW_bootbank_nmlx5-rdma_4.23.0.36-10.2vmw.800.1.20.21203435, VMW_bootbank_nmlxbw.800.1.0.20513097, VMW_bootbank_ntg3_4.1.8.0-4vmw.800.1.0.20513097, VMW_bootbank_nvme-pcie-esxio_1.2.4.1-1vmw.800.1.0.20513097, VMW_bootbank_nvme-pcie_1.2.4.1-1vmw.800.1.0.20513097, VMW_boo.9-1vmw.800.1.0.20513097, VMW_bootbank_nvmetcp_1.0.1.2-1vmw.800.1.0.20513097, VMW_bootbank_nvmxnet3-ens-esxio_2.0.0.23-1vmw.800.1.0.20513097, VMW_bootbank_nvmxnet3-ens_2.0.0.23-1vmw.800.1.0.nk_nvmxnet3-esxio_2.0.0.31-1vmw.800.1.0.20513097, VMW_bootbank_nvmxnet3_2.0.0.31-1vmw.800.1.0.20513097, VMW_bootbank_penedac-esxio_0.1-1vmw.800.1.0.20513097, VMW_bootbank_pengpio-esxio_0.1-1, VMW_bootbank_pensandoatlas_1.46.0.E.24.1.256-2vmw.800.1.0.20293628, VMW_bootbank_penspi-esxio_0.1-1vmw.800.1.0.20513097, VMW_bootbank_pvscsi-esxio_0.1-5vmw.800.1.0.20513097, VMW_bootbank_p.0.20513097, VMW_bootbank_qcnic_1.0.15.0-22vmw.800.1.0.20513097, VMW_bootbank_qedentv_3.40.5.70-4vmw.800.1.0.20513097, VMW_bootbank_qedrntv_3.40.5.70-1vmw.800.1.0.20513097, VMW_bootbank_qfle.1.0.20513097, VMW_bootbank_qfle3f_1.0.51.0-28vmw.800.1.0.20513097, VMW_bootbank_qfle3i_1.0.15.0-20vmw.800.1.0.20513097, VMW_bootbank_qflge_1.1.0.11-1vmw.800.1.0.20513097, VMW_bootbank_rd117.1.0.20513097, VMW_bootbank_rdmahl_1.0.0-1vmw.800.1.0.20513097, VMW_bootbank_rste_2.0.2.0088-7vmw.800.1.0.20513097, VMW_bootbank_sfvmk_2.4.0.2010-13vmw.800.1.0.20513097, VMW_bootbank_smartpqw.800.1.0.20513097, VMW_bootbank_spidev-esxio_0.1-1vmw.800.1.0.20513097, VMW_bootbank_vmkata_0.1-1vmw.800.1.0.20513097, VMW_bootbank_vmksdhci-esxio_1.0.2-2vmw.800.1.0.20513097, VMW_bootbank_800.1.0.20513097, VMW_bootbank_vmkusb-esxio_0.1-14vmw.800.1.0.20513097, VMW_bootbank_vmkusb_0.1-14vmw.800.1.0.20513097, VMW_bootbank_vmw-ahci_2.0.14-1vmw.800.1.0.20513097, VMware_bootbank_el2.0.1200.0-6vmw.800.1.0.20513097, VMware_bootbank_esx-ui_2.10.1-20925449, VMware_bootbank_lsuv2-hpv2-hpsa-plugin_1.0.0-3vmw.800.1.0.20513097, VMware_bootbank_lsuv2-intelv2-nvme-vmd-plugin_2.20513097, VMware_bootbank_lsuv2-lsiv2-drivers-plugin_1.0.0-12vmw.800.1.0.20513097, VMware_bootbank_lsuv2-nvme-pcie-plugin_1.0.0-1vmw.800.1.0.20513097, VMware_bootbank_lsuv2-oem-dell-plugin_1513097, VMware_bootbank_lsuv2-oem-lenovo-plugin_1.0.0-2vmw.800.1.0.20513097, VMware_bootbank_lsuv2-smartpqiv2-plugin_1.0.0-8vmw.800.1.0.20513097, VMware_bootbank_qlnativefc_5.2.46.0-3vmw.800e_bootbank_vmware-esx-esxcli-nvme-plugin-esxio_1.2.0.52-1vmw.800.1.0.20513097, VMware_bootbank_vmware-esx-esxcli-nvme-plugin_1.2.0.52-1vmw.800.1.0.20513097, VMware_locker_tools-light_12.1.5.
      [root@xd-1541-5028d:~] esxcli network firewall ruleset set -e false -r httpClient
      [root@xd-1541-5028d:~] reboot

    Version: 8.0.0c (Build 21493926)
    to:
    Version: 8.0.1 (Build 21495797)

    ESXi-8.U1
      login as: root
      Using keyboard-interactive authentication.
      Password:
      The time and date of this login have been sent to the system logs.
    
      WARNING:
         All commands run on the ESXi shell are logged and may be included in
         support bundles. Do not provide passwords directly on the command line.
         Most tools can prompt for secrets or accept them from standard input.
    
      VMware offers supported, powerful system administration tools.  Please
      see www.vmware.com/go/sysadmintools for details.
    
      The ESXi Shell can be disabled by an administrative user. See the
      vSphere Security documentation for more information.
      [root@xd-1541-5028d:~] esxcli network firewall ruleset set -e true -r httpClient
      [root@xd-1541-5028d:~] esxcli software profile update -p ESXi-8.0U1-21495797-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml --no-hardware-warning
      BUpdate Result
         Message: The update completed successfully, but the system needs to be rebooted for the changes to be effective.
         Reboot Required: true
         VIBs Installed: VMW_bootbank_atlantic_1.0.3.0-11vmw.801.0.0.21495797, VMW_bootbank_bcm-mpi3_8.4.2.0.0.0-1vmw.801.0.0.21495797, VMW_bootbank_bfedac-esxio_0.1-1vmw.801.0.0.21495797, VMW_bootbank_bnxtnet_223.0.0.0-1vmw.801.0.0.21495797, VMW_bootbank_bnxtroce_223.0.0.0-1vmw.801.0.0.21495797, VMW_bootbank_brcmfcoe_12.0.1500.3-4vmw.801.0.0.21495797, VMW_bootbank_cndi-igc_1.2.10.0-1vmw.801.0.0.21495797, VMW_bootbank_dwi2c-esxio_0.1-7vmw.801.0.0.21495797, VMW_bootbank_dwi2c_0.1-7vmw.801.0.0.21495797, VMW_bootbank_elxiscsi_12.0.1200.0-11vmw.801.0.0.21495797, VMW_bootbank_elxnet_12.0.1250.0-8vmw.801.0.0.21495797, VMW_bootbank_i40en_1.11.3.5-1vmw.801.0.0.21495797, VMW_bootbank_iavmd_3.0.0.1010-8vmw.801.0.0.21495797, VMW_bootbank_icen_1.5.1.21-1vmw.801.0.0.21495797, VMW_bootbank_igbn_1.4.11.7-1vmw.801.0.0.21495797, VMW_bootbank_intelgpio_0.1-1vmw.801.0.0.21495797, VMW_bootbank_ionic-en-esxio_20.0.0-40vmw.801.0.0.21495797, VMW_bootbank_ionic-en_20.0.0-40vmw.801.0.0.21495797, VMW_bootbank_irdman_1.3.1.25-1vmw.801.0.0.21495797, VMW_bootbank_iser_1.1.0.2-1vmw.801.0.0.21495797, VMW_bootbank_ixgben_1.7.1.40-1vmw.801.0.0.21495797, VMW_bootbank_lpfc_14.2.560.8-23vmw.801.0.0.21495797, VMW_bootbank_lpnic_11.4.62.0-1vmw.801.0.0.21495797, VMW_bootbank_lsi-mr3_7.724.03.00-1vmw.801.0.0.21495797, VMW_bootbank_lsi-msgpt2_20.00.06.00-4vmw.801.0.0.21495797, VMW_bootbank_lsi-msgpt35_26.00.00.00-3vmw.801.0.0.21495797, VMW_bootbank_lsi-msgpt3_17.00.13.00-2vmw.801.0.0.21495797, VMW_bootbank_mlnx-bfbootctl-esxio_0.1-1vmw.801.0.0.21495797, VMW_bootbank_mnet-esxio_0.1-1vmw.801.0.0.21495797, VMW_bootbank_mtip32xx-native_3.9.8-1vmw.801.0.0.21495797, VMW_bootbank_ne1000_0.9.0-2vmw.801.0.0.21495797, VMW_bootbank_nenic_1.0.35.0-5vmw.801.0.0.21495797, VMW_bootbank_nfnic_5.0.0.35-4vmw.801.0.0.21495797, VMW_bootbank_nhpsa_70.0051.0.100-4vmw.801.0.0.21495797, VMW_bootbank_nmlx5-core-esxio_4.23.0.36-14vmw.801.0.0.21495797, VMW_bootbank_nmlx5-core_4.23.0.36-14vmw.801.0.0.21495797, VMW_bootbank_nmlx5-rdma-esxio_4.23.0.36-14vmw.801.0.0.21495797, VMW_bootbank_nmlx5-rdma_4.23.0.36-14vmw.801.0.0.21495797, VMW_bootbank_nmlxbf-gige-esxio_2.2-1vmw.801.0.0.21495797, VMW_bootbank_nmlxbf-pmc-esxio_0.1-1vmw.801.0.0.21495797, VMW_bootbank_ntg3_4.1.10.0-4vmw.801.0.0.21495797, VMW_bootbank_nvme-pcie-esxio_1.2.4.7-1vmw.801.0.0.21495797, VMW_bootbank_nvme-pcie_1.2.4.7-1vmw.801.0.0.21495797, VMW_bootbank_nvmerdma_1.0.3.9-1vmw.801.0.0.21495797, VMW_bootbank_nvmetcp_1.0.1.7-1vmw.801.0.0.21495797, VMW_bootbank_nvmxnet3-ens-esxio_2.0.0.23-2vmw.801.0.0.21495797, VMW_bootbank_nvmxnet3-ens_2.0.0.23-2vmw.801.0.0.21495797, VMW_bootbank_nvmxnet3-esxio_2.0.0.31-2vmw.801.0.0.21495797, VMW_bootbank_nvmxnet3_2.0.0.31-2vmw.801.0.0.21495797, VMW_bootbank_penedac-esxio_0.1-1vmw.801.0.0.21495797, VMW_bootbank_pengpio-esxio_0.1-1vmw.801.0.0.21495797, VMW_bootbank_pensandoatlas_1.46.0.E.28.1.303-2vmw.800.1.0.20796881, VMW_bootbank_penspi-esxio_0.1-1vmw.801.0.0.21495797, VMW_bootbank_pvscsi-esxio_0.1-5vmw.801.0.0.21495797, VMW_bootbank_pvscsi_0.1-5vmw.801.0.0.21495797, VMW_bootbank_qcnic_1.0.15.0-22vmw.801.0.0.21495797, VMW_bootbank_qedentv_3.40.5.70-7vmw.801.0.0.21495797, VMW_bootbank_qedrntv_3.40.5.70-3vmw.801.0.0.21495797, VMW_bootbank_qfle3_1.0.67.0-32vmw.801.0.0.21495797, VMW_bootbank_qfle3f_1.0.51.0-32vmw.801.0.0.21495797, VMW_bootbank_qfle3i_1.0.15.0-20vmw.801.0.0.21495797, VMW_bootbank_qflge_1.1.0.11-1vmw.801.0.0.21495797, VMW_bootbank_rd1173-esxio_0.1-1vmw.801.0.0.21495797, VMW_bootbank_rdmahl_1.0.0-1vmw.801.0.0.21495797, VMW_bootbank_rste_2.0.2.0088-7vmw.801.0.0.21495797, VMW_bootbank_sfvmk_2.4.0.2010-15vmw.801.0.0.21495797, VMW_bootbank_smartpqi_80.4385.0.200-1vmw.801.0.0.21495797, VMW_bootbank_spidev-esxio_0.1-1vmw.801.0.0.21495797, VMW_bootbank_vmkata_0.1-1vmw.801.0.0.21495797, VMW_bootbank_vmksdhci-esxio_1.0.3-3vmw.801.0.0.21495797, VMW_bootbank_vmksdhci_1.0.3-3vmw.801.0.0.21495797, VMW_bootbank_vmkusb-esxio_0.1-16vmw.801.0.0.21495797, VMW_bootbank_vmkusb_0.1-16vmw.801.0.0.21495797, VMW_bootbank_vmw-ahci_2.0.15-1vmw.801.0.0.21495797, VMware_bootbank_bmcal-esxio_8.0.1-0.0.21495797, VMware_bootbank_bmcal_8.0.1-0.0.21495797, VMware_bootbank_clusterstore_8.0.1-0.0.21495797, VMware_bootbank_cpu-microcode_8.0.1-0.0.21495797, VMware_bootbank_crx_8.0.1-0.0.21495797, VMware_bootbank_elx-esx-libelxima.so_12.0.1200.0-6vmw.801.0.0.21495797, VMware_bootbank_esx-base_8.0.1-0.0.21495797, VMware_bootbank_esx-dvfilter-generic-fastpath_8.0.1-0.0.21495797, VMware_bootbank_esx-ui_2.12.0-21482143, VMware_bootbank_esx-update_8.0.1-0.0.21495797, VMware_bootbank_esx-xserver_8.0.1-0.0.21495797, VMware_bootbank_esxio-base_8.0.1-0.0.21495797, VMware_bootbank_esxio-combiner-esxio_8.0.1-0.0.21495797, VMware_bootbank_esxio-combiner_8.0.1-0.0.21495797, VMware_bootbank_esxio-dvfilter-generic-fastpath_8.0.1-0.0.21495797, VMware_bootbank_esxio-update_8.0.1-0.0.21495797, VMware_bootbank_esxio_8.0.1-0.0.21495797, VMware_bootbank_gc-esxio_8.0.1-0.0.21495797, VMware_bootbank_gc_8.0.1-0.0.21495797, VMware_bootbank_loadesx_8.0.1-0.0.21495797, VMware_bootbank_loadesxio_8.0.1-0.0.21495797, VMware_bootbank_lsuv2-hpv2-hpsa-plugin_1.0.0-4vmw.801.0.0.21495797, VMware_bootbank_lsuv2-intelv2-nvme-vmd-plugin_2.7.2173-2vmw.801.0.0.21495797, VMware_bootbank_lsuv2-lsiv2-drivers-plugin_1.0.2-1vmw.801.0.0.21495797, VMware_bootbank_lsuv2-nvme-pcie-plugin_1.0.0-1vmw.801.0.0.21495797, VMware_bootbank_lsuv2-oem-dell-plugin_1.0.0-2vmw.801.0.0.21495797, VMware_bootbank_lsuv2-oem-lenovo-plugin_1.0.0-2vmw.801.0.0.21495797, VMware_bootbank_lsuv2-smartpqiv2-plugin_1.0.0-10vmw.801.0.0.21495797, VMware_bootbank_native-misc-drivers-esxio_8.0.1-0.0.21495797, VMware_bootbank_native-misc-drivers_8.0.1-0.0.21495797, VMware_bootbank_qlnativefc_5.4.69.0-16vmw.801.0.0.21495797, VMware_bootbank_trx_8.0.1-0.0.21495797, VMware_bootbank_vdfs_8.0.1-0.0.21495797, VMware_bootbank_vds-vsip_8.0.1-0.0.21495797, VMware_bootbank_vmware-esx-esxcli-nvme-plugin-esxio_1.2.0.52-1vmw.801.0.0.21495797, VMware_bootbank_vmware-esx-esxcli-nvme-plugin_1.2.0.52-1vmw.801.0.0.21495797, VMware_bootbank_vsan_8.0.1-0.0.21495797, VMware_bootbank_vsanhealth_8.0.1-0.0.21495797, VMware_locker_tools-light_12.2.0.21223074-21495797
         VIBs Removed: VMW_bootbank_atlantic_1.0.3.0-10vmw.800.1.0.20513097, VMW_bootbank_bcm-mpi3_8.1.1.0.0.0-1vmw.800.1.0.20513097, VMW_bootbank_bfedac-esxio_0.1-1vmw.800.1.0.20513097, VMW_bootbank_bnxtnet_216.0.50.0-66vmw.800.1.0.20513097, VMW_bootbank_bnxtroce_216.0.58.0-27vmw.800.1.0.20513097, VMW_bootbank_brcmfcoe_12.0.1500.3-4vmw.800.1.0.20513097, VMW_bootbank_cndi-igc_1.2.9.0-1vmw.800.1.0.20513097, VMW_bootbank_dwi2c-esxio_0.1-7vmw.800.1.20.21203435, VMW_bootbank_dwi2c_0.1-7vmw.800.1.20.21203435, VMW_bootbank_elxiscsi_12.0.1200.0-10vmw.800.1.0.20513097, VMW_bootbank_elxnet_12.0.1250.0-8vmw.800.1.0.20513097, VMW_bootbank_i40en_1.11.2.6-1vmw.800.1.20.21203435, VMW_bootbank_iavmd_3.0.0.1010-5vmw.800.1.0.20513097, VMW_bootbank_icen_1.5.1.16-1vmw.800.1.0.20513097, VMW_bootbank_igbn_1.4.11.6-1vmw.800.1.0.20513097, VMW_bootbank_ionic-en-esxio_20.0.0-30vmw.800.1.20.21203435, VMW_bootbank_ionic-en_20.0.0-30vmw.800.1.20.21203435, VMW_bootbank_irdman_1.3.1.22-1vmw.800.1.0.20513097, VMW_bootbank_iser_1.1.0.2-1vmw.800.1.0.20513097, VMW_bootbank_ixgben_1.7.1.39-1vmw.800.1.0.20513097, VMW_bootbank_lpfc_14.0.635.4-14vmw.800.1.20.21203435, VMW_bootbank_lpnic_11.4.62.0-1vmw.800.1.0.20513097, VMW_bootbank_lsi-mr3_7.722.02.00-1vmw.800.1.0.20513097, VMW_bootbank_lsi-msgpt2_20.00.06.00-4vmw.800.1.0.20513097, VMW_bootbank_lsi-msgpt35_23.00.00.00-1vmw.800.1.0.20513097, VMW_bootbank_lsi-msgpt3_17.00.13.00-2vmw.800.1.0.20513097, VMW_bootbank_mlnx-bfbootctl-esxio_0.1-1vmw.800.1.0.20513097, VMW_bootbank_mnet-esxio_0.1-1vmw.800.1.0.20513097, VMW_bootbank_mtip32xx-native_3.9.8-1vmw.800.1.0.20513097, VMW_bootbank_ne1000_0.9.0-2vmw.800.1.0.20513097, VMW_bootbank_nenic_1.0.35.0-3vmw.800.1.0.20513097, VMW_bootbank_nfnic_5.0.0.35-3vmw.800.1.0.20513097, VMW_bootbank_nhpsa_70.0051.0.100-4vmw.800.1.0.20513097, VMW_bootbank_nmlx5-core-esxio_4.23.0.36-10.2vmw.800.1.20.21203435, VMW_bootbank_nmlx5-core_4.23.0.36-10.2vmw.800.1.20.21203435, VMW_bootbank_nmlx5-rdma-esxio_4.23.0.36-10.2vmw.800.1.20.21203435, VMW_bootbank_nmlx5-rdma_4.23.0.36-10.2vmw.800.1.20.21203435, VMW_bootbank_nmlxbf-gige-esxio_2.1-1vmw.800.1.0.20513097, VMW_bootbank_ntg3_4.1.8.0-4vmw.800.1.0.20513097, VMW_bootbank_nvme-pcie-esxio_1.2.4.1-1vmw.800.1.0.20513097, VMW_bootbank_nvme-pcie_1.2.4.1-1vmw.800.1.0.20513097, VMW_bootbank_nvmerdma_1.0.3.9-1vmw.800.1.0.20513097, VMW_bootbank_nvmetcp_1.0.1.2-1vmw.800.1.0.20513097, VMW_bootbank_nvmxnet3-ens-esxio_2.0.0.23-1vmw.800.1.0.20513097, VMW_bootbank_nvmxnet3-ens_2.0.0.23-1vmw.800.1.0.20513097, VMW_bootbank_nvmxnet3-esxio_2.0.0.31-1vmw.800.1.0.20513097, VMW_bootbank_nvmxnet3_2.0.0.31-1vmw.800.1.0.20513097, VMW_bootbank_penedac-esxio_0.1-1vmw.800.1.0.20513097, VMW_bootbank_pengpio-esxio_0.1-1vmw.800.1.0.20513097, VMW_bootbank_pensandoatlas_1.46.0.E.24.1.256-2vmw.800.1.0.20293628, VMW_bootbank_penspi-esxio_0.1-1vmw.800.1.0.20513097, VMW_bootbank_pvscsi-esxio_0.1-5vmw.800.1.0.20513097, VMW_bootbank_pvscsi_0.1-5vmw.800.1.0.20513097, VMW_bootbank_qcnic_1.0.15.0-22vmw.800.1.0.20513097, VMW_bootbank_qedentv_3.40.5.70-4vmw.800.1.0.20513097, VMW_bootbank_qedrntv_3.40.5.70-1vmw.800.1.0.20513097, VMW_bootbank_qfle3_1.0.67.0-30vmw.800.1.0.20513097, VMW_bootbank_qfle3f_1.0.51.0-28vmw.800.1.0.20513097, VMW_bootbank_qfle3i_1.0.15.0-20vmw.800.1.0.20513097, VMW_bootbank_qflge_1.1.0.11-1vmw.800.1.0.20513097, VMW_bootbank_rd1173-esxio_0.1-1vmw.800.1.0.20513097, VMW_bootbank_rdmahl_1.0.0-1vmw.800.1.0.20513097, VMW_bootbank_rste_2.0.2.0088-7vmw.800.1.0.20513097, VMW_bootbank_sfvmk_2.4.0.2010-13vmw.800.1.0.20513097, VMW_bootbank_smartpqi_80.4253.0.5000-2vmw.800.1.0.20513097, VMW_bootbank_spidev-esxio_0.1-1vmw.800.1.0.20513097, VMW_bootbank_vmkata_0.1-1vmw.800.1.0.20513097, VMW_bootbank_vmksdhci-esxio_1.0.2-2vmw.800.1.0.20513097, VMW_bootbank_vmksdhci_1.0.2-2vmw.800.1.0.20513097, VMW_bootbank_vmkusb-esxio_0.1-14vmw.800.1.0.20513097, VMW_bootbank_vmkusb_0.1-14vmw.800.1.0.20513097, VMW_bootbank_vmw-ahci_2.0.14-1vmw.800.1.0.20513097, VMware_bootbank_bmcal-esxio_8.0.0-1.25.21493926, VMware_bootbank_bmcal_8.0.0-1.25.21493926, VMware_bootbank_clusterstore_8.0.0-1.25.21493926, VMware_bootbank_cpu-microcode_8.0.0-1.25.21493926, VMware_bootbank_crx_8.0.0-1.25.21493926, VMware_bootbank_drivervm-gpu_8.0.0-1.25.21493926, VMware_bootbank_elx-esx-libelxima.so_12.0.1200.0-6vmw.800.1.0.20513097, VMware_bootbank_esx-base_8.0.0-1.25.21493926, VMware_bootbank_esx-dvfilter-generic-fastpath_8.0.0-1.25.21493926, VMware_bootbank_esx-ui_2.10.1-20925449, VMware_bootbank_esx-update_8.0.0-1.25.21493926, VMware_bootbank_esx-xserver_8.0.0-1.25.21493926, VMware_bootbank_esxio-base_8.0.0-1.25.21493926, VMware_bootbank_esxio-combiner-esxio_8.0.0-1.25.21493926, VMware_bootbank_esxio-combiner_8.0.0-1.25.21493926, VMware_bootbank_esxio-dvfilter-generic-fastpath_8.0.0-1.25.21493926, VMware_bootbank_esxio-update_8.0.0-1.25.21493926, VMware_bootbank_esxio_8.0.0-1.25.21493926, VMware_bootbank_gc-esxio_8.0.0-1.25.21493926, VMware_bootbank_gc_8.0.0-1.25.21493926, VMware_bootbank_loadesx_8.0.0-1.25.21493926, VMware_bootbank_loadesxio_8.0.0-1.25.21493926, VMware_bootbank_lsuv2-hpv2-hpsa-plugin_1.0.0-3vmw.800.1.0.20513097, VMware_bootbank_lsuv2-intelv2-nvme-vmd-plugin_2.7.2173-2vmw.800.1.0.20513097, VMware_bootbank_lsuv2-lsiv2-drivers-plugin_1.0.0-12vmw.800.1.0.20513097, VMware_bootbank_lsuv2-nvme-pcie-plugin_1.0.0-1vmw.800.1.0.20513097, VMware_bootbank_lsuv2-oem-dell-plugin_1.0.0-2vmw.800.1.0.20513097, VMware_bootbank_lsuv2-oem-lenovo-plugin_1.0.0-2vmw.800.1.0.20513097, VMware_bootbank_lsuv2-smartpqiv2-plugin_1.0.0-8vmw.800.1.0.20513097, VMware_bootbank_native-misc-drivers-esxio_8.0.0-1.25.21493926, VMware_bootbank_native-misc-drivers_8.0.0-1.25.21493926, VMware_bootbank_qlnativefc_5.2.46.0-3vmw.800.1.0.20513097, VMware_bootbank_trx_8.0.0-1.25.21493926, VMware_bootbank_vdfs_8.0.0-1.25.21493926, VMware_bootbank_vmware-esx-esxcli-nvme-plugin-esxio_1.2.0.52-1vmw.800.1.0.20513097, VMware_bootbank_vmware-esx-esxcli-nvme-plugin_1.2.0.52-1vmw.800.1.0.20513097, VMware_bootbank_vsan_8.0.0-1.25.21493926, VMware_bootbank_vsanhealth_8.0.0-1.25.21493926, VMware_locker_tools-light_12.1.5.20735119-21203431
         VIBs Skipped:
      [root@xd-1541-5028d:~] B
      -sh: B: not found
      [root@xd-1541-5028d:~]
      [root@xd-1541-5028d:~]
      [root@xd-1541-5028d:~] esxcli network firewall ruleset set -e false -r httpClient
      [root@xd-1541-5028d:~] reboot

    Version: 8.0.1 (Build 21495797)
    to:
    Version: 8.0.1a (Build 21813344)

    ESXi-8.U1a
      login as: root
      Using keyboard-interactive authentication.
      Password:
      The time and date of this login have been sent to the system logs.
    
      WARNING:
         All commands run on the ESXi shell are logged and may be included in
         support bundles. Do not provide passwords directly on the command line.
         Most tools can prompt for secrets or accept them from standard input.
    
      VMware offers powerful and supported automation tools. Please
      see https://developer.vmware.com for details.
    
      The ESXi Shell can be disabled by an administrative user. See the
      vSphere Security documentation for more information.
      [root@xd-1541-5028d:~] esxcli network firewall ruleset set -e true -r httpClient
      [root@xd-1541-5028d:~] esxcli software profile update -p ESXi-8.0U1a-21813344-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml --no-hardware-warning
      Update Result
         Message: The update completed successfully, but the system needs to be rebooted for the changes to be effective.
         VIBs Installed: VMware_bootbank_bmcal-esxio_8.0.1-0.10.21813344, VMware_bootbank_bmcal_8.0.1-0.10.21813344, VMware_bootbank_clusterstore_8.0.1-0.10.21813344, VMware_bootbank_cpu-microcode_8.0.1-0.10.21813344, VMware_bootbank_crx_8.0.1-0.10.21813344, VMware_bootbank_esx-base_8.0.1-0.10.21813344, VMware_bootbank_esx-dvfilter-generic-fastpath_8.0.1-0.10.21813344, VMware_bootbank_esx-update_8.0.1-0.10.21813344, VMware_bootbank_esx-xserver_8.0.1-0.10.21813344, VMware_bootbank_esxio-base_8.0.1-0.10.21813344, VMware_bootbank_esxio-combiner-esxio_8.0.1-0.10.21813344, VMware_bootbank_esxio-combiner_8.0.1-0.10.21813344, VMware_bootbank_esxio-dvfilter-generic-fastpath_8.0.1-0.10.21813344, VMware_bootbank_esxio-update_8.0.1-0.10.21813344, VMware_bootbank_esxio_8.0.1-0.10.21813344, VMware_bootbank_gc-esxio_8.0.1-0.10.21813344, VMware_bootbank_gc_8.0.1-0.10.21813344, VMware_bootbank_loadesx_8.0.1-0.10.21813344, VMware_bootbank_loadesxio_8.0.1-0.10.21813344, VMware_bootbank_native-misc-drivers-esxio_8.0.1-0.10.21813344, VMware_bootbank_native-misc-drivers_8.0.1-0.10.21813344, VMware_bootbank_trx_8.0.1-0.10.21813344, VMware_bootbank_vdfs_8.0.1-0.10.21813344, VMware_bootbank_vds-vsip_8.0.1-0.10.21813344, VMware_bootbank_vsan_8.0.1-0.10.21813344, VMware_bootbank_vsanhealth_8.0.1-0.10.21813344
         VIBs Removed: VMware_bootbank_bmcal-esxio_8.0.1-0.0.21495797, VMware_bootbank_bmcal_8.0.1-0.0.21495797, VMware_bootbank_clusterstore_8.0.1-0.0.21495797, VMware_bootbank_cpu-microcode_8.0.1-0.0.21495797, VMware_bootbank_crx_8.0.1-0.0.21495797, VMware_bootbank_esx-base_8.0.1-0.0.21495797, VMware_bootbank_esx-dvfilter-generic-fastpath_8.0.1-0.0.21495797, VMware_bootbank_esx-update_8.0.1-0.0.21495797, VMware_bootbank_esx-xserver_8.0.1-0.0.21495797, VMware_bootbank_esxio-base_8.0.1-0.0.21495797, VMware_bootbank_esxio-combiner-esxio_8.0.1-0.0.21495797, VMware_bootbank_esxio-combiner_8.0.1-0.0.21495797, VMware_bootbank_esxio-dvfilter-generic-fastpath_8.0.1-0.0.21495797, VMware_bootbank_esxio-update_8.0.1-0.0.21495797, VMware_bootbank_esxio_8.0.1-0.0.21495797, VMware_bootbank_gc-esxio_8.0.1-0.0.21495797, VMware_bootbank_gc_8.0.1-0.0.21495797, VMware_bootbank_loadesx_8.0.1-0.0.21495797, VMware_bootbank_loadesxio_8.0.1-0.0.21495797, VMware_bootbank_native-misc-drivers-esxio_8.0.1-0.0.21495797, VMware_bootbank_native-misc-drivers_8.0.1-0.0.21495797, VMware_bootbank_trx_8.0.1-0.0.21495797, VMware_bootbank_vdfs_8.0.1-0.0.21495797, VMware_bootbank_vds-vsip_8.0.1-0.0.21495797, VMware_bootbank_vsan_8.0.1-0.0.21495797, VMware_bootbank_vsanhealth_8.0.1-0.0.21495797
         VIBs Skipped: VMW_bootbank_atlantic_1.0.3.0-11vmw.801.0.0.21495797, VMW_bootbank_bcm-mpi3_8.4.2.0.0.0-1vmw.801.0.0.21495797, VMW_bootbank_bfedac-esxio_0.1-1vmw.801.0.0.21495797, VMW_bootbank_bnxtnet_223.0.0.0-1vmw.801.0.0.21495797, VMW_bootbank_bnxtroce_223.0.0.0-1vmw.801.0.0.21495797, VMW_bootbank_brcmfcoe_12.0.1500.3-4vmw.801.0.0.21495797, VMW_bootbank_cndi-igc_1.2.10.0-1vmw.801.0.0.21495797, VMW_bootbank_dwi2c-esxio_0.1-7vmw.801.0.0.21495797, VMW_bootbank_dwi2c_0.1-7vmw.801.0.0.21495797, VMW_bootbank_elxiscsi_12.0.1200.0-11vmw.801.0.0.21495797, VMW_bootbank_elxnet_12.0.1250.0-8vmw.801.0.0.21495797, VMW_bootbank_i40en_1.11.3.5-1vmw.801.0.0.21495797, VMW_bootbank_iavmd_3.0.0.1010-8vmw.801.0.0.21495797, VMW_bootbank_icen_1.5.1.21-1vmw.801.0.0.21495797, VMW_bootbank_igbn_1.4.11.7-1vmw.801.0.0.21495797, VMW_bootbank_intelgpio_0.1-1vmw.801.0.0.21495797, VMW_bootbank_ionic-en-esxio_20.0.0-40vmw.801.0.0.21495797, VMW_bootbank_ionic-en_20.0.0-40vmw.801.0.0.21495797, VMW_bootbank_irdman_1.3.1.25-1vmw.801.0.0.21495797, VMW_bootbank_iser_1.1.0.2-1vmw.801.0.0.21495797, VMW_bootbank_ixgben_1.7.1.40-1vmw.801.0.0.21495797, VMW_bootbank_lpfc_14.2.560.8-23vmw.801.0.0.21495797, VMW_bootbank_lpnic_11.4.62.0-1vmw.801.0.0.21495797, VMW_bootbank_lsi-mr3_7.724.03.00-1vmw.801.0.0.21495797, VMW_bootbank_lsi-msgpt2_20.00.06.00-4vmw.801.0.0.21495797, VMW_bootbank_lsi-msgpt35_26.00.00.00-3vmw.801.0.0.21495797, VMW_bootbank_lsi-msgpt3_17.00.13.00-2vmw.801.0.0.21495797, VMW_bootbank_mlnx-bfbootctl-esxio_0.1-1vmw.801.0.0.21495797, VMW_bootbank_mnet-esxio_0.1-1vmw.801.0.0.21495797, VMW_bootbank_mtip32xx-native_3.9.8-1vmw.801.0.0.21495797, VMW_bootbank_ne1000_0.9.0-2vmw.801.0.0.21495797, VMW_bootbank_nenic_1.0.35.0-5vmw.801.0.0.21495797, VMW_bootbank_nfnic_5.0.0.35-4vmw.801.0.0.21495797, VMW_bootbank_nhpsa_70.0051.0.100-4vmw.801.0.0.21495797, VMW_bootbank_nmlx5-core-esxio_4.23.0.36-14vmw.801.0.0.21495797, VMW_bootbank_nmlx5-core_4.23.0.36-14vmw.801.0.0.21495797, VMW_bootbank_nmlx5-rdma-esxio_4.23.0.36-14vmw.801.0.0.21495797, VMW_bootbank_nmlx5-rdma_4.23.0.36-14vmw.801.0.0.21495797, VMW_bootbank_nmlxbf-gige-esxio_2.2-1vmw.801.0.0.21495797, VMW_bootbank_nmlxbf-pmc-esxio_0.1-1vmw.801.0.0.21495797, VMW_bootbank_ntg3_4.1.10.0-4vmw.801.0.0.21495797, VMW_bootbank_nvme-pcie-esxio_1.2.4.7-1vmw.801.0.0.21495797, VMW_bootbank_nvme-pcie_1.2.4.7-1vmw.801.0.0.21495797, VMW_bootbank_nvmerdma_1.0.3.9-1vmw.801.0.0.21495797, VMW_bootbank_nvmetcp_1.0.1.7-1vmw.801.0.0.21495797, VMW_bootbank_nvmxnet3-ens-esxio_2.0.0.23-2vmw.801.0.0.21495797, VMW_bootbank_nvmxnet3-ens_2.0.0.23-2vmw.801.0.0.21495797, VMW_bootbank_nvmxnet3-esxio_2.0.0.31-2vmw.801.0.0.21495797, VMW_bootbank_nvmxnet3_2.0.0.31-2vmw.801.0.0.21495797, VMW_bootbank_penedac-esxio_0.1-1vmw.801.0.0.21495797, VMW_bootbank_pengpio-esxio_0.1-1vmw.801.0.0.21495797, VMW_bootbank_pensandoatlas_1.46.0.E.28.1.303-2vmw.800.1.0.20796881, VMW_bootbank_penspi-esxio_0.1-1vmw.801.0.0.21495797, VMW_bootbank_pvscsi-esxio_0.1-5vmw.801.0.0.21495797, VMW_bootbank_pvscsi_0.1-5vmw.801.0.0.21495797, VMW_bootbank_qcnic_1.0.15.0-22vmw.801.0.0.21495797, VMW_bootbank_qedentv_3.40.5.70-7vmw.801.0.0.21495797, VMW_bootbank_qedrntv_3.40.5.70-3vmw.801.0.0.21495797, VMW_bootbank_qfle3_1.0.67.0-32vmw.801.0.0.21495797, VMW_bootbank_qfle3f_1.0.51.0-32vmw.801.0.0.21495797, VMW_bootbank_qfle3i_1.0.15.0-20vmw.801.0.0.21495797, VMW_bootbank_qflge_1.1.0.11-1vmw.801.0.0.21495797, VMW_bootbank_rd1173-esxio_0.1-1vmw.801.0.0.21495797, VMW_bootbank_rdmahl_1.0.0-1vmw.801.0.0.21495797, VMW_bootbank_rste_2.0.2.0088-7vmw.801.0.0.21495797, VMW_bootbank_sfvmk_2.4.0.2010-15vmw.801.0.0.21495797, VMW_bootbank_smartpqi_80.4385.0.200-1vmw.801.0.0.21495797, VMW_bootbank_spidev-esxio_0.1-1vmw.801.0.0.21495797, VMW_bootbank_vmkata_0.1-1vmw.801.0.0.21495797, VMW_bootbank_vmksdhci-esxio_1.0.3-3vmw.801.0.0.21495797, VMW_bootbank_vmksdhci_1.0.3-3vmw.801.0.0.21495797, VMW_bootbank_vmkusb-esxio_0.1-16vmw.801.0.0.21495797, VMW_bootbank_vmkusb_0.1-16vmw.801.0.0.21495797, VMW_bootbank_vmw-ahci_2.0.15-1vmw.801.0.0.21495797, VMware_bootbank_elx-esx-libelxima.so_12.0.1200.0-6vmw.801.0.0.21495797, VMware_bootbank_esx-ui_2.12.0-21482143, VMware_bootbank_lsuv2-hpv2-hpsa-plugin_1.0.0-4vmw.801.0.0.21495797, VMware_bootbank_lsuv2-intelv2-nvme-vmd-plugin_2.7.2173-2vmw.801.0.0.21495797, VMware_bootbank_lsuv2-lsiv2-drivers-plugin_1.0.2-1vmw.801.0.0.21495797, VMware_bootbank_lsuv2-nvme-pcie-plugin_1.0.0-1vmw.801.0.0.21495797, VMware_bootbank_lsuv2-oem-dell-plugin_1.0.0-2vmw.801.0.0.21495797, VMware_bootbank_lsuv2-oem-lenovo-plugin_1.0.0-2vmw.801.0.0.21495797, VMware_bootbank_lsuv2-smartpqiv2-plugin_1.0.0-10vmw.801.0.0.21495797, VMware_bootbank_qlnativefc_5.4.69.0-16vmw.801.0.0.21495797, VMware_bootbank_vmware-esx-esxcli-nvme-plugin-esxio_1.2.0.52-1vmw.801.0.0.21495797, VMware_bootbank_vmware-esx-esxcli-nvme-plugin_1.2.0.52-1vmw.801.0.0.21495797, VMware_locker_tools-light_12.2.0.21223074-21495797
         Reboot Required: true
         DPU Results:
      [root@xd-1541-5028d:~] esxcli network firewall ruleset set -e false -r httpClient
      [root@xd-1541-5028d:~] reboot

    Version: 8.0.1a (Build 21813344)
    to:
    Version: 8.0.1c (Build 22088125)

    ESXi-8.U1c
      login as: root
      Using keyboard-interactive authentication.
      Password:
      The time and date of this login have been sent to the system logs.
    
      WARNING:
         All commands run on the ESXi shell are logged and may be included in
         support bundles. Do not provide passwords directly on the command line.
         Most tools can prompt for secrets or accept them from standard input.
    
      VMware offers powerful and supported automation tools. Please
      see https://developer.vmware.com for details.
    
      The ESXi Shell can be disabled by an administrative user. See the
      vSphere Security documentation for more information.
      [root@xd-1541-5028d:~] esxcli network firewall ruleset set -e true -r httpClient
      [root@xd-1541-5028d:~] esxcli software profile update -p ESXi-8.0U1c-22088125-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml --no-hardware-warning
      Update Result
         Message: The update completed successfully, but the system needs to be rebooted for the changes to be effective.
         VIBs Installed: VMW_bootbank_nmlx5-core-esxio_4.23.0.36-15vmw.801.0.25.22088125, VMW_bootbank_nmlx5-core_4.23.0.36-15vmw.801.0.25.22088125, VMW_bootbank_nmlx5-rdma-esxio_4.23.0.36-15vmw.801.0.25.22088125, VMW_bootbank_nmlx5-rdma_4.23.0.36-15vmw.801.0.25.22088125, VMW_bootbank_ntg3_4.1.10.0-5vmw.801.0.25.22088125, VMW_bootbank_nvmetcp_1.0.1.7-1vmw.801.0.25.22088125, VMware_bootbank_bmcal-esxio_8.0.1-0.25.22088125, VMware_bootbank_bmcal_8.0.1-0.25.22088125, VMware_bootbank_clusterstore_8.0.1-0.25.22088125, VMware_bootbank_cpu-microcode_8.0.1-0.25.22088125, VMware_bootbank_crx_8.0.1-0.25.22088125, VMware_bootbank_esx-base_8.0.1-0.25.22088125, VMware_bootbank_esx-dvfilter-generic-fastpath_8.0.1-0.25.22088125, VMware_bootbank_esx-update_8.0.1-0.25.22088125, VMware_bootbank_esx-xserver_8.0.1-0.25.22088125, VMware_bootbank_esxio-base_8.0.1-0.25.22088125, VMware_bootbank_esxio-combiner-esxio_8.0.1-0.25.22088125, VMware_bootbank_esxio-combiner_8.0.1-0.25.22088125, VMware_bootbank_esxio-dvfilter-generic-fastpath_8.0.1-0.25.22088125, VMware_bootbank_esxio-update_8.0.1-0.25.22088125, VMware_bootbank_esxio_8.0.1-0.25.22088125, VMware_bootbank_gc-esxio_8.0.1-0.25.22088125, VMware_bootbank_gc_8.0.1-0.25.22088125, VMware_bootbank_loadesx_8.0.1-0.25.22088125, VMware_bootbank_loadesxio_8.0.1-0.25.22088125, VMware_bootbank_native-misc-drivers-esxio_8.0.1-0.25.22088125, VMware_bootbank_native-misc-drivers_8.0.1-0.25.22088125, VMware_bootbank_trx_8.0.1-0.25.22088125, VMware_bootbank_vdfs_8.0.1-0.25.22088125, VMware_bootbank_vds-vsip_8.0.1-0.25.22088125, VMware_bootbank_vsan_8.0.1-0.25.22088125, VMware_bootbank_vsanhealth_8.0.1-0.25.22088125, VMware_locker_tools-light_12.2.5.21855600-22082334
         VIBs Removed: VMW_bootbank_nmlx5-core-esxio_4.23.0.36-14vmw.801.0.0.21495797, VMW_bootbank_nmlx5-core_4.23.0.36-14vmw.801.0.0.21495797, VMW_bootbank_nmlx5-rdma-esxio_4.23.0.36-14vmw.801.0.0.21495797, VMW_bootbank_nmlx5-rdma_4.23.0.36-14vmw.801.0.0.21495797, VMW_bootbank_ntg3_4.1.10.0-4vmw.801.0.0.21495797, VMW_bootbank_nvmetcp_1.0.1.7-1vmw.801.0.0.21495797, VMware_bootbank_bmcal-esxio_8.0.1-0.10.21813344, VMware_bootbank_bmcal_8.0.1-0.10.21813344, VMware_bootbank_clusterstore_8.0.1-0.10.21813344, VMware_bootbank_cpu-microcode_8.0.1-0.10.21813344, VMware_bootbank_crx_8.0.1-0.10.21813344, VMware_bootbank_esx-base_8.0.1-0.10.21813344, VMware_bootbank_esx-dvfilter-generic-fastpath_8.0.1-0.10.21813344, VMware_bootbank_esx-update_8.0.1-0.10.21813344, VMware_bootbank_esx-xserver_8.0.1-0.10.21813344, VMware_bootbank_esxio-base_8.0.1-0.10.21813344, VMware_bootbank_esxio-combiner-esxio_8.0.1-0.10.21813344, VMware_bootbank_esxio-combiner_8.0.1-0.10.21813344, VMware_bootbank_esxio-dvfilter-generic-fastpath_8.0.1-0.10.21813344, VMware_bootbank_esxio-update_8.0.1-0.10.21813344, VMware_bootbank_esxio_8.0.1-0.10.21813344, VMware_bootbank_gc-esxio_8.0.1-0.10.21813344, VMware_bootbank_gc_8.0.1-0.10.21813344, VMware_bootbank_loadesx_8.0.1-0.10.21813344, VMware_bootbank_loadesxio_8.0.1-0.10.21813344, VMware_bootbank_native-misc-drivers-esxio_8.0.1-0.10.21813344, VMware_bootbank_native-misc-drivers_8.0.1-0.10.21813344, VMware_bootbank_trx_8.0.1-0.10.21813344, VMware_bootbank_vdfs_8.0.1-0.10.21813344, VMware_bootbank_vds-vsip_8.0.1-0.10.21813344, VMware_bootbank_vsan_8.0.1-0.10.21813344, VMware_bootbank_vsanhealth_8.0.1-0.10.21813344, VMware_locker_tools-light_12.2.0.21223074-21495797
         VIBs Skipped: VMW_bootbank_atlantic_1.0.3.0-11vmw.801.0.0.21495797, VMW_bootbank_bcm-mpi3_8.4.2.0.0.0-1vmw.801.0.0.21495797, VMW_bootbank_bfedac-esxio_0.1-1vmw.801.0.0.21495797, VMW_bootbank_bnxtnet_223.0.0.0-1vmw.801.0.0.21495797, VMW_bootbank_bnxtroce_223.0.0.0-1vmw.801.0.0.21495797, VMW_bootbank_brcmfcoe_12.0.1500.3-4vmw.801.0.0.21495797, VMW_bootbank_cndi-igc_1.2.10.0-1vmw.801.0.0.21495797, VMW_bootbank_dwi2c-esxio_0.1-7vmw.801.0.0.21495797, VMW_bootbank_dwi2c_0.1-7vmw.801.0.0.21495797, VMW_bootbank_elxiscsi_12.0.1200.0-11vmw.801.0.0.21495797, VMW_bootbank_elxnet_12.0.1250.0-8vmw.801.0.0.21495797, VMW_bootbank_i40en_1.11.3.5-1vmw.801.0.0.21495797, VMW_bootbank_iavmd_3.0.0.1010-8vmw.801.0.0.21495797, VMW_bootbank_icen_1.5.1.21-1vmw.801.0.0.21495797, VMW_bootbank_igbn_1.4.11.7-1vmw.801.0.0.21495797, VMW_bootbank_intelgpio_0.1-1vmw.801.0.0.21495797, VMW_bootbank_ionic-en-esxio_20.0.0-40vmw.801.0.0.21495797, VMW_bootbank_ionic-en_20.0.0-40vmw.801.0.0.21495797, VMW_bootbank_irdman_1.3.1.25-1vmw.801.0.0.21495797, VMW_bootbank_iser_1.1.0.2-1vmw.801.0.0.21495797, VMW_bootbank_ixgben_1.7.1.40-1vmw.801.0.0.21495797, VMW_bootbank_lpfc_14.2.560.8-23vmw.801.0.0.21495797, VMW_bootbank_lpnic_11.4.62.0-1vmw.801.0.0.21495797, VMW_bootbank_lsi-mr3_7.724.03.00-1vmw.801.0.0.21495797, VMW_bootbank_lsi-msgpt2_20.00.06.00-4vmw.801.0.0.21495797, VMW_bootbank_lsi-msgpt35_26.00.00.00-3vmw.801.0.0.21495797, VMW_bootbank_lsi-msgpt3_17.00.13.00-2vmw.801.0.0.21495797, VMW_bootbank_mlnx-bfbootctl-esxio_0.1-1vmw.801.0.0.21495797, VMW_bootbank_mnet-esxio_0.1-1vmw.801.0.0.21495797, VMW_bootbank_mtip32xx-native_3.9.8-1vmw.801.0.0.21495797, VMW_bootbank_ne1000_0.9.0-2vmw.801.0.0.21495797, VMW_bootbank_nenic_1.0.35.0-5vmw.801.0.0.21495797, VMW_bootbank_nfnic_5.0.0.35-4vmw.801.0.0.21495797, VMW_bootbank_nhpsa_70.0051.0.100-4vmw.801.0.0.21495797, VMW_bootbank_nmlxbf-gige-esxio_2.2-1vmw.801.0.0.21495797, VMW_bootbank_nmlxbf-pmc-esxio_0.1-1vmw.801.0.0.21495797, VMW_bootbank_nvme-pcie-esxio_1.2.4.7-1vmw.801.0.0.21495797, VMW_bootbank_nvme-pcie_1.2.4.7-1vmw.801.0.0.21495797, VMW_bootbank_nvmerdma_1.0.3.9-1vmw.801.0.0.21495797, VMW_bootbank_nvmxnet3-ens-esxio_2.0.0.23-2vmw.801.0.0.21495797, VMW_bootbank_nvmxnet3-ens_2.0.0.23-2vmw.801.0.0.21495797, VMW_bootbank_nvmxnet3-esxio_2.0.0.31-2vmw.801.0.0.21495797, VMW_bootbank_nvmxnet3_2.0.0.31-2vmw.801.0.0.21495797, VMW_bootbank_penedac-esxio_0.1-1vmw.801.0.0.21495797, VMW_bootbank_pengpio-esxio_0.1-1vmw.801.0.0.21495797, VMW_bootbank_pensandoatlas_1.46.0.E.28.1.303-2vmw.800.1.0.20796881, VMW_bootbank_penspi-esxio_0.1-1vmw.801.0.0.21495797, VMW_bootbank_pvscsi-esxio_0.1-5vmw.801.0.0.21495797, VMW_bootbank_pvscsi_0.1-5vmw.801.0.0.21495797, VMW_bootbank_qcnic_1.0.15.0-22vmw.801.0.0.21495797, VMW_bootbank_qedentv_3.40.5.70-7vmw.801.0.0.21495797, VMW_bootbank_qedrntv_3.40.5.70-3vmw.801.0.0.21495797, VMW_bootbank_qfle3_1.0.67.0-32vmw.801.0.0.21495797, VMW_bootbank_qfle3f_1.0.51.0-32vmw.801.0.0.21495797, VMW_bootbank_qfle3i_1.0.15.0-20vmw.801.0.0.21495797, VMW_bootbank_qflge_1.1.0.11-1vmw.801.0.0.21495797, VMW_bootbank_rd1173-esxio_0.1-1vmw.801.0.0.21495797, VMW_bootbank_rdmahl_1.0.0-1vmw.801.0.0.21495797, VMW_bootbank_rste_2.0.2.0088-7vmw.801.0.0.21495797, VMW_bootbank_sfvmk_2.4.0.2010-15vmw.801.0.0.21495797, VMW_bootbank_smartpqi_80.4385.0.200-1vmw.801.0.0.21495797, VMW_bootbank_spidev-esxio_0.1-1vmw.801.0.0.21495797, VMW_bootbank_vmkata_0.1-1vmw.801.0.0.21495797, VMW_bootbank_vmksdhci-esxio_1.0.3-3vmw.801.0.0.21495797, VMW_bootbank_vmksdhci_1.0.3-3vmw.801.0.0.21495797, VMW_bootbank_vmkusb-esxio_0.1-16vmw.801.0.0.21495797, VMW_bootbank_vmkusb_0.1-16vmw.801.0.0.21495797, VMW_bootbank_vmw-ahci_2.0.15-1vmw.801.0.0.21495797, VMware_bootbank_elx-esx-libelxima.so_12.0.1200.0-6vmw.801.0.0.21495797, VMware_bootbank_esx-ui_2.12.0-21482143, VMware_bootbank_lsuv2-hpv2-hpsa-plugin_1.0.0-4vmw.801.0.0.21495797, VMware_bootbank_lsuv2-intelv2-nvme-vmd-plugin_2.7.2173-2vmw.801.0.0.21495797, VMware_bootbank_lsuv2-lsiv2-drivers-plugin_1.0.2-1vmw.801.0.0.21495797, VMware_bootbank_lsuv2-nvme-pcie-plugin_1.0.0-1vmw.801.0.0.21495797, VMware_bootbank_lsuv2-oem-dell-plugin_1.0.0-2vmw.801.0.0.21495797, VMware_bootbank_lsuv2-oem-lenovo-plugin_1.0.0-2vmw.801.0.0.21495797, VMware_bootbank_lsuv2-smartpqiv2-plugin_1.0.0-10vmw.801.0.0.21495797, VMware_bootbank_qlnativefc_5.4.69.0-16vmw.801.0.0.21495797, VMware_bootbank_vmware-esx-esxcli-nvme-plugin-esxio_1.2.0.52-1vmw.801.0.0.21495797, VMware_bootbank_vmware-esx-esxcli-nvme-plugin_1.2.0.52-1vmw.801.0.0.21495797
         Reboot Required: true
         DPU Results:
      [root@xd-1541-5028d:~] esxcli network firewall ruleset set -e false -r httpClient
      [root@xd-1541-5028d:~] reboot
    ESXi-8.U2

    Version: 8.0.1c (Build 22088125)
    to:
    Version: 8.0.2 (Build 22380479)

      login as: root
      Using keyboard-interactive authentication.
      Password:
      The time and date of this login have been sent to the system logs.
    
      WARNING:
         All commands run on the ESXi shell are logged and may be included in
         support bundles. Do not provide passwords directly on the command line.
         Most tools can prompt for secrets or accept them from standard input.
    
      VMware offers powerful and supported automation tools. Please
      see https://developer.vmware.com for details.
    
      The ESXi Shell can be disabled by an administrative user. See the
      vSphere Security documentation for more information.
      [root@xd-1541-5028d:~] esxcli network firewall ruleset set -e true -r httpClient
      [root@xd-1541-5028d:~] esxcli software profile update -p ESXi-8.0U2-22380479-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml --n
      o-hardware-warning
      Update Result
         Message: The update completed successfully, but the system needs to be rebooted for the changes to be effective.
         VIBs Installed: VMW_bootbank_atlantic_1.0.3.0-12vmw.802.0.0.22380479, VMW_bootbank_bcm-mpi3_8.6.1.0.0.0-1vmw.802.0.0.22380479, VMW_bootbank_bfedac-esxio_0.1-1vmw.802.0.0.22380479, VMW_bootbank_bnxtnet_225.0.4.0-8vmw.802.0.0.22380479, VMW_bootbank_bnxtroce_225.0.4.0-8vmw.802.0.0.22380479, VMW_bootbank_brcmfcoe_12.0.1500.3-4vmw.802.0.0.22380479, VMW_bootbank_cndi-igc_1.2.10.0-1vmw.802.0.0.22380479, VMW_bootbank_dwi2c-esxio_0.1-7vmw.802.0.0.22380479, VMW_bootbank_dwi2c_0.1-7vmw.802.0.0.22380479, VMW_bootbank_elxiscsi_12.0.1200.0-11vmw.802.0.0.22380479, VMW_bootbank_elxnet_12.0.1250.0-8vmw.802.0.0.22380479, VMW_bootbank_i40en_1.11.3.10-1vmw.802.0.0.22380479, VMW_bootbank_iavmd_3.0.0.1010-9vmw.802.0.0.22380479, VMW_bootbank_icen_1.5.2.12-1vmw.802.0.0.22380479, VMW_bootbank_igbn_1.4.11.7-2vmw.802.0.0.22380479, VMW_bootbank_intelgpio_0.1-1vmw.802.0.0.22380479, VMW_bootbank_ionic-cloud_20.0.0-48vmw.802.0.0.22380479, VMW_bootbank_ionic-en-esxio_20.0.0-49vmw.802.0.0.22380479, VMW_bootbank_ionic-en_20.0.0-49vmw.802.0.0.22380479, VMW_bootbank_irdman_1.3.1.26-1vmw.802.0.0.22380479, VMW_bootbank_iser_1.1.0.2-1vmw.802.0.0.22380479, VMW_bootbank_ixgben_1.7.1.41-1vmw.802.0.0.22380479, VMW_bootbank_lpfc_14.2.641.5-32vmw.802.0.0.22380479, VMW_bootbank_lpnic_11.4.62.0-1vmw.802.0.0.22380479, VMW_bootbank_lsi-mr3_7.726.02.00-2vmw.802.0.0.22380479, VMW_bootbank_lsi-msgpt2_20.00.06.00-4vmw.802.0.0.22380479, VMW_bootbank_lsi-msgpt35_27.00.00.00-1vmw.802.0.0.22380479, VMW_bootbank_lsi-msgpt3_17.00.13.00-2vmw.802.0.0.22380479, VMW_bootbank_mlnx-bfbootctl-esxio_0.1-6vmw.802.0.0.22380479, VMW_bootbank_mnet-esxio_0.1-1vmw.802.0.0.22380479, VMW_bootbank_mtip32xx-native_3.9.8-1vmw.802.0.0.22380479, VMW_bootbank_ne1000_0.9.0-2vmw.802.0.0.22380479, VMW_bootbank_nenic_1.0.35.0-7vmw.802.0.0.22380479, VMW_bootbank_nfnic_5.0.0.35-5vmw.802.0.0.22380479, VMW_bootbank_nhpsa_70.0051.0.100-4vmw.802.0.0.22380479, VMW_bootbank_nipmi_1.0-1vmw.802.0.0.22380479, VMW_bootbank_nmlx5-cc-esxio_4.23.0.66-2vmw.802.0.0.22380479, VMW_bootbank_nmlx5-cc_4.23.0.66-2vmw.802.0.0.22380479, VMW_bootbank_nmlx5-core-esxio_4.23.0.66-2vmw.802.0.0.22380479, VMW_bootbank_nmlx5-core_4.23.0.66-2vmw.802.0.0.22380479, VMW_bootbank_nmlx5-rdma-esxio_4.23.0.66-2vmw.802.0.0.22380479, VMW_bootbank_nmlx5-rdma_4.23.0.66-2vmw.802.0.0.22380479, VMW_bootbank_nmlxbf-gige-esxio_2.2-1vmw.802.0.0.22380479, VMW_bootbank_nmlxbf-pmc-esxio_0.1-6vmw.802.0.0.22380479, VMW_bootbank_ntg3_4.1.13.0-4vmw.802.0.0.22380479, VMW_bootbank_nvme-pcie-esxio_1.2.4.11-1vmw.802.0.0.22380479, VMW_bootbank_nvme-pcie_1.2.4.11-1vmw.802.0.0.22380479, VMW_bootbank_nvmerdma_1.0.3.9-1vmw.802.0.0.22380479, VMW_bootbank_nvmetcp-esxio_1.0.1.8-1vmw.802.0.0.22380479, VMW_bootbank_nvmetcp_1.0.1.8-1vmw.802.0.0.22380479, VMW_bootbank_nvmxnet3-ens-esxio_2.0.0.23-5vmw.802.0.0.22380479, VMW_bootbank_nvmxnet3-ens_2.0.0.23-5vmw.802.0.0.22380479, VMW_bootbank_nvmxnet3-esxio_2.0.0.31-9vmw.802.0.0.22380479, VMW_bootbank_nvmxnet3_2.0.0.31-9vmw.802.0.0.22380479, VMW_bootbank_penedac-esxio_0.1-1vmw.802.0.0.22380479, VMW_bootbank_pengpio-esxio_0.1-1vmw.802.0.0.22380479, VMW_bootbank_pensandoatlas_1.46.0.E.28.1.312-2vmw.802.0.0.21879230, VMW_bootbank_penspi-esxio_0.1-1vmw.802.0.0.22380479, VMW_bootbank_pvscsi-esxio_0.1-5vmw.802.0.0.22380479, VMW_bootbank_pvscsi_0.1-5vmw.802.0.0.22380479, VMW_bootbank_qcnic_1.0.15.0-22vmw.802.0.0.22380479, VMW_bootbank_qedentv_3.40.5.73-4vmw.802.0.0.22380479, VMW_bootbank_qedrntv_3.40.5.73-4vmw.802.0.0.22380479, VMW_bootbank_qfle3_1.0.67.0-33vmw.802.0.0.22380479, VMW_bootbank_qfle3f_1.0.51.0-33vmw.802.0.0.22380479, VMW_bootbank_qfle3i_1.0.15.0-20vmw.802.0.0.22380479, VMW_bootbank_qflge_1.1.0.11-2vmw.802.0.0.22380479, VMW_bootbank_rd1173-esxio_0.1-1vmw.802.0.0.22380479, VMW_bootbank_rdmahl_1.0.0-1vmw.802.0.0.22380479, VMW_bootbank_rste_2.0.2.0088-7vmw.802.0.0.22380479, VMW_bootbank_sfvmk_2.4.0.2010-15vmw.802.0.0.22380479, VMW_bootbank_smartpqi_80.4495.0.5000-7vmw.802.0.0.22380479, VMW_bootbank_spidev-esxio_0.1-1vmw.802.0.0.22380479, VMW_bootbank_vmkata_0.1-1vmw.802.0.0.22380479, VMW_bootbank_vmksdhci-esxio_1.0.3-3vmw.802.0.0.22380479, VMW_bootbank_vmksdhci_1.0.3-3vmw.802.0.0.22380479, VMW_bootbank_vmkusb-esxio_0.1-18vmw.802.0.0.22380479, VMW_bootbank_vmkusb_0.1-18vmw.802.0.0.22380479, VMW_bootbank_vmw-ahci_2.0.17-1vmw.802.0.0.22380479, VMware_bootbank_bmcal-esxio_8.0.2-0.0.22380479, VMware_bootbank_bmcal_8.0.2-0.0.22380479, VMware_bootbank_clusterstore_8.0.2-0.0.22380479, VMware_bootbank_cpu-microcode_8.0.2-0.0.22380479, VMware_bootbank_crx_8.0.2-0.0.22380479, VMware_bootbank_drivervm-gpu-base_8.0.2-0.0.22380479, VMware_bootbank_elx-esx-libelxima.so_12.0.1200.0-6vmw.802.0.0.22380479, VMware_bootbank_esx-base_8.0.2-0.0.22380479, VMware_bootbank_esx-dvfilter-generic-fastpath_8.0.2-0.0.22380479, VMware_bootbank_esx-ui_2.14.0-21993070, VMware_bootbank_esx-update_8.0.2-0.0.22380479, VMware_bootbank_esx-xserver_8.0.2-0.0.22380479, VMware_bootbank_esxio-base_8.0.2-0.0.22380479, VMware_bootbank_esxio-combiner-esxio_8.0.2-0.0.22380479, VMware_bootbank_esxio-combiner_8.0.2-0.0.22380479, VMware_bootbank_esxio-dvfilter-generic-fastpath_8.0.2-0.0.22380479, VMware_bootbank_esxio-update_8.0.2-0.0.22380479, VMware_bootbank_esxio_8.0.2-0.0.22380479, VMware_bootbank_gc-esxio_8.0.2-0.0.22380479, VMware_bootbank_gc_8.0.2-0.0.22380479, VMware_bootbank_infravisor_8.0.2-0.0.22380479, VMware_bootbank_loadesx_8.0.2-0.0.22380479, VMware_bootbank_loadesxio_8.0.2-0.0.22380479, VMware_bootbank_lsuv2-hpv2-hpsa-plugin_1.0.0-4vmw.802.0.0.22380479, VMware_bootbank_lsuv2-intelv2-nvme-vmd-plugin_2.7.2173-2vmw.802.0.0.22380479, VMware_bootbank_lsuv2-lsiv2-drivers-plugin_1.0.2-1vmw.802.0.0.22380479, VMware_bootbank_lsuv2-nvme-pcie-plugin_1.0.0-1vmw.802.0.0.22380479, VMware_bootbank_lsuv2-oem-dell-plugin_1.0.0-2vmw.802.0.0.22380479, VMware_bootbank_lsuv2-oem-lenovo-plugin_1.0.0-2vmw.802.0.0.22380479, VMware_bootbank_lsuv2-smartpqiv2-plugin_1.0.0-10vmw.802.0.0.22380479, VMware_bootbank_native-misc-drivers-esxio_8.0.2-0.0.22380479, VMware_bootbank_native-misc-drivers_8.0.2-0.0.22380479, VMware_bootbank_qlnativefc_5.4.69.0-23vmw.802.0.0.22380479, VMware_bootbank_trx_8.0.2-0.0.22380479, VMware_bootbank_vdfs_8.0.2-0.0.22380479, VMware_bootbank_vds-vsip_8.0.2-0.0.22380479, VMware_bootbank_vmware-esx-esxcli-nvme-plugin-esxio_1.2.0.52-1vmw.802.0.0.22380479, VMware_bootbank_vmware-esx-esxcli-nvme-plugin_1.2.0.52-1vmw.802.0.0.22380479, VMware_bootbank_vmware-hbrsrv_8.0.2-0.0.22380479, VMware_bootbank_vsan_8.0.2-0.0.22380479, VMware_bootbank_vsanhealth_8.0.2-0.0.22380479, VMware_locker_tools-light_12.3.0.22234872-22380479
         VIBs Removed: VMW_bootbank_atlantic_1.0.3.0-11vmw.801.0.0.21495797, VMW_bootbank_bcm-mpi3_8.4.2.0.0.0-1vmw.801.0.0.21495797, VMW_bootbank_bfedac-esxio_0.1-1vmw.801.0.0.21495797, VMW_bootbank_bnxtnet_223.0.0.0-1vmw.801.0.0.21495797, VMW_bootbank_bnxtroce_223.0.0.0-1vmw.801.0.0.21495797, VMW_bootbank_brcmfcoe_12.0.1500.3-4vmw.801.0.0.21495797, VMW_bootbank_cndi-igc_1.2.10.0-1vmw.801.0.0.21495797, VMW_bootbank_dwi2c-esxio_0.1-7vmw.801.0.0.21495797, VMW_bootbank_dwi2c_0.1-7vmw.801.0.0.21495797, VMW_bootbank_elxiscsi_12.0.1200.0-11vmw.801.0.0.21495797, VMW_bootbank_elxnet_12.0.1250.0-8vmw.801.0.0.21495797, VMW_bootbank_i40en_1.11.3.5-1vmw.801.0.0.21495797, VMW_bootbank_iavmd_3.0.0.1010-8vmw.801.0.0.21495797, VMW_bootbank_icen_1.5.1.21-1vmw.801.0.0.21495797, VMW_bootbank_igbn_1.4.11.7-1vmw.801.0.0.21495797, VMW_bootbank_intelgpio_0.1-1vmw.801.0.0.21495797, VMW_bootbank_ionic-en-esxio_20.0.0-40vmw.801.0.0.21495797, VMW_bootbank_ionic-en_20.0.0-40vmw.801.0.0.21495797, VMW_bootbank_irdman_1.3.1.25-1vmw.801.0.0.21495797, VMW_bootbank_iser_1.1.0.2-1vmw.801.0.0.21495797, VMW_bootbank_ixgben_1.7.1.40-1vmw.801.0.0.21495797, VMW_bootbank_lpfc_14.2.560.8-23vmw.801.0.0.21495797, VMW_bootbank_lpnic_11.4.62.0-1vmw.801.0.0.21495797, VMW_bootbank_lsi-mr3_7.724.03.00-1vmw.801.0.0.21495797, VMW_bootbank_lsi-msgpt2_20.00.06.00-4vmw.801.0.0.21495797, VMW_bootbank_lsi-msgpt35_26.00.00.00-3vmw.801.0.0.21495797, VMW_bootbank_lsi-msgpt3_17.00.13.00-2vmw.801.0.0.21495797, VMW_bootbank_mlnx-bfbootctl-esxio_0.1-1vmw.801.0.0.21495797, VMW_bootbank_mnet-esxio_0.1-1vmw.801.0.0.21495797, VMW_bootbank_mtip32xx-native_3.9.8-1vmw.801.0.0.21495797, VMW_bootbank_ne1000_0.9.0-2vmw.801.0.0.21495797, VMW_bootbank_nenic_1.0.35.0-5vmw.801.0.0.21495797, VMW_bootbank_nfnic_5.0.0.35-4vmw.801.0.0.21495797, VMW_bootbank_nhpsa_70.0051.0.100-4vmw.801.0.0.21495797, VMW_bootbank_nmlx5-core-esxio_4.23.0.36-15vmw.801.0.25.22088125, VMW_bootbank_nmlx5-core_4.23.0.36-15vmw.801.0.25.22088125, VMW_bootbank_nmlx5-rdma-esxio_4.23.0.36-15vmw.801.0.25.22088125, VMW_bootbank_nmlx5-rdma_4.23.0.36-15vmw.801.0.25.22088125, VMW_bootbank_nmlxbf-gige-esxio_2.2-1vmw.801.0.0.21495797, VMW_bootbank_nmlxbf-pmc-esxio_0.1-1vmw.801.0.0.21495797, VMW_bootbank_ntg3_4.1.10.0-5vmw.801.0.25.22088125, VMW_bootbank_nvme-pcie-esxio_1.2.4.7-1vmw.801.0.0.21495797, VMW_bootbank_nvme-pcie_1.2.4.7-1vmw.801.0.0.21495797, VMW_bootbank_nvmerdma_1.0.3.9-1vmw.801.0.0.21495797, VMW_bootbank_nvmetcp_1.0.1.7-1vmw.801.0.25.22088125, VMW_bootbank_nvmxnet3-ens-esxio_2.0.0.23-2vmw.801.0.0.21495797, VMW_bootbank_nvmxnet3-ens_2.0.0.23-2vmw.801.0.0.21495797, VMW_bootbank_nvmxnet3-esxio_2.0.0.31-2vmw.801.0.0.21495797, VMW_bootbank_nvmxnet3_2.0.0.31-2vmw.801.0.0.21495797, VMW_bootbank_penedac-esxio_0.1-1vmw.801.0.0.21495797, VMW_bootbank_pengpio-esxio_0.1-1vmw.801.0.0.21495797, VMW_bootbank_pensandoatlas_1.46.0.E.28.1.303-2vmw.800.1.0.20796881, VMW_bootbank_penspi-esxio_0.1-1vmw.801.0.0.21495797, VMW_bootbank_pvscsi-esxio_0.1-5vmw.801.0.0.21495797, VMW_bootbank_pvscsi_0.1-5vmw.801.0.0.21495797, VMW_bootbank_qcnic_1.0.15.0-22vmw.801.0.0.21495797, VMW_bootbank_qedentv_3.40.5.70-7vmw.801.0.0.21495797, VMW_bootbank_qedrntv_3.40.5.70-3vmw.801.0.0.21495797, VMW_bootbank_qfle3_1.0.67.0-32vmw.801.0.0.21495797, VMW_bootbank_qfle3f_1.0.51.0-32vmw.801.0.0.21495797, VMW_bootbank_qfle3i_1.0.15.0-20vmw.801.0.0.21495797, VMW_bootbank_qflge_1.1.0.11-1vmw.801.0.0.21495797, VMW_bootbank_rd1173-esxio_0.1-1vmw.801.0.0.21495797, VMW_bootbank_rdmahl_1.0.0-1vmw.801.0.0.21495797, VMW_bootbank_rste_2.0.2.0088-7vmw.801.0.0.21495797, VMW_bootbank_sfvmk_2.4.0.2010-15vmw.801.0.0.21495797, VMW_bootbank_smartpqi_80.4385.0.200-1vmw.801.0.0.21495797, VMW_bootbank_spidev-esxio_0.1-1vmw.801.0.0.21495797, VMW_bootbank_vmkata_0.1-1vmw.801.0.0.21495797, VMW_bootbank_vmksdhci-esxio_1.0.3-3vmw.801.0.0.21495797, VMW_bootbank_vmksdhci_1.0.3-3vmw.801.0.0.21495797, VMW_bootbank_vmkusb-esxio_0.1-16vmw.801.0.0.21495797, VMW_bootbank_vmkusb_0.1-16vmw.801.0.0.21495797, VMW_bootbank_vmw-ahci_2.0.15-1vmw.801.0.0.21495797, VMware_bootbank_bmcal-esxio_8.0.1-0.25.22088125, VMware_bootbank_bmcal_8.0.1-0.25.22088125, VMware_bootbank_clusterstore_8.0.1-0.25.22088125, VMware_bootbank_cpu-microcode_8.0.1-0.25.22088125, VMware_bootbank_crx_8.0.1-0.25.22088125, VMware_bootbank_elx-esx-libelxima.so_12.0.1200.0-6vmw.801.0.0.21495797, VMware_bootbank_esx-base_8.0.1-0.25.22088125, VMware_bootbank_esx-dvfilter-generic-fastpath_8.0.1-0.25.22088125, VMware_bootbank_esx-ui_2.12.0-21482143, VMware_bootbank_esx-update_8.0.1-0.25.22088125, VMware_bootbank_esx-xserver_8.0.1-0.25.22088125, VMware_bootbank_esxio-base_8.0.1-0.25.22088125, VMware_bootbank_esxio-combiner-esxio_8.0.1-0.25.22088125, VMware_bootbank_esxio-combiner_8.0.1-0.25.22088125, VMware_bootbank_esxio-dvfilter-generic-fastpath_8.0.1-0.25.22088125, VMware_bootbank_esxio-update_8.0.1-0.25.22088125, VMware_bootbank_esxio_8.0.1-0.25.22088125, VMware_bootbank_gc-esxio_8.0.1-0.25.22088125, VMware_bootbank_gc_8.0.1-0.25.22088125, VMware_bootbank_loadesx_8.0.1-0.25.22088125, VMware_bootbank_loadesxio_8.0.1-0.25.22088125, VMware_bootbank_lsuv2-hpv2-hpsa-plugin_1.0.0-4vmw.801.0.0.21495797, VMware_bootbank_lsuv2-intelv2-nvme-vmd-plugin_2.7.2173-2vmw.801.0.0.21495797, VMware_bootbank_lsuv2-lsiv2-drivers-plugin_1.0.2-1vmw.801.0.0.21495797, VMware_bootbank_lsuv2-nvme-pcie-plugin_1.0.0-1vmw.801.0.0.21495797, VMware_bootbank_lsuv2-oem-dell-plugin_1.0.0-2vmw.801.0.0.21495797, VMware_bootbank_lsuv2-oem-lenovo-plugin_1.0.0-2vmw.801.0.0.21495797, VMware_bootbank_lsuv2-smartpqiv2-plugin_1.0.0-10vmw.801.0.0.21495797, VMware_bootbank_native-misc-drivers-esxio_8.0.1-0.25.22088125, VMware_bootbank_native-misc-drivers_8.0.1-0.25.22088125, VMware_bootbank_qlnativefc_5.4.69.0-16vmw.801.0.0.21495797, VMware_bootbank_trx_8.0.1-0.25.22088125, VMware_bootbank_vdfs_8.0.1-0.25.22088125, VMware_bootbank_vds-vsip_8.0.1-0.25.22088125, VMware_bootbank_vmware-esx-esxcli-nvme-plugin-esxio_1.2.0.52-1vmw.801.0.0.21495797, VMware_bootbank_vmware-esx-esxcli-nvme-plugin_1.2.0.52-1vmw.801.0.0.21495797, VMware_bootbank_vsan_8.0.1-0.25.22088125, VMware_bootbank_vsanhealth_8.0.1-0.25.22088125, VMware_locker_tools-light_12.2.5.21855600-22082334
         VIBs Skipped:
         Reboot Required: true
         DPU Results:
      [root@xd-1541-5028d:~] reboot
    ESXi-8.U2b

    Version: 8.0.2 (Build 22380479)
    to:
    Version: 8.0.2b (Build 23319993)

      login as: root
      Using keyboard-interactive authentication.
      Password:
      The time and date of this login have been sent to the system logs.
    
      WARNING:
         All commands run on the ESXi shell are logged and may be included in
         support bundles. Do not provide passwords directly on the command line.
         Most tools can prompt for secrets or accept them from standard input.
    
      VMware offers powerful and supported automation tools. Please
      see https://developer.vmware.com for details.
    
      The ESXi Shell can be disabled by an administrative user. See the
      vSphere Security documentation for more information.
      [root@xd-1541-5028d:~] esxcli network firewall ruleset set -e true -r httpClient
      [root@xd-1541-5028d:~] esxcli software profile update -p ESXi-8.0U2b-23305546-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml --no-hardware-warning
      [MemoryError]
      Please refer to the log file for more details.
      [root@xd-1541-5028d:~] esxcli system settings advanced set -o /VisorFS/VisorFSPristineTardisk -i 0
      [root@xd-1541-5028d:~] cp /usr/lib/vmware/esxcli-software /usr/lib/vmware/esxcli-software.bak
      [root@xd-1541-5028d:~] sed -i 's/mem=300/mem=500/g' /usr/lib/vmware/esxcli-software.bak
      [root@xd-1541-5028d:~] mv /usr/lib/vmware/esxcli-software.bak /usr/lib/vmware/esxcli-software -f
      [root@xd-1541-5028d:~] esxcli system settings advanced set -o /VisorFS/VisorFSPristineTardisk -i 1
      [root@xd-1541-5028d:~] esxcli software profile update -p ESXi-8.0U2b-23305546-standard -d https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml --no-hardware-warning
      Update Result
         Message: The update completed successfully, but the system needs to be rebooted for the changes to be effective.
         VIBs Installed: VMW_bootbank_pensandoatlas_1.46.0.E.28.1.314-2vmw.802.0.0.22939414, VMware_bootbank_bmcal-esxio_8.0.2-0.30.23305546, VMware_bootbank_bmcal_8.0.2-0.30.23305546, VMware_bootbank_clusterstore_8.0.2-0.30.23305546, VMware_bootbank_cpu-microcode_8.0.2-0.30.23305546, VMware_bootbank_crx_8.0.2-0.30.23305546, VMware_bootbank_drivervm-gpu-base_8.0.2-0.30.23305546, VMware_bootbank_esx-base_8.0.2-0.30.23305546, VMware_bootbank_esx-dvfilter-generic-fastpath_8.0.2-0.30.23305546, VMware_bootbank_esx-update_8.0.2-0.30.23305546, VMware_bootbank_esx-xserver_8.0.2-0.30.23305546, VMware_bootbank_esxio-base_8.0.2-0.30.23305546, VMware_bootbank_esxio-combiner-esxio_8.0.2-0.30.23305546, VMware_bootbank_esxio-combiner_8.0.2-0.30.23305546, VMware_bootbank_esxio-dvfilter-generic-fastpath_8.0.2-0.30.23305546, VMware_bootbank_esxio-update_8.0.2-0.30.23305546, VMware_bootbank_esxio_8.0.2-0.30.23305546, VMware_bootbank_gc-esxio_8.0.2-0.30.23305546, VMware_bootbank_gc_8.0.2-0.30.23305546, VMware_bootbank_infravisor_8.0.2-0.30.23305546, VMware_bootbank_loadesx_8.0.2-0.30.23305546, VMware_bootbank_loadesxio_8.0.2-0.30.23305546, VMware_bootbank_native-misc-drivers-esxio_8.0.2-0.30.23305546, VMware_bootbank_native-misc-drivers_8.0.2-0.30.23305546, VMware_bootbank_trx_8.0.2-0.30.23305546, VMware_bootbank_vdfs_8.0.2-0.30.23305546, VMware_bootbank_vds-vsip_8.0.2-0.30.23305546, VMware_bootbank_vmware-hbrsrv_8.0.2-0.30.23305546, VMware_bootbank_vsan_8.0.2-0.30.23305546, VMware_bootbank_vsanhealth_8.0.2-0.30.23305546, VMware_locker_tools-light_12.3.5.22544099-23305545
         VIBs Removed: VMW_bootbank_pensandoatlas_1.46.0.E.28.1.312-2vmw.802.0.0.21879230, VMware_bootbank_bmcal-esxio_8.0.2-0.0.22380479, VMware_bootbank_bmcal_8.0.2-0.0.22380479, VMware_bootbank_clusterstore_8.0.2-0.0.22380479, VMware_bootbank_cpu-microcode_8.0.2-0.0.22380479, VMware_bootbank_crx_8.0.2-0.0.22380479, VMware_bootbank_drivervm-gpu-base_8.0.2-0.0.22380479, VMware_bootbank_esx-base_8.0.2-0.0.22380479, VMware_bootbank_esx-dvfilter-generic-fastpath_8.0.2-0.0.22380479, VMware_bootbank_esx-update_8.0.2-0.0.22380479, VMware_bootbank_esx-xserver_8.0.2-0.0.22380479, VMware_bootbank_esxio-base_8.0.2-0.0.22380479, VMware_bootbank_esxio-combiner-esxio_8.0.2-0.0.22380479, VMware_bootbank_esxio-combiner_8.0.2-0.0.22380479, VMware_bootbank_esxio-dvfilter-generic-fastpath_8.0.2-0.0.22380479, VMware_bootbank_esxio-update_8.0.2-0.0.22380479, VMware_bootbank_esxio_8.0.2-0.0.22380479, VMware_bootbank_gc-esxio_8.0.2-0.0.22380479, VMware_bootbank_gc_8.0.2-0.0.22380479, VMware_bootbank_infravisor_8.0.2-0.0.22380479, VMware_bootbank_loadesx_8.0.2-0.0.22380479, VMware_bootbank_loadesxio_8.0.2-0.0.22380479, VMware_bootbank_native-misc-drivers-esxio_8.0.2-0.0.22380479, VMware_bootbank_native-misc-drivers_8.0.2-0.0.22380479, VMware_bootbank_trx_8.0.2-0.0.22380479, VMware_bootbank_vdfs_8.0.2-0.0.22380479, VMware_bootbank_vds-vsip_8.0.2-0.0.22380479, VMware_bootbank_vmware-hbrsrv_8.0.2-0.0.22380479, VMware_bootbank_vsan_8.0.2-0.0.22380479, VMware_bootbank_vsanhealth_8.0.2-0.0.22380479, VMware_locker_tools-light_12.3.0.22234872-22380479
         VIBs Skipped: VMW_bootbank_atlantic_1.0.3.0-12vmw.802.0.0.22380479, VMW_bootbank_bcm-mpi3_8.6.1.0.0.0-1vmw.802.0.0.22380479, VMW_bootbank_bfedac-esxio_0.1-1vmw.802.0.0.22380479, VMW_bootbank_bnxtnet_225.0.4.0-8vmw.802.0.0.22380479, VMW_bootbank_bnxtroce_225.0.4.0-8vmw.802.0.0.22380479, VMW_bootbank_brcmfcoe_12.0.1500.3-4vmw.802.0.0.22380479, VMW_bootbank_cndi-igc_1.2.10.0-1vmw.802.0.0.22380479, VMW_bootbank_dwi2c-esxio_0.1-7vmw.802.0.0.22380479, VMW_bootbank_dwi2c_0.1-7vmw.802.0.0.22380479, VMW_bootbank_elxiscsi_12.0.1200.0-11vmw.802.0.0.22380479, VMW_bootbank_elxnet_12.0.1250.0-8vmw.802.0.0.22380479, VMW_bootbank_i40en_1.11.3.10-1vmw.802.0.0.22380479, VMW_bootbank_iavmd_3.0.0.1010-9vmw.802.0.0.22380479, VMW_bootbank_icen_1.5.2.12-1vmw.802.0.0.22380479, VMW_bootbank_igbn_1.4.11.7-2vmw.802.0.0.22380479, VMW_bootbank_intelgpio_0.1-1vmw.802.0.0.22380479, VMW_bootbank_ionic-cloud_20.0.0-48vmw.802.0.0.22380479, VMW_bootbank_ionic-en-esxio_20.0.0-49vmw.802.0.0.22380479, VMW_bootbank_ionic-en_20.0.0-49vmw.802.0.0.22380479, VMW_bootbank_irdman_1.3.1.26-1vmw.802.0.0.22380479, VMW_bootbank_iser_1.1.0.2-1vmw.802.0.0.22380479, VMW_bootbank_ixgben_1.7.1.41-1vmw.802.0.0.22380479, VMW_bootbank_lpfc_14.2.641.5-32vmw.802.0.0.22380479, VMW_bootbank_lpnic_11.4.62.0-1vmw.802.0.0.22380479, VMW_bootbank_lsi-mr3_7.726.02.00-2vmw.802.0.0.22380479, VMW_bootbank_lsi-msgpt2_20.00.06.00-4vmw.802.0.0.22380479, VMW_bootbank_lsi-msgpt35_27.00.00.00-1vmw.802.0.0.22380479, VMW_bootbank_lsi-msgpt3_17.00.13.00-2vmw.802.0.0.22380479, VMW_bootbank_mlnx-bfbootctl-esxio_0.1-6vmw.802.0.0.22380479, VMW_bootbank_mnet-esxio_0.1-1vmw.802.0.0.22380479, VMW_bootbank_mtip32xx-native_3.9.8-1vmw.802.0.0.22380479, VMW_bootbank_ne1000_0.9.0-2vmw.802.0.0.22380479, VMW_bootbank_nenic_1.0.35.0-7vmw.802.0.0.22380479, VMW_bootbank_nfnic_5.0.0.35-5vmw.802.0.0.22380479, VMW_bootbank_nhpsa_70.0051.0.100-4vmw.802.0.0.22380479, VMW_bootbank_nipmi_1.0-1vmw.802.0.0.22380479, VMW_bootbank_nmlx5-cc-esxio_4.23.0.66-2vmw.802.0.0.22380479, VMW_bootbank_nmlx5-cc_4.23.0.66-2vmw.802.0.0.22380479, VMW_bootbank_nmlx5-core-esxio_4.23.0.66-2vmw.802.0.0.22380479, VMW_bootbank_nmlx5-core_4.23.0.66-2vmw.802.0.0.22380479, VMW_bootbank_nmlx5-rdma-esxio_4.23.0.66-2vmw.802.0.0.22380479, VMW_bootbank_nmlx5-rdma_4.23.0.66-2vmw.802.0.0.22380479, VMW_bootbank_nmlxbf-gige-esxio_2.2-1vmw.802.0.0.22380479, VMW_bootbank_nmlxbf-pmc-esxio_0.1-6vmw.802.0.0.22380479, VMW_bootbank_ntg3_4.1.13.0-4vmw.802.0.0.22380479, VMW_bootbank_nvme-pcie-esxio_1.2.4.11-1vmw.802.0.0.22380479, VMW_bootbank_nvme-pcie_1.2.4.11-1vmw.802.0.0.22380479, VMW_bootbank_nvmerdma_1.0.3.9-1vmw.802.0.0.22380479, VMW_bootbank_nvmetcp-esxio_1.0.1.8-1vmw.802.0.0.22380479, VMW_bootbank_nvmetcp_1.0.1.8-1vmw.802.0.0.22380479, VMW_bootbank_nvmxnet3-ens-esxio_2.0.0.23-5vmw.802.0.0.22380479, VMW_bootbank_nvmxnet3-ens_2.0.0.23-5vmw.802.0.0.22380479, VMW_bootbank_nvmxnet3-esxio_2.0.0.31-9vmw.802.0.0.22380479, VMW_bootbank_nvmxnet3_2.0.0.31-9vmw.802.0.0.22380479, VMW_bootbank_penedac-esxio_0.1-1vmw.802.0.0.22380479, VMW_bootbank_pengpio-esxio_0.1-1vmw.802.0.0.22380479, VMW_bootbank_penspi-esxio_0.1-1vmw.802.0.0.22380479, VMW_bootbank_pvscsi-esxio_0.1-5vmw.802.0.0.22380479, VMW_bootbank_pvscsi_0.1-5vmw.802.0.0.22380479, VMW_bootbank_qcnic_1.0.15.0-22vmw.802.0.0.22380479, VMW_bootbank_qedentv_3.40.5.73-4vmw.802.0.0.22380479, VMW_bootbank_qedrntv_3.40.5.73-4vmw.802.0.0.22380479, VMW_bootbank_qfle3_1.0.67.0-33vmw.802.0.0.22380479, VMW_bootbank_qfle3f_1.0.51.0-33vmw.802.0.0.22380479, VMW_bootbank_qfle3i_1.0.15.0-20vmw.802.0.0.22380479, VMW_bootbank_qflge_1.1.0.11-2vmw.802.0.0.22380479, VMW_bootbank_rd1173-esxio_0.1-1vmw.802.0.0.22380479, VMW_bootbank_rdmahl_1.0.0-1vmw.802.0.0.22380479, VMW_bootbank_rste_2.0.2.0088-7vmw.802.0.0.22380479, VMW_bootbank_sfvmk_2.4.0.2010-15vmw.802.0.0.22380479, VMW_bootbank_smartpqi_80.4495.0.5000-7vmw.802.0.0.22380479, VMW_bootbank_spidev-esxio_0.1-1vmw.802.0.0.22380479, VMW_bootbank_vmkata_0.1-1vmw.802.0.0.22380479, VMW_bootbank_vmksdhci-esxio_1.0.3-3vmw.802.0.0.22380479, VMW_bootbank_vmksdhci_1.0.3-3vmw.802.0.0.22380479, VMW_bootbank_vmkusb-esxio_0.1-18vmw.802.0.0.22380479, VMW_bootbank_vmkusb_0.1-18vmw.802.0.0.22380479, VMW_bootbank_vmw-ahci_2.0.17-1vmw.802.0.0.22380479, VMware_bootbank_elx-esx-libelxima.so_12.0.1200.0-6vmw.802.0.0.22380479, VMware_bootbank_esx-ui_2.14.0-21993070, VMware_bootbank_lsuv2-hpv2-hpsa-plugin_1.0.0-4vmw.802.0.0.22380479, VMware_bootbank_lsuv2-intelv2-nvme-vmd-plugin_2.7.2173-2vmw.802.0.0.22380479, VMware_bootbank_lsuv2-lsiv2-drivers-plugin_1.0.2-1vmw.802.0.0.22380479, VMware_bootbank_lsuv2-nvme-pcie-plugin_1.0.0-1vmw.802.0.0.22380479, VMware_bootbank_lsuv2-oem-dell-plugin_1.0.0-2vmw.802.0.0.22380479, VMware_bootbank_lsuv2-oem-lenovo-plugin_1.0.0-2vmw.802.0.0.22380479, VMware_bootbank_lsuv2-smartpqiv2-plugin_1.0.0-10vmw.802.0.0.22380479, VMware_bootbank_qlnativefc_5.4.69.0-23vmw.802.0.0.22380479, VMware_bootbank_vmware-esx-esxcli-nvme-plugin-esxio_1.2.0.52-1vmw.802.0.0.22380479, VMware_bootbank_vmware-esx-esxcli-nvme-plugin_1.2.0.52-1vmw.802.0.0.22380479
         Reboot Required: true
         DPU Results:
      [root@xd-1541-5028d:~] reboot