esxi添加网卡驱动

最近3215U安装ESXi 6.0,发现ESXi 6.0官方iso镜像中不含Intel I211网卡驱动
安装过程中会报错,找不到网卡:
nfs41client failed to load

No Network Adapters

放狗了解了一下
https://www.v-front.de/2015/08/a-fix-for-intel-i211-and-i350-adapters.html
原因是,原版光盘镜像中的net-igb驱动5.0.5.1.1-5vmw.600.0.0.2494585.vib,无法正常驱动Intel I211网卡
(后来发布的ESXi 6.5,6.5U1,6.7 ESXi官方iso镜像都可以直接正常驱动Intel I211网卡了)
因此,方法是用修改版的驱动包net-igb-5.3.2-99.x86_64.vib替换默认的5.0.5.1.1-5vmw.600.0.0.2494585.vib

方法一:
接下来动手集成网卡驱动,顺便把螃蟹卡,SATA驱动也加进去
以下操作需要挂×××进行,建议用欧洲的×××
楼主用了延迟70ms左右的俄罗斯服,跑完一遍大概几十分钟
其中Connecting the V-Front Online deport ... 会停几分钟
后面下载镜像文件时,速度到过1MB/s左右

1,Powershell中默认禁止执行脚本,所以先修改策略允许执行
Set-ExecutionPolicy RemoteSigned
复制代码
2,定位到ESXi-Customizer-PS-v2.6.0.ps1所在目录,楼主这边是C:\s
cd C:\s\
复制代码
3,集成所需驱动
可添加的驱动参见:
https://vibsdepot.v-front.de/wiki/index.php/List_of_currently_available_ESXi_packages
.\ESXi-Customizer-PS-v2.6.0.ps1 -v60 -vft -load sata-xahci,net55-r8168,net51-r8169,net-r8101,net-tulip,net51-sky2,net-atl1,net-atl1e,net-r8139too,net-skge,net-igb
复制代码

跑完收工:
得到ESXi-6.0.0 U3安装iso镜像
ESXi-6.0.0-20180304001-standard-customized.iso
Intel I211 3215U验证通过
sata-xahci 3215U验证通过
其他螃蟹卡等驱动 未验证

ESXi启动后,启用SSH,列出所有驱动列表,可以看到所添加的驱动
esxcli software vib list
复制代码

方法二:
上面是从V-Front Online Depot在线添加最新版驱动的方式,也可以把需要的驱动先下载下来再集成到iso中去
用这种方式替换ESXi 6.0的net-igb驱动,先下载好VIB驱动文件
net-igb-5.3.2-99.x86_64.vib: https://vibsdepot.v-front.de/wiki/index.php/Net-igb
然后把驱动文件放在指定位置,这边是C:\pkg
.\ESXi-Customizer-PS-v2.6.0.ps1 -v60 -vft -pkgDir C:\pkg
复制代码

延伸:
利用上面这个方法,也可以下载到最新的ESXi 6.7 iso镜像
ESXi-6.7.0-8169922-standard.iso (md5值跟官网下载的iso还是有所不同)
.\ESXi-Customizer-PS-v2.6.0.ps1 -v67 -vft
复制代码

官网的: https://my.vmware.com/cn/web/vmw ... XI670&productId=742
VMware vSphere Hypervisor (ESXi ISO) image (Includes VMware Tools)
文件大小: 330.31 MB
文件类型: iso

Name: VMware-VMvisor-Installer-6.7.0-8169922.x86_64.iso
发行日期: 2018-04-17
内部版本号: 8169922
VMware vSphere Hypervisor (ESXi ISO) image (Includes VMware Tools)
Boot your server with this image in order to install or upgrade to ESXi (ESXi requires 64-bit capable servers). This ESXi image includes VMware Tools.

MD5SUM: bd218f0f26510e690695116d8628e4af
SHA1SUM: 332731ffb6715cd7a469ce0f6b81aeda6f624be7
SHA256SUM: 884ead30532f4a5c2152e4ac450839a0062aba3ae859b5fa5e233ce4275c8cb6

顺便说下,上面楼主的运行环境是x86 Windows 7
准备工作:
1,安装 Windows PowerShell 3.0 (需要启用Windows AutoUpdate服务,安装完毕计算机需要重启)
2,VMware-PowerCLI-6.0.0-3056836.exe
3,ESXi-Customizer-PS-v2.6.0.ps1 http://www.v-front.de/p/esxi-customizer-ps.html

以上所需文件:
链接:https://pan.baidu.com/s/1MspeI1c9q2E48ZPmlj1UUg
密码:9nzt

转载于:https://blog.51cto.com/7981477/2352690

你可能感兴趣的:(esxi添加网卡驱动)