aboutsummaryrefslogtreecommitdiff
path: root/examples/example.py
blob: 7fe130d788431eda19cc6838c905a37fa9c3b6ba (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
#!/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

import rumba.log as log

log.set_logging_level('DEBUG')

n1 = NormalDIF("n1", policies = {"rmt.pff": "lfa",
                                 "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]},
         end_user = True)

tb = jfed.Testbed(exp_name = "example1",
                  username = "user1",
                  cert_file = "/home/user1/cert.pem")

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

print(exp)

try:
    exp.swap_in()
    exp.bootstrap_prototype()
    c1 = ClientBinary("rinaperf", options = "-t perf -s 1000 -c 10000")
    s1 = Server("rinaperf", arrival_rate=2, mean_duration=5, options = "-l", nodes = [a], clients = [c1])
    sb = StoryBoard(exp, 3600, servers = [s1])
    sb.start()
finally:
    exp.swap_out()