VMware, ... eth0....failed - no link present check cable解决方法

VM, ... eth0....failed - no link present check cable解决方法

determining IP information for eth0...failed; no link present.check cable
在VM虚拟机中装了WS3,准备配置产品的web环境weblogic,结果网络不通!
无法激活,在输入ifup eth0后总提示:
Dertermining IP information for eth0....failed - no link present check cable
解决办法:
在 /etc/sysconfig/network-scripts/ifcfg-eth0 
中添加以下script:
check_link_down() {
return 1;
}
具体操作:
[root@localhost root]# cd /etc/sysconfig/network-scripts/
[root@localhost network-scripts]# vi ifcfg-eth0
# Please read /usr/share/doc/initscripts-*/sysconfig.txt
# for the documentation of these parameters.
ONBOOT=yes
USERCTL=no
PEERDNS=yes
TYPE=Ethernet
DEVICE=eth0
HWADDR=00:0c:29:64:c2:5f
BOOTPROTO=dhcp   
#以下为添加部分,具体操作方法:先按a,在光标后插入下面文本,最后 :wq 保存退出
check_link_down(){
return 1;
}
接下来,重起网络
[root@localhost network-scripts]# ifup eth0
Determining IP information for eth0... done.
好了,看到上面的提示说明已经成功,可用ifconfig检查自己是否已获得有效IP。
 
转自: http://blog.sina.com.cn/s/blog_558bdc950100qthe.html

你可能感兴趣的:(VMware, ... eth0....failed - no link present check cable解决方法)