On Fri, Feb 20, 2015 at 11:43 AM, Christopher Hahn <[email protected]> wrote: > > The hardest part of this is likely the fact that I am stuck on an old > version.
Hello Can you describe what you want to do? Vagrant on virtualbox by default give you eth0 as NAT then, if you add: config.vm.network "private_network", auto_config: false will give you at VirtualBox level a nic, and on guest level a un-configured nic as eth1 then you should be able to set it up with a shell provisioner or chef or any tool if you want Vagrant to configure that 2nd nic, then: config.vm.network "private_network", ip: "192.168.50.4" will give you a host-only nic also: config.vm.network "public_network", ip: "192.168.50.4" will give you a bridged nic -- 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]. For more options, visit https://groups.google.com/d/optout.
