公式のUbuntu 16.04 LTS(Xenial Xerus)私は、基本的なネットワーク設定に問題がある(VirtualBoxの上)ベイグラントボックスの画像:
私の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
結果:
==> 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
設定をDHCPに残すことも機能しません。
server.vm.network "private_network", type: "dhcp"
同時に、上記の構成は、のために働くubuntu/trusty64
とubuntu/wily64
し、非公式gbarbieru/xenial
。
/sbin/ifdown eth1 2> /dev/null
インターフェイスの命名規則が異なるため、コマンドを試しても結果は得られません(主なものはですenp0s3
)。
ここで明らかな何かを見逃していますか、それとも箱が壊れていますか?