Hi,

I have the following setup

host: Win7
guest: hashicorp/precise32
provider: VirtualBox 5.0.0
Vagrant 1.7.4

with this Vagrantfile

config.vm.define "qa" do |qa|
    qa.vm.box = "hashicorp/precise32"
    qa.vm.network :forwarded_port, guest: 80, host: 8080
    qa.vm.network "private_network", ip: "192.168.50.4", 
virtualbox__intnet: true
    qa.vm.provider :virtualbox do |vb|
         vb.name = "qa"
 vb.memory = 1024
    end
end

whatever I type for the "private_network", I always get a VM on 
127.0.0.1:2222. I tried with and without "virtualbox__intent", I tried with 
type: "dhcp", but the ip adress is ignored - the VM is always only 
accessible via 127.0.0.1

What do I do wrong ?

Thanks/Cheers

-- 
This mailing list is governed under the HashiCorp Community Guidelines - 
https://www.hashicorp.com/community-guidelines.html. Behavior in violation of 
those guidelines may result in your removal from this mailing list.

GitHub Issues: https://github.com/mitchellh/vagrant/issues
IRC: #vagrant on Freenode
--- 
You received this message because you are subscribed to the Google Groups 
"Vagrant" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/vagrant-up/04915f32-e9a4-46ee-821e-354ff0b5daf1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to