X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=examples%2Fopenvswitch%2Fovs_ping_3switches_loop.py;h=9544ba0db6bd2452c6711127ad4a7d4390c71b20;hb=38575a0f27f26511965771dde8320060b10252dd;hp=54b2083db93072bd7372239ee55311dc920f32fd;hpb=1e2eb157cb569e9c28a5b7888ed97076d27414cb;p=nepi.git diff --git a/examples/openvswitch/ovs_ping_3switches_loop.py b/examples/openvswitch/ovs_ping_3switches_loop.py index 54b2083d..9544ba0d 100644 --- a/examples/openvswitch/ovs_ping_3switches_loop.py +++ b/examples/openvswitch/ovs_ping_3switches_loop.py @@ -69,10 +69,10 @@ def add_port(ec, port_name, ovs): ec.register_connection(port, ovs) return port -def add_tap(ec, ip4, prefix4, pointopoint, node): +def add_tap(ec, endpoint_ip, endpoint_prefix, pointopoint, node): tap = ec.register_resource("PlanetlabTap") - ec.set(tap, "ip4", ip4) - ec.set(tap, "prefix4", prefix4) + ec.set(tap, "endpoint_ip", endpoint_ip) + ec.set(tap, "endpoint_prefix", endpoint_prefix) ec.set(tap, "pointopoint", pointopoint) ec.set(tap, "up", True) ec.register_connection(tap, node) @@ -94,6 +94,7 @@ def add_app(ec, command, node): # Create the EC ec = ExperimentController(exp_id = "test-tr") +#XXX : Need to put 6 working nodes or to let Nepi find for you switch1 = "planetlab2.virtues.fi" switch2 = "planetlab2.upc.es" switch3 = "planetlab2.cs.aueb.gr" @@ -101,9 +102,13 @@ host1 = "planetlab2.ionio.gr" host2 = "iraplab2.iralab.uni-karlsruhe.de" host3 = "planetlab2.diku.dk" -ip_controller = "194.254.215.12" +#ip_controller = "194.254.215.12" +ip_controller = "xxx.yyy.zzz.ttt" + +#XXX : Depends on the Vsys_tag of your slice network = "192.168.3.0" +#XXX : Name of your slice slicename = "inria_nepi" pl_user = os.environ.get("PL_USER") @@ -165,8 +170,7 @@ ec.deploy() ec.wait_finished([app1, app2, app3, app4, app5, app6, app7, app8, app9, app10, app11, app12]) -# Retreive ping results and save -# them in a file +# Retreive ping results and save them in a file ping1 = ec.trace(app1, 'stdout') ping2 = ec.trace(app2, 'stdout') ping3 = ec.trace(app3, 'stdout')