Vagrant-windows doesn't do any port forwarding. Sounds like you have 
another Vagrantfile with the forwarded ports its inheriting from.

On Tuesday, February 4, 2014 12:51:26 AM UTC-8, Mitchell Hashimoto wrote:
>
> Owain,
>
> You might want to reach out and ping the vagrant-windows folks directly, 
> as well. The best way to do this is probably via the issues on the repo.
>
> Best,
> mitchell
>
>
> On Tue, Feb 4, 2014 at 1:19 AM, Owain Perry <owain...@gmail.com<javascript:>
> > wrote:
>
>> 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_url = "http://localhost/boxes/windows_2012_virtualbox.box";
>>     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.
>>
>>  -- 
>> 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+...@googlegroups.com <javascript:>.
>> For more options, visit https://groups.google.com/groups/opt_out.
>>
>
>

-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to