VMware가 네트워크 인터페이스를 시작하지 못함(방랑자)

VMware가 네트워크 인터페이스를 시작하지 못함(방랑자)

일부 라우터에서는 vagrant up다음 오류로 인해 실패합니다(또는 유사한 경우 vmnet* 번호가 변경될 수 있음).

Vagrant failed to start the VMware network interfaces! The output
of the failed command, if any, is below. The usual cause for this
is invalid configuration of the VMware network components. If
the problem persists, please contact support.

Subnet on vmnet2 is no longer available for usage, please run the network editor to reconfigure different subnet
Failed to start some/all services

현재 관리자 액세스 권한이 있는 홈 라우터에서 이런 일이 발생하고 있습니다. 이 문제를 해결하기 위해 할 수 있는 일이 있나요?

여기 일부 민감한 데이터가 수정된 Vagrantfile이 있습니다.

VAGRANTFILE_API_VERSION = "2"

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
  config.vm.hostname = 'dev-vm'
  config.vm.box = 'dev-vm'
  config.vm.box_url = 'redacted'
  config.ssh.forward_agent = true
  config.vm.network :private_network, ip: "192.168.33.10"
  # VMware Workstation on Windows and Linux
  config.vm.provider :vmware_workstation do |v|
    v.gui = true
    v.vmx['memsize'] = 1024 * 10
    v.vmx['numvcpus'] = 4
  end

관련 정보