环境:Ubuntu 16, VirtualBox
安装一个ubuntu 16的虚拟环境,已经启用NAT和host-only,查询网络时却发现host-only没有分配网络地址。
ifconfig -a
编辑interfaces
sudo vi /etc/network/interfaces
添加如下(其中enp0s8是上面查询出的网络标识):
auto enp0s8
iface enp0s8 inet dhcp
然后重启网络
sudo /etc/init.d/networking restart