summaryrefslogtreecommitdiff
path: root/example.py
diff options
context:
space:
mode:
authorvmaffione <v.maffione@gmail.com>2017-02-09 14:50:53 +0000
committervmaffione <v.maffione@gmail.com>2017-02-09 14:50:53 +0000
commitddba01f87c57cf8096205783eaada858213b5410 (patch)
treed48bab60bf92a223222e6af62a0748da376981e0 /example.py
parent22b3218c951ebfc0bd2b2bdb89adb59b8a3e5ee7 (diff)
parentfd37777d333c991c094aa128ae5f30d9fa80a9d6 (diff)
downloadrumba-0.1.tar.gz
rumba-0.1.zip
Merge branch 'master-sander' into 'master' 0.1
rumba time See merge request !7
Diffstat (limited to 'example.py')
-rwxr-xr-xexample.py42
1 files changed, 0 insertions, 42 deletions
diff --git a/example.py b/example.py
deleted file mode 100755
index b13f0ce..0000000
--- a/example.py
+++ /dev/null
@@ -1,42 +0,0 @@
-#!/usr/bin/env python
-
-# An example script using rhumba.py
-
-from rhumba import *
-
-# import testbed plugins
-import rhumba_emulab as emulab
-import rhumba_jfed as jfed
-import rhumba_faketestbed as fake
-
-# import prototype plugins
-import rhumba_ouroboros as our
-import rhumba_rlite as rl
-import rhumba_irati as irati
-
-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 = jfed.jFedTestbed(exp_name = "letest",
- username = "sander",
- cert_file = "cert.pem",
- jfed_jar = "jfed_cli/experimenter-cli.jar")
-#tb = fake.FakeTestbed(exp_name = "x", username = "yy")
-
-exp = irati.IRATIExperiment(tb, nodes = [a, b])
-
-print(exp)
-
-exp.run()