From 3eb75b57af4efd1772882caf84947e8ae7130dab Mon Sep 17 00:00:00 2001 From: Prasanna Santhanam Date: Tue, 4 Sep 2012 11:02:33 +0530 Subject: [PATCH] IP ranges for public network in an EIP enabled zone --- tools/marvin/marvin/configGenerator.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tools/marvin/marvin/configGenerator.py b/tools/marvin/marvin/configGenerator.py index 7cda6ae6216..11fbce997dd 100644 --- a/tools/marvin/marvin/configGenerator.py +++ b/tools/marvin/marvin/configGenerator.py @@ -384,6 +384,14 @@ def describe_setup_in_eip_mode(): z.internaldns2 = "192.168.110.253" z.name = "test"+str(l) z.networktype = 'Basic' + + ips = iprange() + ips.vlan = "49" + ips.startip = "10.147.49.200" + ips.endip = "10.147.49.250" + ips.gateway = "10.147.49.1" + ips.netmask = "255.255.255.0" + z.ipranges.append(ips) #If security groups are reqd sgprovider = provider()