diff options
author | ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp> | 2016-02-28 14:51:24 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2016-02-29 15:41:37 -0800 |
commit | 53c5bc0258cede44d3544270309b6dd2e83cf058 (patch) | |
tree | 2e6c9bcc1e75f53cd219d3b18259b3dc634b2eef /test/lib/exabgp.py | |
parent | 7dd4813776f4ef12b2b76d42e519d7193956fe3a (diff) |
server: support active connection with md5 protection
Signed-off-by: ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp>
Diffstat (limited to 'test/lib/exabgp.py')
-rw-r--r-- | test/lib/exabgp.py | 7 |
1 files changed, 7 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: |