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
Copy file name to clipboardExpand all lines: homestead.md
+14-4Lines changed: 14 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -217,7 +217,7 @@ folders:
217
217
> **Warning**
218
218
> You should never mount `.` (the current directory) when using Homestead. This causes Vagrant to not map the current folder to `/vagrant` and will break optional features and cause unexpected results while provisioning.
219
219
220
-
To enable [NFS](https://www.vagrantup.com/docs/synced-folders/nfs.html), you may add a `type` option to your folder mapping:
220
+
To enable [NFS](https://developer.hashicorp.com/vagrant/docs/synced-folders/nfs), you may add a `type` option to your folder mapping:
221
221
222
222
```yaml
223
223
folders:
@@ -229,7 +229,7 @@ folders:
229
229
> **Warning**
230
230
> When using NFS on Windows, you should consider installing the [vagrant-winnfsd](https://github.com/winnfsd/vagrant-winnfsd) plug-in. This plug-in will maintain the correct user / group permissions for files and directories within the Homestead virtual machine.
231
231
232
-
You may also pass any options supported by Vagrant's [Synced Folders](https://www.vagrantup.com/docs/synced-folders/basic_usage.html) by listing them under the `options` key:
232
+
You may also pass any options supported by Vagrant's [Synced Folders](https://developer.hashicorp.com/vagrant/docs/synced-folders/basic_usage) by listing them under the `options` key:
233
233
234
234
```yaml
235
235
folders:
@@ -784,7 +784,7 @@ networks:
784
784
ip: "192.168.10.20"
785
785
```
786
786
787
-
To enable a [bridged](https://www.vagrantup.com/docs/networking/public_network.html) interface, configure a `bridge` setting for the network and change the network type to `public_network`:
787
+
To enable a [bridged](https://developer.hashicorp.com/vagrant/docs/networking/public_network) interface, configure a `bridge` setting for the network and change the network type to `public_network`:
788
788
789
789
```yaml
790
790
networks:
@@ -793,14 +793,24 @@ networks:
793
793
bridge: "en1: Wi-Fi (AirPort)"
794
794
```
795
795
796
-
To enable [DHCP](https://www.vagrantup.com/docs/networking/public_network.html), just remove the `ip` option from your configuration:
796
+
To enable [DHCP](https://developer.hashicorp.com/vagrant/docs/networking/public_network#dhcp), just remove the `ip` option from your configuration:
797
797
798
798
```yaml
799
799
networks:
800
800
- type: "public_network"
801
801
bridge: "en1: Wi-Fi (AirPort)"
802
802
```
803
803
804
+
To update what device the network is using, you may add a `dev` option to the network's configuration. The default `dev` value is `eth0`:
0 commit comments