CentOS VM 복제후 네트워크가 안되는 경우
virt-clone 으로 VM 을 복제한 후에 아래 처럼 네트워크가 안잡히는 경우에 해결 방법입니다.
# ifup eth0
Device eth0 does not seem to be present, delaying initialization.
먼저 /etc/udev/rules.d/70-persistent-net.rules 파일을 수정합니다.
▶ 수정전
# PCI device 0x1af4:0x1000 (virtio-pci)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="51:54:00:0f:e4:65", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0"
# PCI device 0x1af4:0x1000 (virtio-pci)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="51:54:00:5b:70:a2", ATTR{type}=="1", KERNEL=="eth*", NAME="eth1"
▶ 수정후
# PCI device 0x1af4:0x1000 (virtio-pci)
#SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="51:54:00:0f:e4:65", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0"
# PCI device 0x1af4:0x1000 (virtio-pci)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="51:54:00:5b:70:a2", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0"
eth0 부분을 막고 eth1 로 되어 있는 부분은 eth0 로 변경하면 됩니다.
이제 /etc/sysconfig/network-scripts/ifcfg-eth0 파일을 수정합니다.
HWADDR="51:54:00:5b:70:a2"
HWADDR 부분을 찾아서 저위에 있는 MAC Address 로 변경합니다.
재부팅해서 정상적으로 동작하는지 확인합니다.
'LINUX' 카테고리의 다른 글
Ubuntu Desktop 콘솔 터미널 창 여는 방법 (0) | 2017.11.12 |
---|---|
KVM virsh shutdown 명령어 안먹히는 문제 (0) | 2017.11.09 |
KVM VM 복제 명령어 virt-clone 사용방법 (0) | 2017.11.09 |
KVM 가상화 컨트롤 명령어 virsh (0) | 2017.11.08 |
리눅스 하드디스크 정보 확인 명령어 (0) | 2017.10.26 |