VMware vSphere

 View Only
Expand all | Collapse all

How to tell which NIC driver version I am using

  • 1.  How to tell which NIC driver version I am using

    Posted Oct 01, 2015 06:26 PM

    How do I tell which HP NIC Driver I am using on my DL380 running ESXi 6.0?



  • 2.  RE: How to tell which NIC driver version I am using
    Best Answer

    Posted Oct 01, 2015 07:21 PM

    Login ESXi and Run the below command

    1. # esxcli network nic list

    2. Run the ethtool -i command to display available information for one of the network interfaces, specifying its name from step 1

      # ethtool -i VMNic_name

      For example:

      # ethtool -i vmnic0

      driver: ACME
      version: 1.2.3a-1vmw
      firmware-version: 7.8.9
      bus-info: 0000:02:04.00


    --- If you find this or any other answer useful please mark the answer as Correct or Helpful ---



  • 3.  RE: How to tell which NIC driver version I am using

    Posted Oct 01, 2015 08:00 PM

    Thank you!