try this for your node loop.
```ruby
(1..NODE_COUNT).each do |i|
config.vm.define "node#{i}" do |subconfig|
subconfig.vm.provider "virtualbox" do |vb|
vb.name = "node#{i}.NewVM1001"
end
subconfig.vm.box = BOX_IMAGE
subconfig.vm.hostname = "node#{i}.DOMAIN"
#subconfig.vm.forwarded_port 80, 8080, auto_correct: true protocol: "udp"
protocol: "tcp"
#subconfig.vm.usable_port_range = (2200..2250)
subconfig.vm.network "private_network", type: "dhcp", ip:
"fde4:8dba:82e1::#{(i + 0xc125).to_s(16)}" :adapter ==> 5
end
end
```
--
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/hashicorp/vagrant/issues
Discuss: https://discuss.hashicorp.com/c/vagrant/24
---
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/2642605b-2258-41cd-8d0e-7c35f751aab6%40googlegroups.com.