É porque o Vagrant fornece o endereço IP para a interface eth0 e a configuração padrão é via DHCP. Então, se você quiser fazer alguma correção, aqui está a resposta. Tudo que você precisa fazer é editar seu arquivo / etc / network / interfaces por
nano /etc/network/interfaces
e adicione post-up resolvconf -d eth0.dhclient
linha após iface eth1 inet dhcp
para que seu /etc/network/interfaces
seja assim
'
# 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
# Source interfaces
# Please check /etc/network/interfaces.d before changing this file
# as interfaces may have been defined in /etc/network/interfaces.d
# NOTE: the primary ethernet device is defined in
# /etc/network/interfaces.d/eth0
# See LP: #1262951
source /etc/network/interfaces.d/*.cfg
#VAGRANT-BEGIN
# The contents below are automatically generated by Vagrant. Do not modify.
auto eth1
iface eth1 inet dhcp
post-up resolvconf -d eth0.dhclient
#VAGRANT-END'