Với hình ảnh hộp Vagrant chính thức của Ubuntu 16.04 LTS (Xenial Xerus) (trên VirtualBox), tôi gặp vấn đề với các cài đặt mạng cơ bản:
My 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
kết quả:
==> 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
Để cấu hình cho DHCP cũng không hoạt động:
server.vm.network "private_network", type: "dhcp"
Cùng lúc đó, các cấu hình trên làm việc cho ubuntu/trusty64
và ubuntu/wily64
và không chính thức gbarbieru/xenial
.
Thử lệnh /sbin/ifdown eth1 2> /dev/null
không cho kết quả vì giao diện có sơ đồ đặt tên khác (cái chính là enp0s3
).
Tôi đang thiếu một cái gì đó rõ ràng ở đây hoặc là hộp bị hỏng?