VM 호스트만 작동하고 NAT 네트워킹이 작동하지 않는 이유는 무엇입니까?

VM 호스트만 작동하고 NAT 네트워킹이 작동하지 않는 이유는 무엇입니까?

호스트만 사용하고 NAT 네트워킹을 사용하도록 설정된 VMbox를 망치는 Ubuntu가 있습니다.

문제는 nat network연결할 수 없다는 것입니다.NAT 네트워킹
아래와 같이 인터페이스를 설정했습니다.

GNU nano 2.8.6                   File: /etc/network/interfaces

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5). 

source /etc/network/interfaces.d/*

# The loopback network interface
auto lo
iface lo inet loopback

# Host-only interface
auto enp0s3
iface  enp0s3 inet dhcp

#Nat
auto enp0s8
iface eth2 inet dhcp

위 파일에 문제가 있는 걸까요?

답변1

더 자세히 알아 보려면 의 출력을 확인해야 ip addr하지만 @Michael Hampton이 설명에서 지적했듯이 구성이 시스템 구성 방식과 일치하지 않습니다.

이 블록~할 수 있었다enp0s8( ip addr확인할 수 없음) 이라는 이름의 두 번째 인터페이스가 시스템에 의해 감지되고 있음을 나타냅니다 .

#Nat
auto enp0s8

eth2하지만 대신 DHCP로 설정했습니다 .

iface eth2 inet dhcp

인터페이스가 eth2.

대신 다음을 시도해 보세요.

#Nat
auto enp0s8
iface enp0s8 inet dhcp

관련 정보