본문 바로가기
IT/OS

Correcting the eth0 MAC Address in RHEL or CentOS

by 조병희 2013. 4. 20.

VMWare에서 리눅스 가상 머신을 클로닝할 때 간혹 네트워크 카드의 맥주소가 변경됨으로 인해 꼬일때가 있다.

예를들어 eth0에서 eth1 로 변경되기도 한다.

간혹 아래와 같이 persistent 파일을 수정하기도 하지만

$ vi /etc/udev/rules.d/70-persistent-net.rules

결국 다음과 같이 오류가 발생한다.

Bringing up interface eth0: Device eth0 has different MAC address than expected, ignoring.

기존 설정에 잡힌 내용 때문인데 직접가서 hwaddr 를 수정해 주면된다.

/etc/sysconfig/network-scripts/ifcfg-eth0

ifconfig -a 라고 해서 나온 mac address 를 ifcfg-eth0 에서 hwaddr 에 적어주고

# service network restart

혹은 재시작한다.

댓글