Networking – RHEL6 – eth0 not getting dhcp address with VMware Workstation using bridged adapter

bridgingnetworkingrhel-6vmware-workstation

I am working with RHEL6 inside VMware Workstation. I have already looked here and here, but am still running into a very annoying wall.

I want to have the network adapter on my VM get a DHCP address from my router on my home network (ie, using Bridged networking). The router is set to hand out plenty of addresses:

dhcp settings

and has only issued 5 so far:

client listing

However, I am still seeing the following when I boot into the VM:

eth0 failure

My /etc/sysconfig/network-scripts/ifcfg-eth0 file:

enter image description here

What am I missing? It can't be this hard to get a VM to work. Setting the network adapter to NAT instead of Bridged works fine.

VMware's network settings:

bridging settings

Best Answer

Problem found, thanks to @John T's comments.

I also have VirtualBox installed, and the auto-bridging feature of VMware Workstation won't pick one of my built-in adapters because they're now labeled "VirtualBox Bridged Networking Driver Miniport" at the end instead of just the built-in names.

automatic settings

If I manually select one of the physical adapters to use for bridging, it works just fine. However, apparently because VirtualBox is doing some form of processing on the connection, it is more sluggish running bridged than NAT-ed.

I am going to remove VirtaulBox from this machine as soon as I do not need one specific VM I have running in it to accelerate VMware's network performance.

Related Question