summaryrefslogtreecommitdiffhomepage
path: root/test/scenario_test/lib/exabgp.py
diff options
context:
space:
mode:
authorISHIDA Wataru <ishida.wataru@lab.ntt.co.jp>2015-09-07 16:15:35 +0900
committerISHIDA Wataru <ishida.wataru@lab.ntt.co.jp>2015-09-16 03:37:51 +0900
commit2cfc7d972006e77a6c47fe1f2becbadd3c67bedd (patch)
tree7a0fc83afe253f4edebe4bd413baa462d9084752 /test/scenario_test/lib/exabgp.py
parent4345250b33421e53bf2c71bc4886b72cdb52e764 (diff)
packet: support draft-ietf-idr-flow-spec-v6-06
you can add ipv6 flowspec routes like below $ gobgp global rib add match destination 2001::/64 10 label '=200' then discard -a ipv6-flowspec $ gobgp global rib -a ipv6-flowspec Network Next Hop AS_PATH Age Attrs *> [destination:2001::/64/10][label: =200] fictitious 00:00:23 [{Origin: i} {Extcomms: [discard]}] scenario_test is also added Signed-off-by: ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp>
Diffstat (limited to 'test/scenario_test/lib/exabgp.py')
-rw-r--r--test/scenario_test/lib/exabgp.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/test/scenario_test/lib/exabgp.py b/test/scenario_test/lib/exabgp.py
index a3be012b..af310530 100644
--- a/test/scenario_test/lib/exabgp.py
+++ b/test/scenario_test/lib/exabgp.py
@@ -14,7 +14,7 @@
# limitations under the License.
from base import *
-
+from itertools import chain
class ExaBGPContainer(BGPContainer):
@@ -101,8 +101,7 @@ class ExaBGPContainer(BGPContainer):
cmd << '{0};'.format(str(r))
cmd << ' }'
- routes = [r for r in self.routes.values() if r['rf'] == 'ipv4-flowspec']
-
+ routes = [r for r in self.routes.itervalues() if 'flowspec' in r['rf']]
if len(routes) > 0:
cmd << ' flow {'
for route in routes: