oft: change default port to 6653

6653 is the IANA assigned port number.
diff --git a/src/python/oftest/controller.py b/src/python/oftest/controller.py
index b23eefa..4feb99e 100644
--- a/src/python/oftest/controller.py
+++ b/src/python/oftest/controller.py
@@ -94,7 +94,7 @@
     @var dbg_state Debug indication of state
     """
 
-    def __init__(self, switch=None, host='127.0.0.1', port=6633, max_pkts=1024):
+    def __init__(self, switch=None, host='127.0.0.1', port=6653, max_pkts=1024):
         Thread.__init__(self)
         # Socket related
         self.rcv_size = RCV_SIZE_DEFAULT