To resolve this issue, set which network interfaces to ignore using exclude-nics in the VMware Tools config file: tools.conf
Example configuration:
[guestinfo]
primary-nics=eth0
exclude-nics=docker*,???????????????
Note: The above example configuration excludes interfaces that have the prefix docker in their name or have 15 character long names (This is the typical length for container interface names created by Docker). For specific guest environments, these patterns need to be adjusted to match the appropriate interface names, to exclude only the intended set of interfaces from guestInfo. exclude-nics accepts multiple patterns and an interface gets excluded from guestInfo reporting if the interface name matches with any one of the patterns.