Skip to content

Instantly share code, notes, and snippets.

@smerrill
Created November 8, 2012 04:58
Show Gist options
  • Save smerrill/4036869 to your computer and use it in GitHub Desktop.
Save smerrill/4036869 to your computer and use it in GitHub Desktop.
VagrantFile
Vagrant::Config.run do |config|
config.vm.define :lucid32 do |lucid32_config|
lucid32_config.vm.box = "lucid32"
lucid32_config.vm.forward_port 22, 22221
lucid32_config.vm.network :hostonly, "172.30.30.1"
end
config.vm.define :lucid64 do |lucid64_config|
lucid64_config.vm.box = "lucid64"
lucid64_config.vm.forward_port 22, 22222
lucid64_config.vm.network :hostonly, "172.30.30.2"
end
config.vm.define :VCP do |VCP_config|
VCP_config.vm.box = "VCP"
VCP_config.vm.forward_port 22, 22223
VCP_config.vm.network :hostonly, "172.30.30.3"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment