vagrant up命令给出错误,eth1没有显示可解析的ip地址

时间:2015-03-12 06:25:02

标签: ip vagrant ethernet

我是VM的新手,但一直在使用vagrant在Ubuntu 14.04上运行Centos VM。突然vagrant up命令发出此错误:

root@shanky:~/centos# vagrant  up
Bringing machine 'default' up with 'virtualbox' provider...
==> default: Checking if box 'chef/centos-6.5' is up to date...
==> default: Clearing any previously set forwarded ports...
==> default: Clearing any previously set network interfaces...
==> default: Available bridged network interfaces:
1) eth0
2) wlan0
==> default: When choosing an interface, it is usually the one that is
==> default: being used to connect to the internet.
    default: Which interface should the network bridge to? 1
==> default: Preparing network interfaces based on configuration...
    default: Adapter 1: nat
    default: Adapter 2: bridged
==> default: Forwarding ports...
    default: 80 => 5444 (adapter 1)
    default: 22 => 2222 (adapter 1)
==> default: Booting VM...
==> default: Waiting for machine to boot. This may take a few minutes...
    default: SSH address: 127.0.0.1:2222
    default: SSH username: vagrant
    default: SSH auth method: private key
    default: Warning: Connection timeout. Retrying...
    default: Warning: Remote connection disconnect. Retrying...
==> default: Machine booted and ready!
==> default: Checking for guest additions in VM...
==> default: Configuring and enabling network interfaces...
The following SSH command responded with a non-zero exit status.
Vagrant assumes that this means the command failed!

ARPCHECK=no /sbin/ifup eth1 2> /dev/null

Stdout from the command:


Determining IP information for eth1...PING 10.1.34.1 (10.1.34.1) from 10.1.34.183 eth1: 56(84) bytes of data.

--- 10.1.34.1 ping statistics ---
3 packets transmitted, 0 received, +3 errors, 100% packet loss, time 2999ms
pipe 3
PING 10.2.56.1 (10.2.56.1) from 10.2.56.156 eth1: 56(84) bytes of data.

--- 10.2.56.1 ping statistics ---
3 packets transmitted, 0 received, +3 errors, 100% packet loss, time 3000ms
pipe 3
 failed.
Stderr from the command:

我能够将ssh变为VM,但eth1不再提供可解析的ip(即它不会给inet addr参数。如何解决这个问题?

P.S。 https://unix.stackexchange.com/questions/188413/not-able-to-resolve-ip-address-for-eth1-in-vagrant-vm

我已尝试过修改eth1,如上面的链接所示,但无效。 PLz帮助。 感谢。

2 个答案:

答案 0 :(得分:2)

事实证明,eth2是将虚拟盒直接连接到外部互联网的适配器,因此注释掉了

config.vm.network :public_network
来自VagrantFile的

停止了正在加载的公共网络接口,从而解决了这个问题。

答案 1 :(得分:1)

启动网络配置似乎会发生这种情况。

虽然它无法启动网络接口,但您应该能够进入该框。要删除持久性网络接口,请在vagrant box文件夹中执行以下命令。

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

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