Dertermining IP information for eth0....failed - no link present check cable

来源:互联网 发布:淘宝联盟iphone版 编辑:程序博客网 时间:2024/06/07 02:47
在VM虚拟机中装了redhat9.0,准备与主机共享文件,结果网络不通!
      无法激活,在输入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。