Hello!
I solved this problem as follows.
There is a driver for Realtek 8111 NIC in vib format:
net55-r8168-8.045a-napi.x86_64.vib
It needs to be added to the iso image of ESXi 6.7 for installation on a PC:
VMware-VMvisor-Installer-6.7.0-8169922.x86_64.iso
1. Download the standard SoftwareDepot from www.vmware.com:
VMware-ESXi-6.7.0-8169922-depot.zip
2. Lunch PowerCLI.
3. In PowerCLI connect the standard SoftwareDepot by typing:
Add-EsxSoftwareDepot -DepotUrl D:\Distrib\System\VMware\VMware-ESXi-6.7.0-8169922-depot.zip
4. Get the ImageProfile list:
Get-EsxImageProfile
As result:
Name Vendor Last Modified Acceptance Level
---- ------ ------------- ----------------
ESXi-6.7.0-8169922-standard VMware, Inc. 03.04.2018 2... PartnerSupported
ESXi-6.7.0-8169922-no-tools VMware, Inc. 03.04.2018 2... PartnerSupported
5. Clone standard ImageProfile:
New-EsxImageProfile -CloneProfile ESXi-6.7.0-8169922-standard -Name MyProfile -Vendor Oleg
6. Since our vib file has Acceptance Level - CommunitySupported, we need to set this Acceptance Level for our ImageProfile:
Set-EsxImageProfile -ImageProfile MyProfile -AcceptanceLevel CommunitySupported
7. Add our vib to SoftwareDepot:
Get-EsxSoftwarePackage -PackageUrl D:\Distrib\System\VMware\net55-r8168-8.045a-napi.x86_64.vib
As result:
Name Version Vendor Creation Dat
e
---- ------- ------ ------------
net55-r8168 8.045a-napi Realtek 16.04.201...
(Pay attention to the name field as a result of the command)
8. Add our vib to ImageProfile:
Add-EsxSoftwarePackage -ImageProfile MyProfile -SoftwarePackage net55-r8168
9. Export ImageProfile to ISO image:
Export-EsxImageProfile -ImageProfile MyProfile -ExportToIso -FilePath D:\Distrib\System\VMware\MyISO.iso
10. To drink coffee :smileyhappy: