반응형
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 주소로 변경해준다.
저장후 시스템 재부팅
정상적으로 네트워크가 동작된다.
반응형
'가상화 VMware ESXi' 카테고리의 다른 글
vCenter Server 7.0 설치 및 설정 (0) | 2022.02.11 |
---|---|
VCSA(VMware vCenter Server Appliance) 6.7 설치 (0) | 2022.02.11 |
VMware vSphere 6.7 에서 vSphere 7.0으로 업그레이드 진행ESXI 6.7에서 ESXI 7.0으로 업그레이드 (0) | 2022.02.11 |
vCenter 없이 vSphere 로 ESXi 에 연결해서 가상머신 복사하기 (0) | 2017.06.29 |
가상화 소프트웨어의 종류 (0) | 2017.05.30 |
댓글