From 803c0a6e224a302c73d5fc231b9fe4d22b67527a Mon Sep 17 00:00:00 2001
From: Rich Lane <rlane@bigswitch.com>
Date: Sat, 29 Jun 2013 18:11:15 -0700
Subject: [PATCH] IVSSwitch: use ovs-ofctl for dpctl functionality

---
 mininet/node.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mininet/node.py b/mininet/node.py
index 0b67a008..71ac9a0b 100644
--- a/mininet/node.py
+++ b/mininet/node.py
@@ -1084,7 +1084,7 @@ def dpctl( self, *args ):
         "Run dpctl command"
         if not self.listenPort:
             return "can't run dpctl without passive listening port"
-        return self.cmd( 'dpctl ' + ' '.join( args ) +
+        return self.cmd( 'ovs-ofctl ' + ' '.join( args ) +
                          ' tcp:127.0.0.1:%i' % self.listenPort )
 
 
-- 
GitLab