当前位置首页 > Linux知识

Linux虚拟机网卡改名方法-ruce.fan

阅读次数:317 次  来源:admin  发布时间:

Linux虚拟机网卡改名方法

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

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

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

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

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

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

# 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"

上一篇:记Win10系统更新后导致Linux(KaliLinux,Manjaro)开机无法引导启动的修复方法
下一篇:如何在Linux中显示和设置主机名(适用ubantu、centos等版本)