Created
November 8, 2012 04:58
-
-
Save smerrill/4036869 to your computer and use it in GitHub Desktop.
VagrantFile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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