Linux虚拟机网卡改名方法

因为虚拟机的配置是需要通过其他初始化脚本来生成的,所以网卡的设备名不能改变,如果需要把eth3修改为eth0

以rhel6为例,把以下文件作修改如下:

1、把eth0 ,eth1 ,eth2的相关行删除掉

2、把eth3的相关行保留,并把eth3改为eth0即可。

[root@ovm0246 ~]# vim/etc/udev/rules.d/70-persistent-net.rules 

 

# This file was automatically generated bythe/lib/udev/write_net_rules

# program, run by thepersistent-net-generator.rules rules file.

#

# You can modify it, as long as you keepeach rule on a single

# line, and change only the value of theNAME= key.

 

# PCI device 0x10ec:0x8139 (8139cp) (customname provided by external tool)

SUBSYSTEM=="net",ACTION=="add", DRIVERS=="?*",ATTR{address}=="52:54:00:12:34:56", ATTR{type}=="1",KERNEL=="eth*", NAME="eth0"

 

# PCI device 0x10ec:0x8139 (8139cp)

SUBSYSTEM=="net",ACTION=="add", DRIVERS=="?*",ATTR{address}=="02:00:c0:a8:14:f9", ATTR{type}=="1",KERNEL=="eth*", NAME="eth1"

 

# PCI device 0x10ec:0x8139 (8139cp)

SUBSYSTEM=="net",ACTION=="add", DRIVERS=="?*",ATTR{address}=="52:54:00:e4:d4:1d", ATTR{type}=="1",KERNEL=="eth*", NAME="eth2"

# PCI device 0x10ec:0x8139 (8139cp)

 

SUBSYSTEM=="net",ACTION=="add", DRIVERS=="?*",ATTR{address}=="02:00:c0:a8:14:fa", ATTR{type}=="1",KERNEL=="eth*", NAME="eth3"


posted on 2014-10-30 22:18  ruce.fan  阅读(963)  评论(0编辑  收藏  举报

导航