summaryrefslogtreecommitdiffstats
path: root/sdnvpn/lib/quagga.py
diff options
context:
space:
mode:
authorPeriyasamy Palanisamy <periyasamy.palanisamy@ericsson.com>2018-07-02 07:59:29 +0000
committerGerrit Code Review <gerrit@opnfv.org>2018-07-02 07:59:29 +0000
commit643764bf5b65d837d424df278015f8cfb535a3ad (patch)
tree8a7ee85a4b316916ca5c099fc4f4d53f3ef42782 /sdnvpn/lib/quagga.py
parent85fc78459cb3e3df72a6cb5c793d19ae41ddd7dd (diff)
parentd6943c92f042f4cdbc1811ff9f69fa128fbb1913 (diff)
Merge "Route exchange test with testcase3"
Diffstat (limited to 'sdnvpn/lib/quagga.py')
-rw-r--r--sdnvpn/lib/quagga.py6
1 files changed, 4 insertions, 2 deletions
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