WilliamLam.com

  • About
    • About
    • Privacy
  • VMware Cloud Foundation
  • VKS
  • Homelab
    • Hardware Options
    • Hardware Reviews
    • Lab Deployment Scripts
    • Nested Virtualization
    • Homelab Podcasts
  • VMware Nostalgia
  • Apple

Supermicro 2021 Homelab Group Buy

06.02.2021 by William Lam // 26 Comments


After many months of planning and discussions, today I am excited to share the Supermicro 2021 Homelab Group Buy with the VMware Community! 🥳

A big thanks to both Supermicro and the Aspen Systems team for supporting this community initiative.

Details

This group buy is for a barebones (includes CPU) Supermicro E300-9D-8CN-8TP, which is a very capable platform for running your VMware Homelab which I have previously written about here and here. As a successor to the popular E200-8D, another benefit of the E300-9D is that it is officially listed on the VMware HCL and is supported with the latest vSphere 7.0 Update 2 release.

Since this is the first time we are partnering up with both Supermicro and Aspen Systems for a group buy, we wanted to keep the program simple and initially focus on US based users. If this group buy is successful, we will work with the team to run a similar group buy for other regions such as EMEA/APJ. For this group buy, we have been able to secure a 20% discount for the VMware Community and does require a minimum quantity of 300 units to be purchased to qualify for the discounted rate. If you are interested in participating in this group buy, please visit the URL below. In addition, I will also periodically update this blog post with the latest numbers, so folks have an idea of the overall progress.

Lastly, please help get the word out by sharing this blog post with your friends, colleagues and social network!

UPDATE 3 (07/07/21) - Unfortunately, we did not meet the minimum requirements based on the final results and this group buy will NOT be proceeding. I have no plans to re-attempt this and/or future group buys as this was a non-trivial amount of work.

I also have no plans to re-attempt this for other regions, this was a non-trivial amount of work on my end and although there was a lot of "interests" from the community, it did not actually translate to folks committing. Sorry to disappoint folks who wanted this to go through, it seems the community has spoken

UPDATE 2 (06/03/21) - Shipping estimates have changed to ~12-14 weeks due to current global shortages. Group buy website has also been updated to reflect units sold, which will happen at the end of each business day.

UPDATE 1 (06/02/21) - Quantity per customer has been increased to 4

Details Description
Minimum Quantity 300
Unit Cost $1350 (includes taxes and fees)
Shipping Cost Calculated based on destination
Shipping Time ~12-14 weeks
Start Date June 2 2021
End Date July 5 2021
Group Buy URL http://vmwa.re/supermicro-2021-groupbuy

Categories // Home Lab Tags // homelab, Supermicro

2021 VMUG Advantage Community Group Buy

04.28.2021 by William Lam // 1 Comment

Last year, I partnered up with the VMware User Group (VMUG) organization and shared with the VMware Community a special VMUG Advantage Homelab Group Buy offering, a first of its kind and it was a huge success! In fact, I still get pinged on a regular basis about the previous group buy and whether there would be another group buy?

Today, I am pleased to announce that both myself and Duncan Epping have teamed up with the VMUG organization to bring to the VMware Community the 2021 VMUG Advantage Group Buy!

For those not familiar with the VMUG Advantage membership, it provides benefits such as access to training, VMworld discounts but also to EVALExperience, which provides you with 365-days access (non-production usage) to the latest VMware solutions such as vSphere, vSAN, NSX, vRealize Suite and VMware Cloud Foundation. The EVALExperience alone is worth the normal $200 USD membership fee and is certainly one of the cheapest and easiest way to get access to all the latest VMware offerings for homelab and educational purposes.

The table below provides the respective discounts based on the quantity of VMUG Advantage membership purchases. The larger the interests group, the larger the discount.

[Read more...]

Categories // Home Lab Tags // homelab, VMUG

ESXi 7.0 Update 2 enhancement for USB NIC only installations

03.16.2021 by William Lam // 15 Comments

The USB Network Native Driver for ESXi Fling has been an extremely popular Fling that has allowed customers to easily add additional networking capabilities by using a supported USB-based network adapter even though ESXi traffic over USB networking is not officially supported.

In most deployments, the USB network adapter is usually a supplement to the existing onboard network adapter of a system. However, there have been scenarios where the onboard network adapter is either not available or functional and customers would still like to be able to install ESXi and have it running over just the USB network adapter.

Although installing ESXi using just a USB network adapter is possible today, one downside is that an additional workflow is needed to fix the network binding after installing ESXi.

During the interactive ESXi installation, you will see the following error at 81% which will cause installer to get stuck

Exception: No vmknic tagged for management was found.

At this point, the installer has completed and you need to switch to the console (Alt+F1) and just perform a reboot to actually complete the installation.


After ESXi boots up for the first time after the install, you will need to go into the DCUI and manually bind the vusb0 interface for ESXi management for connectivity. To persist this USB NIC binding, you will need to add small snippet to /etc/rc.local.d/local.sh

Standard Virtual Switch (VSS):

vusb0_status=$(esxcli network nic get -n vusb0 | grep 'Link Status' | awk '{print $NF}')
count=0
while [[ $count -lt 20 && "${vusb0_status}" != "Up" ]]
do
    sleep 10
    count=$(( $count + 1 ))
    vusb0_status=$(esxcli network nic get -n vusb0 | grep 'Link Status' | awk '{print $NF}')
done

esxcfg-vswitch -R

Distributed Virtual Switch (VDS):

VDS_0_NAME=vDS
VDS_0_PORT_ID=10
VDS_1_NAME=vDS-NSX
VDS_1_PORT_ID=2

vusb0_status=$(esxcli network nic get -n vusb0 | grep 'Link Status' | awk '{print "v0:" $NF}') && vusb1_status=$(esxcli network nic get -n vusb1 | grep 'Link Status' | awk '{print "v1:" $NF}')
count=0
while [[ $count -lt 40 ]] && [[ "${vusb0_status}" != "v0:Up" || "${vusb1_status}" != "v1:Up" ]]
do
    sleep 5
    count=$(( $count + 1 ))
    vusb0_status=$(esxcli network nic get -n vusb0 | grep 'Link Status' | awk '{print "v0:" $NF}') && vusb1_status=$(esxcli network nic get -n vusb1 | grep 'Link Status' | awk '{print "v1:" $NF}')
done

if [ "${vusb0_status}" = "v0:Up" ]; then
    esxcfg-vswitch -P vusb0 -V ${VDS_0_PORT_ID} ${VDS_0_NAME}
fi

if [ "${vusb1_status}" = "v1:Up" ]; then
    esxcfg-vswitch -P vusb1 -V ${VDS_1_PORT_ID} ${VDS_1_NAME}
fi

Note: The vusbX vmkernel interface may not show up in either ESXi Embedded Host Client and/or vSphere HTML5 UI, this does not mean there is an issue. ESXi was never designed to support USB-based NICs for Management Network and the UI may not properly detect these devices when using the UI. It is recommended to use the ESXi Shell for any operations requiring configuration of vusbX devices.

Obviously, this was not an ideal user experience and I personally had to use this workaround on several occasions, especially for newer hardware platforms where the onboard network adapter may not be recognized by ESXi and being able to use the USB Network Fling definitely came in handy.

With the release of ESXi 7.0 Update 2, we have improved the user experience for installing ESXi with just a single USB NIC. This enhancement was added by Songtao after mentioning the undesirable behavior. A new driver parameter called usbBusFullScanOnBootEnabled has been introduced and can added after the initial installation which removes the need for the workaround mentioned above by editing the local.sh file. This new parameter instructs ESXi to perform a full bus scan to claim all USB NICs that are attached since USB device claiming is slow compared to PCIe devices.

[Read more...]

Categories // ESXi, Home Lab, vSphere 7.0 Tags // ESXi 7.0 Update 2, vSphere 7.0 Update 2

  • « Previous Page
  • 1
  • …
  • 24
  • 25
  • 26
  • 27
  • 28
  • …
  • 55
  • Next Page »

Search

Thank Author

Author

William is Distinguished Platform Engineering Architect in the VMware Cloud Foundation (VCF) Division at Broadcom. His primary focus is helping customers and partners build, run and operate a modern Private Cloud using the VMware Cloud Foundation (VCF) platform.

Connect

  • Bluesky
  • Email
  • GitHub
  • LinkedIn
  • Mastodon
  • Reddit
  • RSS
  • Twitter
  • Vimeo

Recent

  • Ultimate Lab Resource for VCF 9.0 06/25/2025
  • VMware Cloud Foundation (VCF) on ASUS NUC 15 Pro (Cyber Canyon) 06/25/2025
  • VMware Cloud Foundation (VCF) on Minisforum MS-A2 06/25/2025
  • VCF 9.0 Offline Depot using Synology 06/25/2025
  • Deploying VCF 9.0 on a single ESXi host? 06/24/2025

Advertisment

Privacy & Cookies: This site uses cookies. By continuing to use this website, you agree to their use.
To find out more, including how to control cookies, see here: Cookie Policy

Copyright WilliamLam.com © 2025

 

Loading Comments...