We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm trying to create a virtual machine using Vagrant + parallels plugin.
This virtual machine require 3 NIC and I setup the Vagrantfile using the public_network as follows:
Vagrant.configure("2") do |config| config.vm.network "public_network", bridge: en0 config.vm.network "public_network", bridge: en8 config.vm.network "public_network", bridge: en9 end
en0, en8 and en9 are ethernet NICs and I need to attach them to virtual machine, and it is detected by prlsrvctl command
The main problem is en0 has unplugged the ethernet cable and, when I tried to vagrant up, I receive the next message:
If I attach the cable it works fine.
I need to vagrant up the machine with the unplugged cable first, and once the machine is up, plugged it by own reasons.
Are there any configurations I can add to Vagrantfile to reach out this goal?
Thanks
The text was updated successfully, but these errors were encountered:
In addition, I've just tested it by using Virtualbox (and same device), and Virtualbox allows to attach the NIC althoug the cable is unplugged.
So,the problem seems to be focussed on parallels plugin
Sorry, something went wrong.
No branches or pull requests
I'm trying to create a virtual machine using Vagrant + parallels plugin.
This virtual machine require 3 NIC and I setup the Vagrantfile using the public_network as follows:
Vagrant.configure("2") do |config|
config.vm.network "public_network", bridge: en0
config.vm.network "public_network", bridge: en8
config.vm.network "public_network", bridge: en9
end
en0, en8 and en9 are ethernet NICs and I need to attach them to virtual machine, and it is detected by prlsrvctl command
The main problem is en0 has unplugged the ethernet cable and, when I tried to vagrant up, I receive the next message:
If I attach the cable it works fine.
I need to vagrant up the machine with the unplugged cable first, and once the machine is up, plugged it by own reasons.
Are there any configurations I can add to Vagrantfile to reach out this goal?
Thanks
The text was updated successfully, but these errors were encountered: