Skip to content

Commit

Permalink
setting the correct IPs on the target and DSZ box in vagrantfile
Browse files Browse the repository at this point in the history
  • Loading branch information
francisck committed Jun 22, 2018
1 parent 71eb503 commit 5d3b7be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Vagrant.configure("2") do |config|
tar.winrm.retry_limit = 30
tar.winrm.retry_delay = 10
tar.vm.boot_timeout = 700
tar.vm.network :private_network, ip: "192.168.40.4", gateway: "192.168.40.1", dns: "192.168.40.2"
tar.vm.network :private_network, ip: "192.168.40.3", gateway: "192.168.40.1", dns: "192.168.40.2"

# Enable Shared Folders
tar.vm.synced_folder ".", "/vagrant", disabled: false
Expand Down Expand Up @@ -79,7 +79,7 @@ Vagrant.configure("2") do |config|
dsz.vm.guest = :windows
dsz.vm.communicator = "winrm"
dsz.vm.boot_timeout = 300
dsz.vm.network :private_network, ip: "192.168.40.3", gateway: "192.168.40.1", dns: "8.8.8.8"
dsz.vm.network :private_network, ip: "192.168.40.4", gateway: "192.168.40.1", dns: "8.8.8.8"

# Enable Shared Folders
dsz.vm.synced_folder ".", "/vagrant", disabled: false
Expand Down

0 comments on commit 5d3b7be

Please sign in to comment.