O Vagrant não pode encaminhar as portas especificadas nesta VM

Eu tenho o Vagrant em uso para um perfil de caixa. Agora eu quero usar o Vagrant para outra caixa (b2), mas diz que a instância da bioiq está consumindo a porta encaminhada 2222 (que é).

Agora, se eu configurar b2 com o abaixo, o Vagrant ainda tentará usar 2222.

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

  config.vm.box = 'precise32'
  config.vm.box_url = 'http://files.vagrantup.com/precise32.box'

  config.vm.network :forwarded_port, guest: 22, host: 2323

  # Neither of these fix my problem 
  # config.vm.network :private_network, type: :dhcp 
  # config.vm.network :private_network, ip: "10.0.0.200"
end

Eu tentei várias maneiras de outras perguntas SO para definir o: forwarded_port (Vejoaqui eaqui) Eu também tentei issoPostagem do Grupo do Google, para nenhum proveito. Eu continuo recebendo esta mensagem.

Vagrant cannot forward the specified ports on this VM, since they
would collide with some other application that is already listening
on these ports. The forwarded port to 2222 is already in use
on the host machine.

To fix this, modify your current projects Vagrantfile to use another
port. Example, where '1234' would be replaced by a unique host port:

  config.vm.network :forwarded_port, guest: 22, host: 1234

Sometimes, Vagrant will attempt to auto-correct this for you. In this
case, Vagrant was unable to. This is usually because the guest machine
is in a state which doesn't allow modifying port forwarding.

Não sei por que o Vagrant constantemente ignora minhas diretrizes. A configuração publicada não funciona. Alguém já superou isso?

questionAnswers(3)

yourAnswerToTheQuestion