와 공식 우분투 16.04 LTS (주객 관계의 Xerus) 나는 기본 네트워크 설정에 문제가있는 (버추얼 박스)에 방랑 상자 이미지 :
내 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
).
여기에 분명한 것이 누락되었거나 상자가 깨진 것입니까?