上个月有台RedHat服务器更换网卡,编译、安装驱动后 service network restart。提示更换的网卡不存在。ifconfig -a 发现有三个网卡: eth0 eth1 eth2。
vi /etc/udev/rules.d/70-persistent-net.rules
把没用的网卡(8139too)信息删除或注释掉,再修改新网卡(r8169)参数NAME="eth2"
例子:
[root@smalarm rules.d]# cat 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 0x8086:0x1502 (e1000e)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="f8:b1:56:xx:xx:xx", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0"
# PCI device 0x10ec:0x8139 (8139too)
#SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:e0:4c:xx:xx:xx", ATTR{type}=="1", KERNEL=="eth*", NAME="eth1"
# PCI device 0x10ec:0x8168 (r8169)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:e0:4d:xx:xx:xx", ATTR{type}=="1", KERNEL=="eth*", NAME="eth1"
本文出自 “Just do it” 博客,请务必保留此出处http://cakong.blog.51cto.com/794290/1406106
原文地址:http://cakong.blog.51cto.com/794290/1406106