aboutsummaryrefslogtreecommitdiff
path: root/main.py
diff options
context:
space:
mode:
Diffstat (limited to 'main.py')
-rwxr-xr-xmain.py23
1 files changed, 8 insertions, 15 deletions
diff --git a/main.py b/main.py
index 49508e9..3200f77 100755
--- a/main.py
+++ b/main.py
@@ -4,28 +4,21 @@
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"})
+ difs = [e1],
+ registrations = {"cbr.a" : [e1]},
+ bindings = {"cbr.a" : "/usr/bin/cbr"})
b = Node("b",
- difs = [e1, n1],
- dif_registrations = {n1 : [e1]})
+ difs = [e1])
-tb = jFedTestbed(exp_name = "letest",
- username = "sander",
- cert_file = "cert.pem",
- jfed_jar = "jfed_cli/experimenter-cli.jar")
+tb = EmulabTestbed(exp_name = "test001",
+ username = "sander",
+ url = "wall2.ilabt.iminds.be")
-exp = IRATIExperiment("paperino", tb,
- nodes = [a, b])
+exp = OuroborosExperiment(tb, nodes = [a, b])
print(exp)