summaryrefslogtreecommitdiffhomepage
path: root/test/scenario_test/lib/quagga.py
diff options
context:
space:
mode:
authorISHIDA Wataru <ishida.wataru@lab.ntt.co.jp>2015-09-24 13:20:12 +0900
committerISHIDA Wataru <ishida.wataru@lab.ntt.co.jp>2015-09-25 18:20:48 +0900
commitb38d3f672303cbceaebc05d9711307ba2c9f06dc (patch)
treeb91a4231b44d990621c54e9d4fbd454b4bce1103 /test/scenario_test/lib/quagga.py
parent72113e364524297ab1caf62c8c62f0a4ff228849 (diff)
zebra: enable to redistribute specific route type
Signed-off-by: ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp>
Diffstat (limited to 'test/scenario_test/lib/quagga.py')
-rw-r--r--test/scenario_test/lib/quagga.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/scenario_test/lib/quagga.py b/test/scenario_test/lib/quagga.py
index 3cd29618..f36b56a8 100644
--- a/test/scenario_test/lib/quagga.py
+++ b/test/scenario_test/lib/quagga.py
@@ -225,6 +225,10 @@ class QuaggaBGPContainer(BGPContainer):
c << 'hostname zebra'
c << 'password zebra'
c << 'log file {0}/zebra.log'.format(self.SHARED_VOLUME)
+ c << 'debug zebra packet'
+ c << 'debug zebra kernel'
+ c << 'debug zebra rib'
+ c << ''
with open('{0}/zebra.conf'.format(self.config_dir), 'w') as f:
print colors.yellow('[{0}\'s new config]'.format(self.name))