From d6943c92f042f4cdbc1811ff9f69fa128fbb1913 Mon Sep 17 00:00:00 2001 From: tomsou Date: Tue, 27 Jun 2017 11:48:31 +0000 Subject: Route exchange test with testcase3 This review brings up quagga VM installed with 6WIND quagga, configures with external ip prefix and making sure that it gets exchanged with ODL peer. Change-Id: I9ba677e74f24258f7cc59db70b013fbdbbec917a Signed-off-by: Periyasamy Palanisamy --- sdnvpn/lib/quagga.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'sdnvpn/lib/quagga.py') diff --git a/sdnvpn/lib/quagga.py b/sdnvpn/lib/quagga.py index e072f1c..0ea206e 100644 --- a/sdnvpn/lib/quagga.py +++ b/sdnvpn/lib/quagga.py @@ -44,12 +44,14 @@ def bootstrap_quagga(fip_addr, controller_ip): def gen_quagga_setup_script(controller_ip, fake_floating_ip, - ext_net_mask): + ext_net_mask, + ip_prefix, rd, irt, ert): with open(COMMON_CONFIG.quagga_setup_script_path) as f: template = f.read() script = template % (controller_ip, fake_floating_ip, - ext_net_mask) + ext_net_mask, + ip_prefix, rd, irt, ert) return script -- cgit 1.2.3-korg