A network of strollers collides with a non-burial network

I try to start a roving box, but I continue to receive errors in a collision with the network. This flag is the new trusty64 download. I searched every file and folder with a tramp trying to find something indicating IP, I can not. I am running a tramp on a Windows 7 machine. Here is my Vagrantfile:

C: \ Users \ .vagrant \ boxes ... \ Vagrantfile

Vagrant::Config.run do |config| # This Vagrantfile is auto-generated by 'vagrant package' to contain # the MAC address of the box. Custom configuration should be placed in # the actual 'Vagrantfile' in this box. config.vm.base_mac = "0800278493DB" end # Load include vagrant file if it exists after the auto-generated # so it can override any of the settings include_vagrantfile = File.expand_path("../include/_Vagrantfile", __FILE__) load include_vagrantfile if File.exist?(include_vagrantfile) 

This is the error I get from the vagrant up command:

 Bringing machine 'default' up with 'virtualbox' provider... ==> default: Clearing any previously set network interfaces... The specified host network collides with a non-hostonly network! This will cause your specified IP to be inaccessible. Please change the IP or name of your host only network so that it no longer matches that of a bridged or non-hostonly network. 

How can I make the IP address of my virtual box not collide?

UPDATE

Image of my Vagrantfile

Vagrantfile

+6
source share
4 answers

Check the IP address of your LAN connection and make sure that no devices are interfering with the IP address of your Vagrantfile.

I got this error and I had 192.168.1.2 on my wifi laptop and I installed 192.168.1.10 in my Vagrantfile. So I changed the IP address of my Vagrantfile to 192.168.2.10 to make sure that it does not collide with any device on my network.

+11
source

1. in homestead.rb find

Setting up a private network IP config.vm.network: private_network, ip: settings ["ip"] || = "192.168.10.10"

since ip is fixed

2. To set your own ip config.vm.network: public_network, ip: settings ["ip"] || = "192.168.1.234" ,: bridge => 'your own IP'

3. reload the field and select that you are using WIFI now you can access the local network

0
source

I had the same challenge, and he decided to do the following:

In VirtualBox, go to File -> Host Network Manager

Pay attention to the IPv4 address in this window. In your Vagrantfile, use any IP address in the reserved IPv4 private network range. Let's say your VirtualBox IP address is 192.168.56.1/24. In your vagrantfile you can add

config.vm.network "private_network", ip: "192.168.56.5"

Remember to configure the hosts file accordingly if necessary.

0
source

I allow this connection by disconnecting from the Internet, and then launch the tramp. Once the tramp has completed his processing, I will reconnect.

Before this question, I checked my ip, so it was 10.1, and my estate was launched at 10.10, and I decided this iss

-2
source

All Articles