分享

ESXI7.0封装最新版英特尔I225/I219网卡驱动

 pio9999 2022-08-03 发布于广西

前言

英特尔型号的网卡,同样型号还有代数的区别,比如I219网卡,ESXI目前能驱动的是intel Ethernet Connection (7) I219-V版本,而我的网卡是intel Ethernet Connection (12) I219-V,版本号是12,所以要自行封装网卡驱动。
omnReMFYyghJ72t.png

同样有些朋友的网卡是I225系列,同样需要进行封装。

由于使用的朋友太多,有些朋友同时会缺少nvme硬盘和USB驱动,所以再次一并加上。

1、网卡驱动:Community Networking Driver for ESXi

截止发文最新版为Net-Community-Driver_1.2.7.0-1vmw.700.1.0.15843807_19480755.zip

此驱动支持的网卡列表

igc-community

VendorChipsetVendorIDProductID
IntelEthernet Controller I225-LM0x80860x15f2
IntelEthernet Controller I225-V0x80860x15f3
IntelEthernet Controller I225-IT(2)0x80860xd9f
IntelEthernet Controller I225-I0x80860x15f8
IntelEthernet Controller I225-K0x80860x3100
IntelEthernet Controller I225-K(2)0x80860x3101
IntelEthernet Controller I225-LMvP(2)0x80860x5502
IntelEthernet Controller I226-K0x80860x5504
IntelEthernet Controller I226-LM0x80860x125b
IntelEthernet Controller I226-V0x80860x125c
IntelEthernet Controller I226-IT0x80860x125d
IntelEthernet Controller I220-V0x80860x15f7
IntelEthernet Controller I221-V0x80860x125e

e1000-community

VendorChipsetVendorIDProductID
IntelEthernet Connection (6) I219-LM0x80860x15bd
IntelEthernet Connection (6) I219-V0x80860x15be
IntelEthernet Connection (7) I219-LM0x80860x15bb
IntelEthernet Connection (7) I219-V0x80860x15bc
IntelEthernet Connection (10) I219-LM0x80860x0d4e
IntelEthernet Connection (10) I219-V0x80860x0d4f
IntelEthernet Connection (11) I219-LM0x80860x0d4c
IntelEthernet Connection (11) I219-V0x80860x0d4d
IntelEthernet Connection (12) I219-LM0x80860x0d53
IntelEthernet Connection (12) I219-V0x80860x0d55
IntelEthernet Connection (13) I219-LM0x80860x155b
IntelEthernet Connection (13) I219-V0x80860x155c
IntelEthernet Connection (14) I219-LM0x80860x15f9
IntelEthernet Connection (14) I219-V0x80860x15fa
IntelEthernet Connection (15) I219-LM0x80860x15f4
IntelEthernet Connection (15) I219-V0x80860x15f5
IntelEthernet Connection (16) I219-LM0x80860x1a1e
IntelEthernet Connection (17) I219-V0x80860x1a1f
IntelEthernet Connection (17) I219-LM0x80860x1a1c
IntelEthernet Connection (17) I219-V0x80860x1a1d

2、USB驱动:USB Network Native Driver for ESXi

截止发文最新版为ESXi703-VMKUSB-NIC-FLING-55634242-component-19849370.zip

此驱动支持的USB列表

VendorChipsetVendorIDProductID
AQUANTIAAQC111U0xe05a0x20f4
AQUANTIAAquantia Pacific0x2eca0xc101
ASIXAX881790x0b950x1790
ASIXAX88178a0x0b950x178a
CISCO LINKSYSRTL81530x13b10x0041
DLINKAX881790x20010x4a00
INSYDE SOFTWARE CORPInsyde Software Corp.0x0b1f0x03ee
LENOVORTL81530x17ef0x3062
LENOVORTL81530x17ef0x3069
LENOVORTL81530x17ef0x720a
LENOVOAX881790x17ef0x304b
LENOVORTL81530x17ef0x7205
NVIDIARTL81530x09550x09ff
QualcommNA0x0b050x1976
QualcommNA0x1A560x3100
REALTEKRTL81520x0bda0x8152
REALTEKRTL81530x0bda0x8153
REALTEKRTL81560x0bda0x8156
REALTEKRTL81530x045e0x07c6
SITECOMEUAX881790x0df60x0072
SUPERMICROSupermicro computer Inc0x15d90x1b83
TP-LINKRTL81530x23570x0601
TRENDNETAQC111U0xe05a0x20f4

3、NVMe硬盘驱动:Community NVMe Driver for ESXi

截止发文最新版为nvme-community-driver_1.0.1.0-3vmw.700.1.0.15843807-component-18902434.zip

此驱动支持的NVMe硬盘列表

VendorVendorIDProductID
ADATA0x1cc18201
Micro/Crucial0xc0a90x2263
Silicon Motion0x126f0x2262

自己动手封装

1、电脑安装VMware.PowerCLI

打开电脑上的Windows PowerShell,输入以下命令安装

Install-Module -Name VMware.PowerCLI

XYmAnRzyBehVuSs.png

2、信任模块

运行以下命令,输入Y确认

set-ExecutionPolicy RemoteSigned

image.png

3、下载官方ISO和驱动文件

ESXI安装镜像可自行从官网下载,我后面提供的脚本是ESXI6.7U3和ESXI7.0b,其他版本要稍微更改一下命令。

驱动安装包下载:
驱动名称请参考上文,共有USB、硬盘、网卡三个驱动。
前往公众号【神奇码农】,发送消息【英特尔网卡驱动】即可获取。
E689ABE7A081_E6909CE7B4A2E88194E59088E4BCA0E692ADE6A0B7E5BC8F-E799BDE889B2E78988-2dddcb08666a47b1ba1d6e214a1fef97.jpg

4、封装驱动

打开电脑上的Windows PowerShell,将下述命令中的文件路径更改为自己电脑上存放的路径后,逐条在Windows PowerShell中运行。

注意zip文件所在路径。

ESXI7.0U3d版本(包含三个驱动)

$esxiOfflineBundle = "E:\esxi\VMware-ESXi-7.0U3d-19482537-depot.zip"
$usbNicOfflineBundle = "E:\\esxi\\ESXi703-VMKUSB-NIC-FLING-55634242-component-19849370.zip"
$nvmeNicOfflineBundle = "E:\\esxi\\nvme-community-driver_1.0.1.0-3vmw.700.1.0.15843807-component-18902434.zip"
$intelNicOfflineBundle = "E:\\esxi\\Net-Community-Driver_1.2.7.0-1vmw.700.1.0.15843807_19480755.zip"
$esxiImageProfileName = "ESXi-7.0U3d-19482537-standard"
$newImageProfileName = "ESXi-7.0U3d-19482537-Intel-i219_i225"
Add-EsxSoftwareDepot $esxiOfflineBundle
Add-EsxSoftwareDepot $usbNicOfflineBundle
Add-EsxSoftwareDepot $nvmeNicOfflineBundle
Add-EsxSoftwareDepot $intelNicOfflineBundle
New-EsxImageProfile -CloneProfile $esxiImageProfileName -Name $newImageProfileName -Vendor ashin
Add-EsxSoftwarePackage -ImageProfile $newImageProfileName -SoftwarePackage "vmkusb-nic-fling"
Add-EsxSoftwarePackage -ImageProfile $newImageProfileName -SoftwarePackage "nvme-community"
Add-EsxSoftwarePackage -ImageProfile $newImageProfileName -SoftwarePackage "net-community"
Export-EsxImageProfile -ImageProfile $newImageProfileName -ExportToIso -FilePath "E:\esxi\ESXi-7.0U3d-19482537-usb-nvme-Intel-i219_i225.ISO"

ESXI7.0U3c版本(只含网卡驱动)

$esxiOfflineBundle = "C:\esxi\VMware-ESXi-7.0U3c-19193900-depot.zip"
$intelNicOfflineBundle = "C:\esxi\Net-Community-Driver_1.2.0.0-1vmw.700.1.0.15843807_18028830.zip"
$esxiImageProfileName = "ESXi-7.0U3c-19193900-standard"
$newImageProfileName = "ESXi-7.0U3c-19193900-Intel-i219_i225"
Add-EsxSoftwareDepot $esxiOfflineBundle
Add-EsxSoftwareDepot $intelNicOfflineBundle
New-EsxImageProfile -CloneProfile $esxiImageProfileName -Name $newImageProfileName -Vendor ashin
Add-EsxSoftwarePackage -ImageProfile $newImageProfileName -SoftwarePackage "net-community"
Export-EsxImageProfile -ImageProfile $newImageProfileName -ExportToIso -FilePath "C:\esxi\ESXi-7.0U3c-19193900-Intel-i219_i225.ISO"

命令运行如果没有问题,则会生成新的ISO文件,安装即可。
如果不想要ISO文件,想要离线安装包,则最后一步为:

Export-EsxImageProfile -ImageProfile $newImageProfileName -ExportToBundle -FilePath "D:\esxi\ESXi-7.0b-16324942-Intel-i219_i225.zip"

其他版本同理

直接获取安装包

前往公众号【神奇码农】,点击菜单【资源导航-英特尔网卡驱动】,根据提示获取。
E689ABE7A081_E6909CE7B4A2E88194E59088E4BCA0E692ADE6A0B7E5BC8F-E799BDE889B2E78988-2dddcb08666a47b1ba1d6e214a1fef97.jpg

写在最后

如果你的网卡是I219,并且想安装ESXI6.7,可以查看我此前的教程。
ESXI6.7/ESXI7.0封装最新版英特尔I219V网卡驱动
gAnlLK6dsPieQEY.png

    本站是提供个人知识管理的网络存储空间,所有内容均由用户发布,不代表本站观点。请注意甄别内容中的联系方式、诱导购买等信息,谨防诈骗。如发现有害或侵权内容,请点击一键举报。
    转藏 分享 献花(0

    0条评论

    发表

    请遵守用户 评论公约

    类似文章 更多