diff options
author | Sander Vrijders <[email protected]> | 2017-01-24 15:01:17 +0100 |
---|---|---|
committer | Sander Vrijders <[email protected]> | 2017-01-24 15:01:17 +0100 |
commit | 97e601fdc5c03de7c643c855228b83419394f728 (patch) | |
tree | 0f4cca29dd5bd4236122be280c53c6a34ced12fe /main.py | |
parent | aa144af88a71fe61c09c21469f78e22881f83354 (diff) | |
download | rumba-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-x | main.py | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -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]) |