虚拟盒多个适配器设置问题

虚拟盒多个适配器设置问题

在虚拟机中,我有 2 个 VM,其中Xubuntu一个在,Ubuntu Server另一个在。

我在网络设置中选择了 2 个适配器,'NAT'然后'Host-only Adapter'

问题: Xubuntu 正确获得了 2 个网络接口,而 Ubuntu 服务器只获得了一个。

操作系统 -> XUBUNTU

Settings -> Network
Adapter 1 -> NAT
Adapter 2 -> Host-only Adapter

结果:

eth0 : 10.0.2.15
eth1 : 192.168.56.102

操作系统 -> Ubuntu 服务器

Settings -> Network
Adapter 1 -> NAT
Adapter 2 -> Host-only Adapter

结果:

eth0 : 10.0.2.15

对于 ubuntu 服务器,我没有得到 eth1,而对于 Xubuntu ,我得到了它

> ifconfig eth1

eth1 Link encap:Ethernet HWaddr 08:00:27:92:ad:7f
BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)

/etc/网络/接口

auto lo
iface lo inet loopback

auto eth0
iface eth0 inet dhcp

auto eth1
iface eth1 inet static
address:    192.168.56.102
broadcast:  192.168.56.255
netmask:    255.255.255.0
gateway:    0.0.0.0

相关内容