README.md in vagrant-parallels-0.0.8 vs README.md in vagrant-parallels-0.0.9
- old
+ new
@@ -1,6 +1,8 @@
# Vagrant Parallels Provider
+[](https://travis-ci.org/yshahin/vagrant-parallels)
+[](https://codeclimate.com/github/yshahin/vagrant-parallels)
This is a [Vagrant](http://www.vagrantup.com) 1.3+ plugin that adds a [Parallels Desktop](http://www.parallels.com/products/desktop/)
provider to Vagrant, allowing Vagrant to control and provision machines using Parallels Desktop instead of the default Virtualbox.
## Note
@@ -60,11 +62,11 @@
along with a `Vagrantfile` that does default settings for the
provider-specific configuration for this provider.
## Networking
By default 'vagrant-parallels' uses the basic Vagrant networking approach. By default VM has one adapter assigned to the 'Shared' network in Parallels Desktop.
-But you can also add one ore more `:private_network` adapters, as described below:
+But you can also add one ore more `:private_network` adapters, as described below:
### Private Network
It is fully compatible with basic Vagrant [Private Networks](http://docs.vagrantup.com/v2/networking/private_network.html).
#### Available arguments:
- `type` - IP configuration way: `:static` or `:dhcp` (exactly Symbol object). Default is `:static`. If `:dchp` is set, such interface will get an IP dynamically from default subnet "10.37.129.1/255.255.255.0".
@@ -74,14 +76,14 @@
- `nic_type` - Unnecessary argument, means the type of network adapter. Can be any of `"virtio"`, `"e1000"` or `"rtl"`. Default is `"e1000"`.
#### Example:
```ruby
Vagrant.configure("2") do |config|
- config.vm.network :private_network, ip: "33.33.33.50", netmask: "255.255.0.0"
+ config.vm.network :private_network, ip: "33.33.33.50", netmask: "255.255.0.0"
config.vm.network :private_network, type: :dhcp, nic_type: "rtl"
end
```
-It means that two private network adapters will be configured:
+It means that two private network adapters will be configured:
1) The first will have static ip '33.33.33.50' and mask '255.255.0.0'. It will be represented as device `"e1000"` by default (e.g. 'Intel(R) PRO/1000 MT').
2) The second adapter will be configured as `"rtl"` ('Realtek RTL8029AS') and get an IP from internal DHCP server, which is working on the default network "10.37.129.1/255.255.255.0".
### Public Network
It is fully compatible with basic Vagrant [Public Networks](http://docs.vagrantup.com/v2/networking/public_network.html).