From a638e0b0850be6ef4b1c8d45755284ee4763d0e2 Mon Sep 17 00:00:00 2001 From: Felician Nemeth Date: Thu, 7 Dec 2017 12:17:50 +0100 Subject: [PATCH] Set the datapath desciption (dp-desc) of OVS switches --- mininet/node.py | 1 + 1 file changed, 1 insertion(+) diff --git a/mininet/node.py b/mininet/node.py index c8d34e4..704c798 100644 --- a/mininet/node.py +++ b/mininet/node.py @@ -1160,6 +1160,7 @@ class OVSSwitch( Switch ): opts += ' protocols=%s' % self.protocols if self.stp and self.failMode == 'standalone': opts += ' stp_enable=true' + opts += ' other-config:dp-desc=%s' % self.name return opts def start( self, controllers ):