aboutsummaryrefslogtreecommitdiff
path: root/main.py
diff options
context:
space:
mode:
authorSander Vrijders <[email protected]>2017-01-24 15:01:17 +0100
committerSander Vrijders <[email protected]>2017-01-24 15:01:17 +0100
commit97e601fdc5c03de7c643c855228b83419394f728 (patch)
tree0f4cca29dd5bd4236122be280c53c6a34ced12fe /main.py
parentaa144af88a71fe61c09c21469f78e22881f83354 (diff)
downloadrumba-97e601fdc5c03de7c643c855228b83419394f728.tar.gz
rumba-97e601fdc5c03de7c643c855228b83419394f728.zip
rhumba: Add jFed support
This adds jFed support. You need to direct the python script to the jFed CLI jar when creating a jFedTestbed, as well as directing it to your certificate. The passphrase for this certificate will be asked upon starting.
Diffstat (limited to 'main.py')
-rwxr-xr-xmain.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/main.py b/main.py
index 5da0cc9..49508e9 100755
--- a/main.py
+++ b/main.py
@@ -19,9 +19,10 @@ b = Node("b",
difs = [e1, n1],
dif_registrations = {n1 : [e1]})
-tb = EmulabTestbed(username = "sander",
- exp_name = "test001",
- url = "wall2.ilabt.iminds.be")
+tb = jFedTestbed(exp_name = "letest",
+ username = "sander",
+ cert_file = "cert.pem",
+ jfed_jar = "jfed_cli/experimenter-cli.jar")
exp = IRATIExperiment("paperino", tb,
nodes = [a, b])