diff --git a/mininet/node.py b/mininet/node.py index b347837..f7a53ef 100644 --- a/mininet/node.py +++ b/mininet/node.py @@ -1426,7 +1426,8 @@ class OVSController( Controller ): @classmethod def isAvailable( cls ): return ( quietRun( 'which ovs-controller' ) or - quietRun( 'which test-controller' ) ) + quietRun( 'which test-controller' ) or + quietRun( 'which ovs-testcontroller' ) ) class NOX( Controller ): "Controller to run a NOX application."