]> git.puffer.fish Git - matthieu/frr.git/commitdiff
topogen: add support for eigrpd and nhrp
authorRafael Zalamena <rzalamena@gmail.com>
Thu, 17 Aug 2017 18:18:18 +0000 (15:18 -0300)
committerDonald Sharp <sharpd@cumulusnetworks.com>
Wed, 28 Nov 2018 01:22:12 +0000 (20:22 -0500)
tests/topotests/lib/topogen.py

index 86b2873015098fc18a2c56cf47f46e61f441b70c..aaad5d49d7d7e92ea252d2f24a581e671d20de56 100644 (file)
@@ -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):