1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
#!/usr/bin/env python
# An example script using the rumba package
from rumba.model import *
# import testbed plugins
import rumba.testbeds.emulab as emulab
import rumba.testbeds.jfed as jfed
import rumba.testbeds.faketestbed as fake
import rumba.testbeds.qemu as qemu
# import prototype plugins
import rumba.prototypes.ouroboros as our
import rumba.prototypes.rlite as rl
import rumba.prototypes.irati as irati
n1 = NormalDIF("n1")
n2 = NormalDIF("n2")
n3 = NormalDIF("n3")
n4 = NormalDIF("n4")
e1 = ShimEthDIF("e1")
e2 = ShimEthDIF("e2")
e3 = ShimEthDIF("e3")
a = Node("a",
difs = [n3, n4, n1, e1],
dif_registrations = {n4: [n1], n3: [n1], n1 : [e1]},
registrations = {"rinaperf.server" : [n3]},
bindings = {"rinaperf.server" : "/usr/bin/rinaperf"})
b = Node("b",
difs = [n1, e1, e2],
dif_registrations = {n1 : [e1, e2]})
c = Node("c",
difs = [n3, n4, n1, n2, e2, e3],
dif_registrations = {n4: [n1], n3: [n1, n2], n1 : [e2], n2: [e3]})
d = Node("d",
difs = [n3, n2, e3],
dif_registrations = {n3: [n2], n2 : [e3]})
tb = qemu.Testbed(exp_name = "twolayers",
username = "vmaffione",
bzimage = '/home/vmaffione/git/rlite/demo/buildroot/bzImage',
initramfs = '/home/vmaffione/git/rlite/demo/buildroot/rootfs.cpio')
exp = rl.Experiment(tb, nodes = [a, b, c, d])
print(exp)
exp.run()
|