본문 바로가기
가상화 VMware ESXi

VMware 에서 설치한 CentOS6 네트워크 오류 해결

by 씨엔아이소프트 2020. 3. 3.
반응형

VMware 에서 설치한 CentOS 6.x 를 복제한 뒤 에 네트워크 설정에 오류가 발생한다.

 

#service network restart

Bring up interface eth0: Device eth0 does not seem to be present, delaying initalization.

 

가상화 VM를 복제할 때 MAC 주소가 바뀌기 때문에 발생한 문제이다.

 

* 복제된 VM의 설정에서 네트워크 MAC 주소를 확인하고 적어둔다. 네트워크가 없으면 추가해준다.

 

 

리눅스 CentOS 6 VM을 시작한후

 

/etc/udev/rules.d/70-persistent-net.rules 파일을 수정합니다.

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

# This file was automatically generated by the /lib/udev/write_net_rules # program, run by the persistent-net-generator.rules rules file. # # You can modify it, as long as you keep each rule on a single # line, and change only the value of the NAME= key. # PCI device 0x8086:0x100f (e1000) SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:0c:29:2c:ff:a7", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0" # PCI device 0x8086:0x100f (e1000) SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:0c:29:da:06:f2", ATTR{type}=="1", KERNEL=="eth*", NAME="eth1"$ vi /etc/udev/rules.d/70-persistent-net.rules 

# This file was automatically generated by the /lib/udev/write_net_rules 
# program, run by the persistent-net-generator.rules rules file. 
# 
# You can modify it, as long as you keep each rule on a single 
# line, and change only the value of the NAME= key. 

# PCI device 0x8086:0x100f (e1000) 
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:0c:29:2c:ff:a7", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0" 

# PCI device 0x8086:0x100f (e1000) 
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:0c:29:2d:c2:b2", ATTR{type}=="1", KERNEL=="eth*", NAME="eth1" 


9~10라인을 삭제한다.

# PCI device 0x8086:0x100f (e1000) 
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:0c:29:2c:ff:a7", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0" 

 

13라인의 SUBSYSTEM=..... 맨끝부분 eth1을 eth0로 수정후 저장한다.

 

그리고 다음

/etc/sysconfig/network-scripts/ifcfg-eth0 파일의 이전 MAC 주소를 새로운 MAC 주소로 변경해준다.

 

저장후 시스템 재부팅

 

정상적으로 네트워크가 동작된다.

 

 

 

 

 

반응형

댓글