Virtual Box Ubuntu Server 18.04 两个网络适配器

Virtual Box Ubuntu Server 18.04 两个网络适配器

你好,我尝试使用 2 个网络适配器创建一个 Ubuntu 虚拟服务器

在虚拟盒中,我添加了第一个带有 NAT 的网络适配器和第二个带有仅主机的网络适配器。

现在在 Ubuntu 中我将“/etc/network/interfaces”编辑为

auto lo
iface lo inet loopback 
auto enp0s3
iface enp0s3 inet dhcp
auto enp0s8
iface enp0s8 inet dhcp

当我现在使用“ifconfig -a”时,只有 enp0s3 有 ip 地址

我做错了什么,导致 enp0s8 也能获得 IP 地址?

答案1

VirtualBox 连接的适配器默认不启用 DHCP。您需要静态分配 IP 地址或在 VirtualBox 管理界面中启用 DHCP 分配功能。

相关内容