Determining IP information for eth0...failed



解决办法
1、以root权限编辑/
Java代码
1./etc/sysconfig/network-scripts/ifcfg-eth0  
2./etc/sysconfig/networking/devices/ifcfg-eth0 
/etc/sysconfig/network-scripts/ifcfg-eth0
/etc/sysconfig/networking/devices/ifcfg-eth0   
(假设网卡号是eth0),在文件尾部添加以下内容:
check_link_down (){     
    return 1;  
}

2、vmware下把linux的网络连接选成是桥接,而不是host-only。

3、激活网卡。使用DHCP的话可以直接激活网卡,自动获取IP,使用命令:ifconfig eth0 up。

4、重启下网络/etc/init.d/network restart或service network restart

你可能感兴趣的:(vmware,linux,UP)