From 68ae67dc58961fb7a7c54380c715d4f4ac634509 Mon Sep 17 00:00:00 2001 From: Bob Lantz Date: Wed, 10 Jun 2015 20:34:58 -0700 Subject: [PATCH] Support custom links in custom file --- bin/mn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/mn b/bin/mn index 684ae31..7354eb8 100755 --- a/bin/mn +++ b/bin/mn @@ -158,7 +158,7 @@ class MininetRunner( object ): def setCustom( self, name, value ): "Set custom parameters for MininetRunner." - if name in ( 'topos', 'switches', 'hosts', 'controllers' ): + if name in ( 'topos', 'switches', 'hosts', 'controllers', 'links' ): # Update dictionaries param = name.upper() globals()[ param ].update( value )