2015-09-13
启动虚拟机,使用ifconfig查看网络配置只能看到第一个网卡信息eth0。
此时查看网络配置文件/etc/network/interfaces,内容如下:
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet dhcp
修改此文件,添加eth1的配置信息
auto eth1
iface eth1 inet dhcp
或者
auto eth1
iface eth1 inet static
address 192.168.56.101 # 参考宿主机器“VirtualBox Host-Only Network”配置
netmask 255.255.255.0