redhat启动时无法激活eth0

声明:本文内容仅供个人学习,并非原创,受惠于人,如能有助于人,颇为欣慰。

现象:启动时无法激活eth0,提示"Determining IP information for eth0...failed; no link present. Check cable?" ,使用命令ifconfig eth0 up,也无法激活虚拟网卡。
原因:VMware4.5以上和Redhat 9以上之间,网卡驱动有些不兼容。
解决方法:
 以root权限,编辑 /etc/sysconfig/network-scripts/ifcfg-eth<n>和
                         /etc/sysconfig/networking/devices/ifcfg-eth<n>
        其中<n>是数字,比如eth0。
 在每个文件中添加:
    check_link_down ()
 {
         return 1;
    }
 然后ifdown eht0 (关闭)/ ifup eth0(开启)就可以了

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