From c267e5b11297e914d30f706b3b720f15a6a09730 Mon Sep 17 00:00:00 2001 From: Rafael Zalamena Date: Thu, 17 Aug 2017 15:18:18 -0300 Subject: [PATCH] topogen: add support for eigrpd and nhrp --- tests/topotests/lib/topogen.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/topotests/lib/topogen.py b/tests/topotests/lib/topogen.py index 86b2873015..aaad5d49d7 100644 --- a/tests/topotests/lib/topogen.py +++ b/tests/topotests/lib/topogen.py @@ -512,6 +512,8 @@ class TopoRouter(TopoGear): RD_BGP = 7 RD_LDP = 8 RD_PIM = 9 + RD_EIGRP = 10 + RD_NHRP = 11 RD = { RD_ZEBRA: 'zebra', RD_RIP: 'ripd', @@ -522,6 +524,8 @@ class TopoRouter(TopoGear): RD_BGP: 'bgpd', RD_PIM: 'pimd', RD_LDP: 'ldpd', + RD_EIGRP: 'eigrpd', + RD_NHRP: 'nhrpd', } def __init__(self, tgen, cls, name, **params): -- 2.39.5