#!/usr/bin/env python # An example script using rhumba.py from rhumba import * e1 = ShimEthDIF("e1") a = Node("a", difs = [e1], registrations = {"cbr.a" : [e1]}, bindings = {"cbr.a" : "/usr/bin/cbr"}) b = Node("b", difs = [e1]) tb = EmulabTestbed(exp_name = "test001", username = "sander", url = "wall2.ilabt.iminds.be") exp = OuroborosExperiment(tb, nodes = [a, b]) print(exp) exp.run()