Skip to content

Commit

Permalink
Add IPV6 address.
Browse files Browse the repository at this point in the history
  • Loading branch information
Laurence Liss committed Apr 19, 2017
1 parent 3298787 commit edadfda
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ Vagrant.configure('2') do |config|

end

config.vm.network :private_network, ip: params['private_ip']
config.vm.network :private_network, ip: params['private_ipv4']
config.vm.network :private_network, ip: params['private_ipv6']

config.vm.box = params['box']
config.vm.box_url = params['box_url']
Expand Down
3 changes: 2 additions & 1 deletion default.config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
# Using local for the hostname makes browsersync unusable in this configuration, so we have updated the local hostname to vm instead.
hostname: "local.zivtech.com"
# The private IP to provision for this host.
private_ip: "172.16.0.2"
private_ipv4: "172.16.0.2"
private_ipv6: "2400:cb00:2049:1::a29f:1a63"
# The base box to use to build the puppet work on top of.
# Change the version number in the line below (or override in config.yaml)
# to switch Ubuntu versions.
Expand Down

0 comments on commit edadfda

Please sign in to comment.