diff --git a/lib/vagrant/guest/base.rb b/lib/vagrant/guest/base.rb index b9fba239e..78842ee2d 100644 --- a/lib/vagrant/guest/base.rb +++ b/lib/vagrant/guest/base.rb @@ -81,7 +81,7 @@ module Vagrant # # { # :type => :static, - # :ip => "33.33.33.10", + # :ip => "192.168.33.10", # :netmask => "255.255.255.0", # :interface => 1 # } diff --git a/templates/commands/init/Vagrantfile.erb b/templates/commands/init/Vagrantfile.erb index 9f9ca33a7..9ad226920 100644 --- a/templates/commands/init/Vagrantfile.erb +++ b/templates/commands/init/Vagrantfile.erb @@ -20,7 +20,7 @@ Vagrant::Config.run do |config| # via the IP. Host-only networks can talk to the host machine as well as # any other machines on the same network, but cannot be accessed (through this # network interface) by any external networks. - # config.vm.network :hostonly, "33.33.33.10" + # config.vm.network :hostonly, "192.168.33.10" # Assign this VM to a bridged network, allowing you to connect directly to a # network using the host's network device. This makes the VM appear as another diff --git a/test/acceptance/networking/host_only_test.rb b/test/acceptance/networking/host_only_test.rb index d15f20070..ee3942356 100644 --- a/test/acceptance/networking/host_only_test.rb +++ b/test/acceptance/networking/host_only_test.rb @@ -26,12 +26,12 @@ describe "vagrant host only networking" do f.puts(<