aboutsummaryrefslogtreecommitdiff
path: root/main.py
blob: 1b615436cd66d4e966ac00e0a9b7cff30c1f3fd4 (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
#!/usr/bin/env python

# An example script using rhumba.py

from rhumba import *

n1 = NormalDIF("n1", policies = {"rmt.pff": "lfa",
                                 "security-manager": "passwd"})

e1 = ShimEthDIF("e1")

a = Node("a",
         difs = [n1, e1],
         dif_registrations = {n1 : [e1]},
         registrations = {"a.crap" : [n1]},
         bindings = {"a.crap" : "/usr/bin/crap"})

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

exp = IRATIExperiment("paperino",
                      nodes = [a, b])

print(exp)

exp.run()