summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaffael Schmid <raffael@yux.ch>2013-01-19 16:40:11 +0100
committerRaffael Schmid <raffael@yux.ch>2013-01-19 16:40:11 +0100
commit184bc4f953271eec1a90f268b4879cac6579c553 (patch)
treedfc696cd808fd0a5f6d75594c569e9af18477f47
parent35d7d4538759f598aebcf924e090206bec02aec1 (diff)
configure hostonly network
-rw-r--r--Vagrantfile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Vagrantfile b/Vagrantfile
index 1362a06..88875ff 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -20,6 +20,7 @@ Vagrant::Config.run do |config|
config.vm.define :server_ubuntu do |c|
c.vm.box = 'precise64'
server_config c
+ c.vm.network :hostonly, '10.255.255.10'
end
config.vm.define :server_centos do |c|
@@ -29,11 +30,13 @@ Vagrant::Config.run do |config|
c.vm.provision :shell, :inline => 'yum install -y rpmforge-release-0.5.2-2.el6.rf.x86_64.rpm || exit 0'
server_config c
+ c.vm.network :hostonly, '10.255.255.11'
end
config.vm.define :client_ubuntu do |c|
c.vm.box = 'precise64'
client_config c
+ c.vm.network :hostonly, '10.255.255.20'
end
end