A solução era bem simples: eu tinha que adicionar as seguintes linhas no arquivo /etc/network/interfaces
do máquina virtual :
allow-hotplug eth1
iface eth1 inet dhcp
A segunda linha instrui a interface para obter um IP via DHCP. A primeira linha carrega a interface no momento da inicialização.
Para aplicar as alterações a um sistema em execução, invoque:
ifup eth1
O nome da interface eth1
pode variar, use ifconfig -a
para listar todas as interfaces disponíveis.
EDITAR : total /etc/network/interfaces
:
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
allow-hotplug eth0
iface eth0 inet dhcp
allow-hotplug eth1
iface eth1 inet dhcp