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
49 lines
1.7 KiB
Markdown
49 lines
1.7 KiB
Markdown
---
|
|
layout: "docs"
|
|
page_title: "Basic Usage - Networking"
|
|
sidebar_current: "networking-basic"
|
|
description: |-
|
|
Vagrant offers multiple options for how you are able to connect your
|
|
guest machines to the network, but there is a standard usage pattern as
|
|
well as some points common to all network configurations that
|
|
are important to know.
|
|
---
|
|
|
|
# Basic Usage of Networking
|
|
|
|
Vagrant offers multiple options for how you are able to connect your
|
|
guest machines to the network, but there is a standard usage pattern as
|
|
well as some points common to all network configurations that
|
|
are important to know.
|
|
|
|
## Configuration
|
|
|
|
All networks are configured within your [Vagrantfile](/docs/vagrantfile/)
|
|
using the `config.vm.network` method call. For example, the Vagrantfile
|
|
below defines some port forwarding:
|
|
|
|
```ruby
|
|
Vagrant.configure("2") do |config|
|
|
# ...
|
|
config.vm.network "forwarded_port", guest: 80, host: 8080
|
|
end
|
|
```
|
|
|
|
Every network type has an identifier such as `:forwarded_port` in the above
|
|
example. Following this is a set of configuration arguments that can differ
|
|
for each network type. In the case of forwarded ports, two numeric arguments
|
|
are expected: the port on the guest followed by the port on the host that
|
|
the guest port can be accessed by.
|
|
|
|
## Multiple Networks
|
|
|
|
Multiple networks can be defined by having multiple `config.vm.network`
|
|
calls within the Vagrantfile. The exact meaning of this can differ for
|
|
each [provider](/docs/providers/), but in general the order specifies
|
|
the order in which the networks are enabled.
|
|
|
|
## Enabling Networks
|
|
|
|
Networks are automatically configured and enabled after they've been defined
|
|
in the Vagrantfile as part of the `vagrant up` or `vagrant reload` process.
|