summaryrefslogtreecommitdiffhomepage
path: root/test/lib/gobgp.py
diff options
context:
space:
mode:
authorISHIDA Wataru <ishida.wataru@lab.ntt.co.jp>2017-05-09 07:47:09 +0000
committerWataru Ishida <ishida.wataru@lab.ntt.co.jp>2017-05-09 11:10:45 -0400
commit0f62519cd77f1cf38dee5b58377d0c347fe619bc (patch)
tree836c0fc65d09a6129c4edc16f04267ccd584075a /test/lib/gobgp.py
parent485b88244076b76a4bc1cef7b0630b3e70703fda (diff)
server: ignore routes when local AS is in AS_PATH
RFC4271 9.1.2 Phase 2: Route Selection If the AS_PATH attribute of a BGP route contains an AS loop, the BGP route should be excluded from the Phase 2 decision function. AS loop detection is done by scanning the full AS path (as specified in the AS_PATH attribute), and checking that the autonomous system number of the local system does not appear in the AS path. Operations of a BGP speaker that is configured to accept routes with its own autonomous system number in the AS path are outside the scope of this document. Also this commit adds support for allow-own-as option to relax this. Signed-off-by: ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp>
Diffstat (limited to 'test/lib/gobgp.py')
-rw-r--r--test/lib/gobgp.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/lib/gobgp.py b/test/lib/gobgp.py
index 14fbfe1f..15264bfb 100644
--- a/test/lib/gobgp.py
+++ b/test/lib/gobgp.py
@@ -357,6 +357,10 @@ class GoBGPContainer(BGPContainer):
},
}
+ n['as-path-options'] = {'config': {}}
+ if info['allow_as_in'] > 0:
+ n['as-path-options']['config']['allow-own-as'] = info['allow_as_in']
+
if ':' in info['local_addr']:
n['transport']['config']['local-address'] = info['local_addr'].split('/')[0]