问题:用ifconfig查看只有一个回环口,用ifconfig -a查看有eth1和lo,如下图:

解决出现"Bringing up interface eth0:  ~~  'System eth0'“详解_中网卡

配置文件中有eth0存在

解决出现"Bringing up interface eth0:  ~~  'System eth0'“详解_中网卡_02

此时重启服务FAILED

解决出现"Bringing up interface eth0:  ~~  'System eth0'“详解_Linux_03


解决方法:

#mv /etc/sysconfig/network-scripts/ifcfg-eth0 /etc/sysconfig/network-scripts/ifcfg-eth1

  将网卡eth0的名称改为eth1

修改配置文件如下:

解决出现"Bringing up interface eth0:  ~~  'System eth0'“详解_Linux_04

#vi /etc/udev/rules.d/70-persistent-net.rules

解决出现"Bringing up interface eth0:  ~~  'System eth0'“详解_Linux_05

硬件地址name改的和上图一样,将eth0的内容字段删除,保留eth1

重启network服务

解决出现"Bringing up interface eth0:  ~~  'System eth0'“详解_Linux_06

重启服务成功