為什麼僅 vm 主機和 NAT 網路不起作用?

為什麼僅 vm 主機和 NAT 網路不起作用?

我有一個 VMbox 破壞了 Ubuntu 設定為僅使用主機和 NAT 網路。

問題是無法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

相關內容