summaryrefslogtreecommitdiff
path: root/tests/topotests/lib/topogen.py
diff options
context:
space:
mode:
authorMartin Winter <mwinter@opensourcerouting.org>2018-07-18 17:41:24 -0700
committerDonald Sharp <sharpd@cumulusnetworks.com>2018-11-27 20:22:14 -0500
commita2a1134c77bd18fef600da136a4e357f805fc3e6 (patch)
treeccfa2ab1e8ef115d50cdf9fdf46d56a0fb4541ad /tests/topotests/lib/topogen.py
parent160ce66a284b0e62d8fd1ad812d18ef17d4460f2 (diff)
lib: Add support for staticd
Signed-off-by: Martin Winter <mwinter@opensourcerouting.org>
Diffstat (limited to 'tests/topotests/lib/topogen.py')
-rw-r--r--tests/topotests/lib/topogen.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/topotests/lib/topogen.py b/tests/topotests/lib/topogen.py
index 9e4132e8fb..52b3353f32 100644
--- a/tests/topotests/lib/topogen.py
+++ b/tests/topotests/lib/topogen.py
@@ -530,6 +530,7 @@ class TopoRouter(TopoGear):
RD_PIM = 9
RD_EIGRP = 10
RD_NHRP = 11
+ RD_STATIC = 12
RD = {
RD_ZEBRA: 'zebra',
RD_RIP: 'ripd',
@@ -542,6 +543,7 @@ class TopoRouter(TopoGear):
RD_LDP: 'ldpd',
RD_EIGRP: 'eigrpd',
RD_NHRP: 'nhrpd',
+ RD_STATIC: 'staticd',
}
def __init__(self, tgen, cls, name, **params):