zoukankan      html  css  js  c++  java
  • CentOS Linux解决Device eth0 does not seem to be present

    ifconfig...没有看到eth0.。然后重启网卡又报下面错误。

    故障现象:

    service network restart
    Shutting down loopback insterface:                                                                                                     [  OK  ]
    Bringing up loopback insterface:                                                                                                          [  OK  ]
    Bringing up interface eth0:  Device eth0 does not seem to be present,delaying initialization.                    [FAILED]

    CentOS Linux解决Device eth0 does not seem to be present

    解决办法:

    首先,打开/etc/udev/rules.d/70-persistent-net.rules内容如下面例子所示:

    # vi /etc/udev/rules.d/70-persistent-net.rules
    # This file was automatically generated by the /lib/udev/write_net_rules
    # program, run by the persistent-net-generator.rules rules file.
    #
    # You can modify it, as long as you keep each rule on a single
    # line, and change only the value of the NAME= key.
    # PCI device 0x1022:0x2000 (pcnet32)
    SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:0c:29:8f:89:9
    7", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0"
    # PCI device 0x1022:0x2000 (pcnet32)
    SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:0c:29:50:bd:1
    7", ATTR{type}=="1", KERNEL=="eth*", NAME="eth1"

    记录下,eth1网卡的mac地址00:0c:29:50:bd:17

    接下来,打开/etc/sysconfig/network-scripts/ifcfg-eth0

    # vi /etc/sysconfig/network-scripts/ifcfg-eth0

    将 DEVICE="eth0"  改成  DEVICE="eth1"  ,
    将 HWADDR="00:0c:29:8f:89:97" 改成上面的mac地址  HWADDR="00:0c:29:50:bd:17"

    最后,重启网络

    # service network restart
    或者

    # /etc/init.d/network restart

    正常了。

     看这篇文章总结了两句话

     rm -f  /etc/udev/rules.d/70-persistent-net.rules

     vi /etc/sysconfig/network-scripts/ifcfg-eth0  删除这行 HWADDR

    reboot linux 系统 

  • 相关阅读:
    内置的包装类
    子类继承父类的哪些成员
    JAVA笔记140-使用this语句解决构造器重载相互调用问题
    Java学习
    AngularJs2
    Angular
    检测是否所有的栏位都已经填充了内容了。(可以用来判断动态放置的东西和外加的框是否一致)
    上下各有一个框,框里有元素(点击下面的元素,显示到上面的框里面去,按一定顺序排放)
    Nashorn 在JDK 8中融合Java与JavaScript之力
    2014年Facebook的开源成就
  • 原文地址:https://www.cnblogs.com/lixiuran/p/5014647.html
Copyright © 2011-2022 走看看