17
2024
06
13:58:43

ESXI6.7/7.0/8.0封装网卡,usb,固态硬盘驱动



推荐本站淘宝优惠价购买喜欢的宝贝:

image.png



本来是想给戴尔OptiPlex 7090安装esxi7,但因为网卡是intel Ethernet Connection (14) I219-LM,版本号是14,ESXI官方驱动最高到 (7) 版本,用过EEUpdate修改版本号无效,所以只能自己封装最新的驱动。顺便把nvme硬盘和USB驱动一起加上,过程踩了不少坑,分享出来给大家避坑

驱动支持列表

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

截止发文最新版为Net-Community-Driver_1.2.7.0-1vmw.700.1.0.15843807_19480755.zip
此驱动支持的网卡列表
igc-community
Vendor Chipset VendorID ProductID
Intel Ethernet Controller I225-LM 0x8086 0x15f2
Intel Ethernet Controller I225-V 0x8086 0x15f3
Intel Ethernet Controller I225-IT(2) 0x8086 0xd9f
Intel Ethernet Controller I225-I 0x8086 0x15f8
Intel Ethernet Controller I225-K 0x8086 0x3100
Intel Ethernet Controller I225-K(2) 0x8086 0x3101
Intel Ethernet Controller I225-LMvP(2) 0x8086 0x5502
Intel Ethernet Controller I226-K 0x8086 0x5504
Intel Ethernet Controller I226-LM 0x8086 0x125b
Intel Ethernet Controller I226-V 0x8086 0x125c
Intel Ethernet Controller I226-IT 0x8086 0x125d
Intel Ethernet Controller I220-V 0x8086 0x15f7
Intel Ethernet Controller I221-V 0x8086 0x125e
e1000-community
Vendor Chipset VendorID ProductID
Intel Ethernet Connection (6) I219-LM 0x8086 0x15bd
Intel Ethernet Connection (6) I219-V 0x8086 0x15be
Intel Ethernet Connection (7) I219-LM 0x8086 0x15bb
Intel Ethernet Connection (7) I219-V 0x8086 0x15bc
Intel Ethernet Connection (10) I219-LM 0x8086 0x0d4e
Intel Ethernet Connection (10) I219-V 0x8086 0x0d4f
Intel Ethernet Connection (11) I219-LM 0x8086 0x0d4c
Intel Ethernet Connection (11) I219-V 0x8086 0x0d4d
Intel Ethernet Connection (12) I219-LM 0x8086 0x0d53
Intel Ethernet Connection (12) I219-V 0x8086 0x0d55
Intel Ethernet Connection (13) I219-LM 0x8086 0x155b
Intel Ethernet Connection (13) I219-V 0x8086 0x155c
Intel Ethernet Connection (14) I219-LM 0x8086 0x15f9
Intel Ethernet Connection (14) I219-V 0x8086 0x15fa
Intel Ethernet Connection (15) I219-LM 0x8086 0x15f4
Intel Ethernet Connection (15) I219-V 0x8086 0x15f5
Intel Ethernet Connection (16) I219-LM 0x8086 0x1a1e
Intel Ethernet Connection (17) I219-V 0x8086 0x1a1f
Intel Ethernet Connection (17) I219-LM 0x8086 0x1a1c
Intel Ethernet Connection (17) I219-V 0x8086 0x1a1d

2、USB驱动:USB Network Native Driver for ESXi
截止发文最新版为ESXi703-VMKUSB-NIC-FLING-55634242-component-19849370.zip
此驱动支持的USB列表
Vendor Chipset VendorID ProductID
AQUANTIA AQC111U 0xe05a 0x20f4
AQUANTIA Aquantia Pacific 0x2eca 0xc101
ASIX AX88179 0x0b95 0x1790
ASIX AX88178a 0x0b95 0x178a
CISCO LINKSYS RTL8153 0x13b1 0x0041
DLINK AX88179 0x2001 0x4a00
INSYDE SOFTWARE CORP Insyde Software Corp. 0x0b1f 0x03ee
LENOVO RTL8153 0x17ef 0x3062
LENOVO RTL8153 0x17ef 0x3069
LENOVO RTL8153 0x17ef 0x720a
LENOVO AX88179 0x17ef 0x304b
LENOVO RTL8153 0x17ef 0x7205
NVIDIA RTL8153 0x0955 0x09ff
Qualcomm NA 0x0b05 0x1976
Qualcomm NA 0x1A56 0x3100
REALTEK RTL8152 0x0bda 0x8152
REALTEK RTL8153 0x0bda 0x8153
REALTEK RTL8156 0x0bda 0x8156
REALTEK RTL8153 0x045e 0x07c6
SITECOMEU AX88179 0x0df6 0x0072
SUPERMICRO Supermicro computer Inc 0x15d9 0x1b83
TP-LINK RTL8153 0x2357 0x0601
TRENDNET AQC111U 0xe05a 0x20f4


3、NVMe硬盘驱动:Community NVMe Driver for ESXi
截止发文最新版为nvme-community-driver_1.0.1.0-3vmw.700.1.0.15843807-component-18902434.zip
此驱动支持的NVMe硬盘列表
Vendor VendorID ProductID
ADATA 0x1cc1 8201
Micro/Crucial 0xc0a9 0x2263
Silicon Motion 0x126f 0x2262


准备封装环境

打开电脑上的Windows PowerShell(管理员身份运行),之前用自带的5.1一直报错,于是更新了PowerShell 7 就没问题了,PowerShell 7 官网 https://aka.ms/PSWindows,另外PowerCLI 13.0中的VMware.ImageBuilder 模块是依赖Python3.79,需要安装。

安装PowerCLI

Install-Module -Name VMware.PowerCLI

Get-Module -Name VMware.PowerCLI       #查看版本已经提示13.0了。

安装pyhton,注意安装路径,后面需要用到。安装完后可以再次双击安装包查看

下载地址:https://www.python.org/downloads/release/python-379/

或者在开始菜单点击所有应用,找到新安装的python文件右键打开文件位置,然后再从快捷方式找到源文件。

得到文件地址:C:\Users\90543\AppData\Local\Programs\Python\Python37


安装get-pip.py,添加模块路径(下载链接在本文尾部)

\python.exe \get-pip.py

例:C:\Users\90543\AppData\Local\Programs\Python\Python37\python.exe C:\tmp\ios\get-pip.py

安装要求的Python模块,同例修改文件夹

\Scripts\pip3.7.exe install six psutil lxml pyopenssl

在Powershell中配置Python3.7路径,同例修改文件夹

Set-PowerCLIConfiguration -PythonPath \python.exe -Scope User

添加信任模块

set-ExecutionPolicy RemoteSigned

跳过签名校验

Set-ExecutionPolicy -Scope Process -ExecutionPolicy Bypass


开始封装

下载esxi7.zip压缩包文件,本例放在C:\tmp\ios     

下载好对应的vib驱动包。本例存放在C:\tmp\iso\vib目录下

下载好对应ESXi-Customizer-PS 2.9版。本例存在放C:\tmp\iso目录下

CD到ios目录下运行

 .\ESXI-Customizer-PS.ps1 -izip .\VMware-VMvisor-Installer-7.0.0-15843807.x86_64-DellEMC_Customized-A00.zip -pkgDir .\vib -nsc

All done成功

get-pip.py  下载地址 https://bootstrap.pypa.io/get-pip.py

Python 3.79   下载链接:https://www.python.org/downloads/release/python-379/

esxi7.0 下载连接:https://customerconnect.vmware.com/downloads/details?downloadGroup=OEM-ESXI70-HPE&productId=974

ESXi-Customizer-PS2.9下载链接:https://github.com/VFrontDe-Org/ESXi-Customizer-PS/releases/tag/2.9.0

驱动包下载:https://pan.baidu.com/s/1-UzeEg2l0v7N8GDWqIMh8Q 提取码:n77c (由公众号“神奇码农”提供)


已封装最新intel网卡驱动esxi7.0镜像包

包含intel I219-v/lm驱动最高到(17)镜像,链接: https://pan.baidu.com/s/1ldAis-npaywdBUd6zCtWdA?pwd=6666 提取码: 6666 


本文链接:http://hqyman.cn/post/6660.html 非本站原创文章欢迎转载,原创文章需保留本站地址!

分享到:





休息一下~~


« 上一篇 下一篇 »

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

您的IP地址是: