20110610 configuring an esx linux guest after a kernel update - plembo/onemoretech GitHub Wiki

title: Configuring an ESX Linux guest after a kernel update link: https://onemoretech.wordpress.com/2011/06/10/configuring-an-esx-linux-guest-after-a-kernel-update/ author: lembobro description: post_id: 31 created: 2011/06/10 16:58:26 created_gmt: 2011/06/10 16:58:26 comment_status: open post_name: configuring-an-esx-linux-guest-after-a-kernel-update status: publish post_type: post

Configuring an ESX Linux guest after a kernel update

After updating a Red Hat Enterprise guest on a VMware ESX system to a new kernel, you may find that the guest no longer recognizes any of your VMXNet network devices. Here’s what you need to do:

On the guest:

Run:

vmware-config-tools.pl
...
/etc/init.d/network stop
rmmod pcnet32
rmmod vmxnet
depmod -a
modprobe vmxnet
/etc/init.d/network start

You will probably have to delete and then recreate your existing interfaces — just be sure to keep a backup! Take special note of the name and MAC address for each of the VMXNet devices you want to connect to.

If the guest is a clone of another guest, you should probably remove and then re-add the network interfaces in the new guest’s profile settings. This will ensure that you’re actually using a unique new interface for each.

Copyright 2004-2019 Phil Lembo