From 53c5bc0258cede44d3544270309b6dd2e83cf058 Mon Sep 17 00:00:00 2001 From: ISHIDA Wataru Date: Sun, 28 Feb 2016 14:51:24 +0900 Subject: server: support active connection with md5 protection Signed-off-by: ISHIDA Wataru --- test/lib/exabgp.py | 7 +++++++ test/lib/quagga.py | 2 ++ 2 files changed, 9 insertions(+) (limited to 'test/lib') 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) -- cgit v1.2.3