aboutsummaryrefslogtreecommitdiff
path: root/examples/rinaperf_sb-usage.py
blob: 0e7ca72eb4899d407a0a23959b09a4a8290e9bd6 (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/usr/bin/env python

from rumba.model import *
from rumba.storyboard import *
import rumba.testbeds.qemu as qemu
import rumba.prototypes.irati as irati
import rumba.log as log
from rumba.utils import ExperimentManager

log.set_logging_level('DEBUG')


n1 = NormalDIF("n1")

n1.add_policy("rmt.pff", "lfa")
n1.add_policy("security-manager", "passwd")

e1 = ShimEthDIF("e1")

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

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

tb = qemu.Testbed(exp_name="example1",
                  username="root",
                  password="root")

exp = irati.Experiment(tb, nodes=[a, b])


# General setup (can be reused in other scripts as-is)
storyboard = StoryBoard(duration=30)
client = Client("rinaperf",
                options="-t perf -s 1000 -D <duration>",
                shutdown="")
server = Server("rinaperf", options="-l", arrival_rate=0.5,
                mean_duration=5, clients=[client])


# Experiment-specific configuration:
# (This can be done anytime before storyboard.start())

storyboard.set_experiment(exp)
storyboard.add_server((server, a))
client.add_node(b)


print(exp)

with ExperimentManager(exp):
    exp.swap_in()
    exp.bootstrap_prototype()
    storyboard.start()
    input('ENTER')