首页 服务器系统 Linux

Linux的网卡由eth0变成了eth1,如何修复?

故障现象:

Linux的网卡由eth0变成了eth1,如何修复?

解决方案:

在linux中,udev记录网络规则的脚本为:
/etc/udev/rules.d/70-persistent-net.rules

如下操作:

[user@localhost ~]$ 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.

# PCI device 0x1022:0x2000 (pcnet32)

SUBSYSTEM=="net" ACTION=="add" DRIVERS=="?*" ATTR{address}=="00:0c:29:5a:6c:73" ATTR{type}=="1" KERNEL=="eth*" NAME="eth0"

SUBSYSTEM=="net" ACTION=="add" DRIVERS=="?*" ATTR{address}=="00:0c:29:a9:22:9d" ATTR{type}=="1" KERNEL=="eth*" NAME="eth1"

打开该文件,这时你会发现,里面有eth0,eth1两个网卡的信息,但实际上你ifconfig时只能发现eth1一个网卡的信息,这是因为eth0根本就不存在。

将其中eth0的信息删掉,并将eth1信息中的设备名改为eth0,重启系统,你看到的网卡就是eth0了,或者删掉其中所有的信息重启系统udev会帮你发现新的设备的。

相关推荐