您的位置:首页 > 大数据 > 人工智能

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

2012-10-25 09:05 609 查看


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
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐