aboutsummaryrefslogtreecommitdiff
path: root/main.py
diff options
context:
space:
mode:
authorSander Vrijders <sander.vrijders@intec.ugent.be>2017-01-19 14:58:51 +0100
committerSander Vrijders <sander.vrijders@intec.ugent.be>2017-01-20 17:00:05 +0100
commitaa144af88a71fe61c09c21469f78e22881f83354 (patch)
treededb8362f78deec486d3881bd27a255b0f79a86b /main.py
parente184e2838cc2b65fe9afe1cf7649b01ce4dcf73f (diff)
downloadrumba-aa144af88a71fe61c09c21469f78e22881f83354.tar.gz
rumba-aa144af88a71fe61c09c21469f78e22881f83354.zip
rhumba: Add emulab support
Now the defined experiment can already be run on the Virtual Wall (1 and 2). The user has to create an EmulabTestbed object and fill it in with the correct info. Next step would be adding jFed as a testbed so that the user can choose which testbed software to use.
Diffstat (limited to 'main.py')
-rwxr-xr-xmain.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/main.py b/main.py
index 1b61543..5da0cc9 100755
--- a/main.py
+++ b/main.py
@@ -19,7 +19,11 @@ b = Node("b",
difs = [e1, n1],
dif_registrations = {n1 : [e1]})
-exp = IRATIExperiment("paperino",
+tb = EmulabTestbed(username = "sander",
+ exp_name = "test001",
+ url = "wall2.ilabt.iminds.be")
+
+exp = IRATIExperiment("paperino", tb,
nodes = [a, b])
print(exp)