On Tue, Jan 20, 2015 at 11:07 AM, Tony Perez <[email protected]> wrote:
> ip = "172.17.8.#{i+100}"
> config.vm.network :private_network, ip: ip
>
Try to replace this
ip = "172.17.8.#{i+100}"
config.vm.network :private_network, ip: ip
with this:
ip = "172.17.8.#{i+100}"
puts i
puts ip
config.vm.network :private_network, ip: ip
if the correct value is shown in the command line, then the vagrant logic
is fine, and the issue is coming from vmvware.
if the incorrect value is shown on the first run, then something is wrong
inside the Vagrantfile
this is a basic/simple approach, but will help to see where the error is
coming from.
alvaro.
--
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.