Windows 10 Vagrant up在清除之前设置的任何网络接口时挂起

Windows 10 Vagrant up在清除之前设置的任何网络接口时挂起,windows-10,vagrant,cygwin,virtualbox,centos7,Windows 10,Vagrant,Cygwin,Virtualbox,Centos7,我正试图在Windows10上通过CygWin使用Vagrant(2.2.3)和Virtual Box(5.2.24)创建一个VM CentOS7 根据Vagrant Cloud指令(),我执行了以下命令 vagrant init centos/7 此命令在我的目录中生成一个Vagrantfile 使用命令 vagrant up vagrant up 。。。一切正常,但如果我更改我的Vagrantfile以这种方式修复IP地址 # Create a private network, w

我正试图在Windows10上通过CygWin使用Vagrant(2.2.3)和Virtual Box(5.2.24)创建一个VM CentOS7

根据Vagrant Cloud指令(),我执行了以下命令

vagrant init centos/7
此命令在我的目录中生成一个
Vagrantfile

使用命令

vagrant up
vagrant up
。。。一切正常,但如果我更改我的
Vagrantfile
以这种方式修复IP地址

  # Create a private network, which allows host-only access to the machine
  # using a specific IP.
   config.vm.network "private_network", ip: "192.168.33.10"
当我使用命令时

vagrant up
vagrant up
。。。执行将随此输出停止

$ vagrant up
Bringing machine 'default' up with 'virtualbox' provider...
==> default: Importing base box 'centos/7'...
==> default: Matching MAC address for NAT networking...
==> default: Checking if box 'centos/7' version '1901.01' is up to date...
==> default: Setting the name of the VM: Tmp
==> default: Clearing any previously set network interfaces...
而且不完整

任何建议都将不胜感激