This is a big commit, and I apologize in advance for the future
git-blames all pointing to me. This commit does a few things:
1. Merges the website/docs and website/www repo into a single website repo
to be in line with other HashiCorp projects
2. Updates to use middleman-hashicorp
3. Converts less to scss to be in line with other projects
4. Updates page styles to be in line with other projects
5. Optimizes images
6. Prepare for S3 + Fastly deployment with scripts, etc.
7. Removes blog posts (they have been transferred to hashicorp.com with
redirects in place
8. Updated sitemap generation script for better SEO
9. Fixed many broken links
10. Add description to all fields
59 lines
1.8 KiB
Markdown
59 lines
1.8 KiB
Markdown
---
|
|
layout: "docs"
|
|
page_title: "Networking - VirtualBox Provider"
|
|
sidebar_current: "providers-virtualbox-networking"
|
|
description: |-
|
|
The Vagrant 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.
|
|
---
|
|
|
|
# Networking
|
|
|
|
## VirtualBox Internal Network
|
|
|
|
The Vagrant VirtualBox provider supports using the private network as a
|
|
VirtualBox [internal network](https://www.virtualbox.org/manual/ch06.html#network_internal).
|
|
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.
|
|
|
|
```ruby
|
|
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:
|
|
|
|
```ruby
|
|
Vagrant.configure("2") do |config|
|
|
config.vm.network "private_network", ip: "192.168.50.4",
|
|
virtualbox__intnet: "mynetwork"
|
|
end
|
|
```
|
|
|
|
## VirtualBox NIC Type
|
|
|
|
You can specify a specific NIC type for the created network interface
|
|
by using the `nic_type` parameter. This is not prefixed by `virtualbox__`
|
|
for legacy reasons, but is VirtualBox-specific.
|
|
|
|
This is an advanced option and should only be used if you know what
|
|
you are using, since it can cause the network device to not work at all.
|
|
|
|
Example:
|
|
|
|
```ruby
|
|
Vagrant.configure("2") do |config|
|
|
config.vm.network "private_network", ip: "192.168.50.4",
|
|
nic_type: "virtio"
|
|
end
|
|
```
|