我有一个 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