网卡识别的配置文件为 /etc/udev/rules.d/70-persistent-net.rules
,这里我以我本机的为例:
[root@zze rules.d]# cat /etc/udev/rules.d/70-persistent-net.rules
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:0c:29:45:2c:8b", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0"
可以看到,我本机的一块网卡名称为 eth0
,并绑定了 MAC 地址。
如果我们要将该名称修改为 eth1
,该如何做呢?
1、修改 NAME="eth1"
。
2、使用 lsmod
查看网卡接口类型:
可以看到这里我使用的 VMware 用的是
e1000
。
3、执行 modprobe -r e1000
卸载该网卡。
4、再执行 modprobe e1000
装载该网卡。
5、使用 ifconfig
查看:
修改成功~
评论区