Con la imagen oficial de Ubuntu 16.04 LTS (Xenial Xerus) Vagrant box (en VirtualBox) tengo problemas con la configuración básica de red:
Mi 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
Dejar la configuración a DHCP tampoco funciona:
server.vm.network "private_network", type: "dhcp"
Al mismo tiempo, las configuraciones anteriores trabajan para ubuntu/trusty64
y ubuntu/wily64
como no oficiales gbarbieru/xenial
.
Probar el comando /sbin/ifdown eth1 2> /dev/null
no da resultados ya que la interfaz tiene un esquema de nomenclatura diferente (el principal es enp0s3
).
¿Me estoy perdiendo algo obvio aquí o la caja está rota?