Eu fiz esta pergunta em askubuntu.com aqui
Mods, sinta-se à vontade para excluir um ou outro!
Aqui está a maneira de resolver o problema embora
Depois de muita tentativa e erro, esta parece ser a opção mais confiável ...
Bridged With a bridged configuration, packets are sent directly. The guest system behaves as if independent. As this makes the MAC addresses of the guest system visible from the outside, a virtual MAC address needs to be requested via the Hetzner Robot and assigned to the guest network card. The bridge gets the same network configuration as eth0. The configuration of eth0 is omitted without replacement.
Obtenha endereços MAC separados para cada um dos IPs adicionais
Em seguida, use isso para os hosts / etc / network / interfaces ..
# remove or disable configuration for eth0
#auto eth0
#iface eth0 inet static
#
auto br0
iface br0 inet static
address (Main IP)
netmask (like eth0, e.g: 255.255.255.254)
gateway (same as that for the main IP)
bridge_ports eth0
bridge_stp off
bridge_fd 1
bridge_hello 2
bridge_maxage 12
Configure o SO Convidado no VirtualBox para usar uma rede em ponte e selecione br0. Em configurações avançadas, defina o mac do adaptador de rede para o endereço MAC que a Hetzner forneceu para o novo IP (sem qualquer:)
Em seguida, no sistema operacional convidado, use isto ...
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto eth0
#iface eth0 inet dhcp
iface eth0 inet static
address (ADD IP 1)
broadcast (FOR ADD IP 1)
netmask (FOR ADD IP 1)
gateway (MAIN IP)
dns-nameservers 8.8.8.8