summaryrefslogtreecommitdiffhomepage
path: root/test/lib
diff options
context:
space:
mode:
Diffstat (limited to 'test/lib')
-rw-r--r--test/lib/exabgp.py7
-rw-r--r--test/lib/quagga.py2
2 files changed, 9 insertions, 0 deletions
diff --git a/test/lib/exabgp.py b/test/lib/exabgp.py
index af6b6e0c..5de3d65b 100644
--- a/test/lib/exabgp.py
+++ b/test/lib/exabgp.py
@@ -30,6 +30,7 @@ class ExaBGPContainer(BGPContainer):
def _start_exabgp(self):
cmd = CmdBuffer(' ')
cmd << 'env exabgp.log.destination={0}/exabgpd.log'.format(self.SHARED_VOLUME)
+ cmd << "exabgp.tcp.bind='0.0.0.0' exabgp.tcp.port=179"
cmd << './exabgp/sbin/exabgp {0}/exabgpd.conf'.format(self.SHARED_VOLUME)
self.local(str(cmd), flag='-d')
@@ -74,6 +75,12 @@ class ExaBGPContainer(BGPContainer):
cmd << ' asn4 disable;'
cmd << ' }'
+ if info['passwd']:
+ cmd << ' md5 "{0}";'.format(info['passwd'])
+
+ if info['passive']:
+ cmd << ' passive;'
+
routes = [r for r in self.routes.values() if r['rf'] == 'ipv4' or r['rf'] == 'ipv6']
if len(routes) > 0:
diff --git a/test/lib/quagga.py b/test/lib/quagga.py
index 81c8f666..e76c7a8b 100644
--- a/test/lib/quagga.py
+++ b/test/lib/quagga.py
@@ -197,6 +197,8 @@ class QuaggaBGPContainer(BGPContainer):
direction)
if info['passwd']:
c << 'neighbor {0} password {1}'.format(n_addr, info['passwd'])
+ if info['passive']:
+ c << 'neighbor {0} passive'.format(n_addr)
if version == 6:
c << 'address-family ipv6 unicast'
c << 'neighbor {0} activate'.format(n_addr)