X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2Fvim-emu.git;a=blobdiff_plain;f=emuvim%2Fexample_topology.py;h=2342fd10cd8d7b745ca90fda689b055f8d299dbb;hp=3c53c58b0cf9232138014ddab5461444dfb7de10;hb=4854f59e1bc2ea4d5b3495880940b52f6823affe;hpb=a29c50cffd72de2f5533bb4f294adfe9a0f655d5 diff --git a/emuvim/example_topology.py b/emuvim/example_topology.py index 3c53c58..2342fd1 100755 --- a/emuvim/example_topology.py +++ b/emuvim/example_topology.py @@ -20,6 +20,7 @@ import logging from mininet.log import setLogLevel from dcemulator.net import DCNetwork from api.zerorpcapi import ZeroRpcApiEndpoint +from api.zerorpcapi_DCNetwork import ZeroRpcApiEndpointDCNetwork logging.basicConfig(level=logging.INFO) @@ -30,6 +31,12 @@ def create_topology1(): """ net = DCNetwork() + """ + 1b. add a monitoring agent to the DCNetwork + """ + mon_api = ZeroRpcApiEndpointDCNetwork("0.0.0.0", 5151) + mon_api.connectDCNetwork(net) + mon_api.start() """ 2. Add (logical) data centers to the topology (each data center is one "bigswitch" in our simplified @@ -102,6 +109,8 @@ def create_topology1(): net.start() net.CLI() # when the user types exit in the CLI, we stop the emulator + # we need to explicitly stop the monitoring api, so the Ryu controller is also terminated + mon_api.stop() net.stop()