Skip to content

Commit

Permalink
Change remote controller contacting port to 6633.
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhijiaCHEN committed Jun 19, 2018
1 parent ac57396 commit 4c28486
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions apps/orch.sql
Original file line number Diff line number Diff line change
Expand Up @@ -110,4 +110,5 @@ language plpgsql;

drop trigger if exists del_app on orch;
CREATE trigger del_app after delete on orch
FOR EACH ROW
execute PROCEDURE unload_app();
2 changes: 1 addition & 1 deletion ravel/network.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ def __init__(self, db, topo, controller):

self.net = Mininet(topo,
controller=partial(RemoteController,
ip="127.0.0.1"))
ip="127.0.0.1:6633"))

super(MininetProvider, self).__init__(NetworkProvider.QueueId, db)

Expand Down

0 comments on commit 4c28486

Please sign in to comment.