Hi,
I am having issues with port forward collisions. It seems to map 3389 first regardless of what I specify in the configuration. Although it does do the mapping last , but the first port causes a collision with local running RDP service. I am also trying to get a multi machine environment setup.
Host: windows 8
Guest: windows 2012 (not r2)
Vagrant: 1.4.3
vagrant-windows: 1.5.1
<config>
Vagrant.configure("2") do |config|
config.vm.define "web" do |web|
web.vm.network :forwarded_port, guest: 3389, host: 3377 , id: "rdp", auto_correct: true
web.vm.box = "win2012"
web.winrm.username = "vagrant"
web.winrm.password = "vagrant"
web.vm.guest = :windows
web.windows.halt_timeout = 15
web.berkshelf.enabled = true
web.vm.provider :virtualbox do |vb|
vb.gui = true
vb.customize ["modifyvm", :id, "--memory", "2048"]
end
web.vm.provision :chef_solo do |chef|
chef.log_level = :info
chef.add_recipe ("demo.rest.service::default")
end
end
end
</config>
<output>
[web] Clearing any previously set network interfaces...
[web] Preparing network interfaces based on configuration...
[web] Forwarding ports...
[web] -- 22 => 2222 (adapter 1)
[web] -- 3389 => 3389 (adapter 1)
[web] -- 5985 => 5985 (adapter 1)
[web] -- 3389 => 3377 (adapter 1)
[web] Running 'pre-boot' VM customizations...
[web] Booting VM...
</output
Any help appreciated.
O.