vagrant up command giving error and eth1 not showing a resolvable ip address

后端 未结 2 1103
名媛妹妹
名媛妹妹 2021-01-16 20:43

I am new to VMs, but have been using vagrant to run a Centos VM on Ubuntu 14.04. All of a sudden vagrant up command is giving this error:

root@         


        
2条回答
  •  北荒
    北荒 (楼主)
    2021-01-16 21:10

    This seems to be happen with bootup network configurations.

    Although it failed to bring-up the network interface, you should be able to ssh into the box. To remove persistent network interfaces execute following commands in vagrant box folder.

    vagrant ssh
    sudo rm /etc/udev/rules.d/70-persistent-net.rules
    exit
    vagrant reload
    

    source: https://github.com/mitchellh/vagrant/issues/921#issuecomment-15789964

提交回复
热议问题