Why VirtualBox assigns the same IP address to two instance of VMs? Both use Host-only networking

5

3

VB version: 4.2.16

Guest OS version: ubuntu 12.4 LTS

Host OS version: OSX 10.8.4

I have created two VMs. Each vm are given two network adaptors: NAT and Host-only.

It is how the host only adaptor is defined:

enter image description here

These are the screenshots from two instance of VirtualBox.

First VM

Second VM

It seems like both machines got an IP of 192.168.122.1 for interface virbr0.

As @kenster suggested, VB does not created a virbr0 interface. I do not know where does it come from.

And apparently eth0 comes from the NAT adaptor. Both VMs has the same IP for eth0. Here is screen shot from one of the VM:

enter image description here

Should I expect an eth1 from the second Host-only adaptor? If so, why it is not created?

Host-only dhcp setting in VB preference:

enter image description here

So, why VB assign same IP twice to both boxes?

Anthony Kong

Posted 2013-08-12T16:32:52.180

Reputation: 3 117

Why don't you configure a static IP address on this interface for each machine ? This would force the DHCP configuration on virbr0. – John WH Smith – 2013-08-12T16:42:42.780

Are you sure that is the host-only interface? According to http://www.cyberciti.biz/faq/rhel-fedora-centos-linux-remove-network-interface-virbr0/ "virbr0" is a XEN interface. I have an Ubuntu VM running in virtualbox, and its host-only interface is named "eth1". In other words, the VM thinks it is an ethernet interface.

– Kenster – 2013-08-12T17:23:17.533

did you clone the vms? in that case, you likely have dhcp cache or lease that causes the duplication. check /var/lib/dhcp3, delete everything, and restart networking. – johnshen64 – 2013-08-12T17:23:24.757

@johnshen64 I did not clone the vms. There is only /var/lib/dhcp. Clearing it does not resolve the issue. Thanks. – Anthony Kong – 2013-08-12T17:40:23.847

@Kenster Interesting. I did not know why I got this interface then. I actually setup two adaptors for each VMS: first one NAT and second one Host-only. Apparently only the first one is ever created. Will update my question with more details. – Anthony Kong – 2013-08-12T17:42:17.823

Answers

3

Sorry for a lot of noise in the question.

Basically it is what happened:

1) I use only one network adaptor (NAT) when I first created both VM

2) I then added one more Host-only adaptor in VirtualBox and expecting, incorrectly, the new interface will appear in ifconfig

Solution to my issue

Add the new eth1 in the /etc/network/interface and restart network.

Anthony Kong

Posted 2013-08-12T16:32:52.180

Reputation: 3 117

2

If you have created a clone from one that you have already created, check the MAC address of both the installations.

If the MAC addresses are the same, change the MAC address on one of the machines and restart it.

user882421

Posted 2013-08-12T16:32:52.180

Reputation: 31

Not sure why you got marked down. This answered the question for me. +1 – MagicLAMP – 2017-06-26T13:55:21.760

1

Remove the kernel’s networking interface rules file so that it can be regenerated

# rm -f /etc/udev/rules.d/70-persistent-net.rules
# reboot

it will work for your clone VM.

user226173

Posted 2013-08-12T16:32:52.180

Reputation: 11

The question is about Ubuntu not RHEL/CentOS. – marcv81 – 2014-12-08T23:29:37.613

-1

Another way of fixing this issue is to change network from NAT to bridge. Worked in my case.

Jacek Nik

Posted 2013-08-12T16:32:52.180

Reputation: 1