Moving to 6653; flow decomp to handle failed flows

Change-Id: Ic5f6f0a549d6f2e5bdef13b4e9e182b1aa5bd652
diff --git a/ofagent/agent.py b/ofagent/agent.py
index a222480..d1a56f7 100644
--- a/ofagent/agent.py
+++ b/ofagent/agent.py
@@ -163,7 +163,7 @@
             return ports
 
     stub = MockRpc()
-    agents = [Agent('localhost:6633', 256 + i, stub).start() for i in range(n)]
+    agents = [Agent('localhost:6653', 256 + i, stub).start() for i in range(n)]
 
     def shutdown():
         [a.stop() for a in agents]