#!/usr/bin/env python # An example script using rhumba.py from rhumba import * n1 = NormalDIF("n1", policies = {"rmt.pff": "lfa", "security-manager": "passwd"}) e1 = ShimEthDIF("e1") a = Node("a", difs = [n1, e1], dif_registrations = {n1 : [e1]}, registrations = {"a.crap" : [n1]}, bindings = {"a.crap" : "/usr/bin/crap"}) b = Node("b", difs = [e1, n1], dif_registrations = {n1 : [e1]}) tb = EmulabTestbed(username = "sander", exp_name = "test001", url = "wall2.ilabt.iminds.be") exp = IRATIExperiment("paperino", tb, nodes = [a, b]) print(exp) exp.run()