v2/networking/index.html.md encourages the reader to seek provider-specific information under the documentation for the provider, so for consistency, any virtualbox-specific networking info should be placed there, not in the general networking section.
1.1 KiB
1.1 KiB
| page_title | sidebar_current |
|---|---|
| Networking - VirtualBox Provider | virtualbox-networking |
Networking
VirtualBox Internal Network
The VirtualBox provider supports using the private network as a VirtualBox internal network. By default, private networks are host-only networks, because those are the easiest to work with. However, internal networks can be enabled as well.
To specify a private network as an internal network for VirtualBox
use the virtualbox__intnet option with the network. The virtualbox__
(double underscore) prefix tells Vagrant that this option is only for the
VirtualBox provider.
Vagrant.configure("2") do |config|
config.vm.network "private_network", ip: "192.168.50.4",
virtualbox__intnet: true
end
Additionally, if you want to specify that the VirtualBox provider join a specific internal network, specify the name of the internal network:
Vagrant.configure("2") do |config|
config.vm.network "private_network", ip: "192.168.50.4",
virtualbox__intnet: "mynetwork"
end