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

  • VCF 9.0 Single Sign-On (SSO) with Keycloak IdP
  • PowerCLI remediation script for running NSX Edge on AMD Ryzen for VCF 9.0
  • Failed to locate kickstart on Nested ESXi VM CD-ROM in VCF 9.0
  • NVMe Tiering with Nested Virtualization in VCF 9.0
  • VCF 9.0 Installer workaround for ESXi hosts with different vendor

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

  • VCF 9.0 Single Sign-On (SSO) with Keycloak IdP 06/23/2025
  • Is my NIC supported with Enhanced Data Path (EDP) with VCF 9.0 06/23/2025
  • PowerCLI remediation script for running NSX Edge on AMD Ryzen for VCF 9.0 06/20/2025
  • Failed to locate kickstart on Nested ESXi VM CD-ROM in VCF 9.0 06/20/2025
  • NVMe Tiering with Nested Virtualization in VCF 9.0 06/20/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...