On Thursday, September 15, 2016 at 9:11:54 AM UTC-7, Edward Evans wrote:
>
> Very interesting, can you post examples of each?

 
# -*- mode: ruby -*-
# vi: set ft=ruby :

if ENV.has_key?('vagrant_v6_prefix')
  v6_prefix = ENV['vagrant_v6_prefix']
else
  v6_prefix = "fd96:8025:fb27::"
end

VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|

  config.vm.box = "bento/ubuntu-16.04"

  config.vm.define "server" do |server|
    server.vm.hostname = "server"
    server.vm.network "private_network", ip: v6_prefix + "51"
  end

  config.vm.define "client" do |client|
    client.vm.hostname = "client"
    client.vm.network "private_network", ip: v6_prefix + "52"
  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/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 vagrant-up+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/vagrant-up/dcc08dae-1680-486d-af3c-41e92730fc3f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to