[CentOS] Bringing up interface eth1: Device eth1 does not seem to be present, delaying initialization.

 ㅁ 상황

   - Vmware에서 Clone이후 네트웍 연결 안됨.
   - network 시작시 Bringing up interface eth1: Device eth1 does not seem to be present, delaying initialization. 에러가 뜸.


ㅁ 해결 방법

   - VM -> Edit Settings -> Hardware 탭에서 Network adapter 클릭
   - MAC Address 확인 (예 : 12:23:34:45:56:67 )
   [root@Server /]# vi /etc/udev/rules.d/70-persistent-net.rules

  # 기존 NAME="eth1"을 찾아 ATTR{address} 에 위에서 찾은 MAC Address를 입력함.
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="12:23:34:45:56:67", ATTR{type}=="1", KERNEL=="eth*", NAME="eth1"

   [root@Server /]# reboot


끝.