Com a imagem oficial da caixa Ubuntu 16.04 LTS (Xenial Xerus) Vagrant (no VirtualBox), tenho problemas com as configurações básicas de rede:
Meu Vagrantfile
:
Vagrant.configure(2) do |config|
config.vm.box = 'ubuntu/xenial64'
config.vm.define "xenial" do |server|
server.vm.network "private_network", ip: "192.168.10.10"
end
end
vagrant up
resultado:
==> xenial: Configuring and enabling network interfaces...
The following SSH command responded with a non-zero exit status.
Vagrant assumes that this means the command failed!
/sbin/ifdown eth1 2> /dev/null
Stdout from the command:
Stderr from the command:
sudo: unable to resolve host ubuntu-xenial
mesg: ttyname failed: Inappropriate ioctl for device
Deixar a configuração para o DHCP também não funciona:
server.vm.network "private_network", type: "dhcp"
Ao mesmo tempo, as configurações acima trabalhar para ubuntu/trusty64
e ubuntu/wily64
como não oficiais gbarbieru/xenial
.
Tentar o comando /sbin/ifdown eth1 2> /dev/null
não dá resultados, pois a interface possui um esquema de nomenclatura diferente (o principal é enp0s3
).
Estou perdendo algo óbvio aqui ou a caixa está quebrada?