You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Does it support Windows? When running Vagrant up on my windows machine, it fails to start when having both eth enabled.
==> opdk: Checking for guest additions in VM...
==> opdk: Checking for host entries
==> opdk: Configuring and enabling network interfaces...
The following SSH command responded with a non-zero exit status.
Vagrant assumes that this means the command failed!
set -e
/sbin/ifdown '' || true
/sbin/ip addr flush dev ''
# Remove any previous network modifications from the interfaces file
sed -e '/^#VAGRANT-BEGIN/,$ d' /etc/network/interfaces > /tmp/vagrant-network-interfaces.pre
sed -ne '/^#VAGRANT-END/,$ p' /etc/network/interfaces | tac | sed -e '/^#VAGRANT-END/,$ d' | tac > /tmp/vagrant-network-
interfaces.post
cat \
/tmp/vagrant-network-interfaces.pre \
/tmp/vagrant-network-entry \
/tmp/vagrant-network-interfaces.post \
> /etc/network/interfaces
rm -f /tmp/vagrant-network-interfaces.pre
rm -f /tmp/vagrant-network-entry
rm -f /tmp/vagrant-network-interfaces.post
/sbin/ifup ''
Stdout from the command:
Stderr from the command:
mesg: ttyname failed: Inappropriate ioctl for device
Unknown interface
Device "" does not exist.
The text was updated successfully, but these errors were encountered:
Yes, it supports running on Windows. I think the error you are seeing is related to Issue #3 You'll need to downgrade your Vagrant install to 1.8.5 to resolve the issue
Does it support Windows? When running Vagrant up on my windows machine, it fails to start when having both eth enabled.
The text was updated successfully, but these errors were encountered: