`
从此醉
  • 浏览: 1034521 次
  • 性别: Icon_minigender_1
  • 来自: US
社区版块
存档分类
最新评论

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。
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics