BLOG ESPERANCA

[CentOS] eth1 -> eth0로 변경하는 방법 본문

OS/Linux

[CentOS] eth1 -> eth0로 변경하는 방법

yobuce 2013. 1. 5. 20:49

 

1. /etc/udev/rules.d/70-persistent-net.rules 파일의 Mac Address를 서로 바꾼다. 

 

# PCI device 0x8086:0x10d3 (e1000e)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="xx:xx:xx:xx:xx:01", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0"

# PCI device 0x8086:0x10d3 (e1000e)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="xx:25:xx:xx:xx:02", ATTR{type}=="1", KERNEL=="eth*", NAME="eth1"

 

2. /etc/sysconfig/network-scripts 아래의 ifcfg-eth0, ifcfg-eth1 의 Mac Address를 서로 바꾼다.

 

DEVICE=eth0
HWADDR=xx:xx:xx:xx:xx:01  

DEVICE=eth1
HWADDR=
xx:xx:xx:xx:xx:02
 

 

3. reboot 후 확인