IVSSwitch: use ovs-ofctl for dpctl functionality

This commit is contained in:
Rich Lane
2013-06-29 18:11:15 -07:00
parent 8ee4aa6de4
commit 803c0a6e22
+1 -1
View File
@@ -1084,7 +1084,7 @@ class IVSSwitch(Switch):
"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 )