WilliamLam.com

  • About
    • About
    • Privacy
  • VMware Cloud Foundation
  • VKS
  • Homelab
    • Hardware Options
    • Hardware Reviews
    • Lab Deployment Scripts
    • Nested Virtualization
    • Homelab Podcasts
  • VMware Nostalgia
  • Apple
You are here: Home / ESXi / Is my NIC supported with Enhanced Data Path (EDP) with VCF 9.0

Is my NIC supported with Enhanced Data Path (EDP) with VCF 9.0

06.23.2025 by William Lam // Leave a Comment

By default, VMware Cloud Foundation (VCF) 9.0 will use the optimized Enhanced Data Path (EDP) Standard switch mode when configuring NSX, which will require you to have an EDP capable network adaptor. One way to check whether your network adaptor supports EDP is by using the Broadcom Compatibility Guide (BCG) and ensuring "Enhanced Data Path - Interrupt mode" feature

Alternatively, if you already have ESXi running, you can quickly check by running the following command: esxcfg-nics -e

Here is an example output from a Minisforum MS-A2, as you can see the 2.5gbE NIC is not EDP capable, but the dual 10GbE SPF+ NICs are


Here is another example output from a GMKtec NucBox K11, both of the 2.5GbE NIC are not EDP capable


You can also remotely check an ESXi host by using PowerCLI using the following:

$networkMgr = Get-View (Get-VMHost).ExtensionData.ConfigManager.NetworkSystem
$networkMgr.NetworkInfo.Pnic | select device, Driver,  EnsInterruptSupported

Here is the same output from the Minisforum MS-A2


Can I still deploy VCF 9.0 without EDP capable NIC? Absolutely, simply select Standard rather than the EDP Standard switch mode during the VCF Installer.


For those deploying using the JSON method, you will need to add additional configuration entry under nsxtSwitchConfig that looks like the following:

"nsxtSwitchConfig": {
  "transportZones": [
    {
      "transportType": "OVERLAY",
      "name": "vcf-overlay-TZ"
    },
    {
      "transportType": "VLAN",
      "name": "vcf-vlan-TZ"
    }
  ],
  "hostSwitchOperationalMode": "STANDARD"
}

The supported values are STANDARD for Standard and ENS_INTERRUPT for EDP Standard.

More from my site

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

Categories // ESXi, NSX, PowerCLI, VMware Cloud Foundation Tags // VCF 9.0

Thanks for the comment!Cancel reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.

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...