aboutsummaryrefslogtreecommitdiff
path: root/main.py
diff options
context:
space:
mode:
Diffstat (limited to 'main.py')
-rwxr-xr-xmain.py25
1 files changed, 0 insertions, 25 deletions
diff --git a/main.py b/main.py
deleted file mode 100755
index 3200f77..0000000
--- a/main.py
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/usr/bin/env python
-
-# An example script using rhumba.py
-
-from rhumba import *
-
-e1 = ShimEthDIF("e1")
-
-a = Node("a",
- difs = [e1],
- registrations = {"cbr.a" : [e1]},
- bindings = {"cbr.a" : "/usr/bin/cbr"})
-
-b = Node("b",
- difs = [e1])
-
-tb = EmulabTestbed(exp_name = "test001",
- username = "sander",
- url = "wall2.ilabt.iminds.be")
-
-exp = OuroborosExperiment(tb, nodes = [a, b])
-
-print(exp)
-
-exp.run()