aboutsummaryrefslogtreecommitdiff
path: root/examples/triangle.py
blob: 6be58a52906ffd9a44e07bee66eb2cd95c036312 (plain)
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
#!/usr/bin/env/python

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

shim500 = ShimEthDIF("shim500", link_speed=30))
shim400 = ShimEthDIF("shim400", link_speed=20))
shim300 = ShimEthDIF("shim300", link_speed=10))

n1 = NormalDIF("n1")

a = Node("a",
    difs=[300, 500, n1],
    dif_registrations={n1: [300, 500]})

b = Node("b",
    difs=[300, 400, n1],
    dif_registrations={n1: [300, 400]})

c = Node("c",
    difs=[400, 500, n1],
    dif_registrations={n1: [400, 500]})

tb = qemu.Testbed(exp_name = "triangle",
    bzimage = "/home/mcapitani/RINA/checkouts/rlite/demo/buildroot/bzImage",
    initramfs = "/home/mcapitani/RINA/checkouts/rlite/demo/buildroot/rootfs.cpio")

exp = rl.Experiment(tb, nodes = [a, b, c, d])

print(exp)

exp.run()