Run iperf only only software for now
diff --git a/web/topology_rest.py b/web/topology_rest.py
index e0966ce..e56536b 100755
--- a/web/topology_rest.py
+++ b/web/topology_rest.py
@@ -927,6 +927,9 @@
 #http://localhost:9000/gui/iperf/rate/<flow_id>
 @app.route("/gui/iperf/rate/<flow_id>")
 def iperf_rate(flow_id):
+  if (TESTBED == "hw"):
+    return ""
+
   try:
     command = "curl -s \'http://%s:%s/wm/flow/get/%s/json\'" % (RestIP, RestPort, flow_id)
     print command