Setting tag sliver-openvswitch-2.2.90-1
[sliver-openvswitch.git] / planetlab / exp-tool / conf.mk.example
1 # the slice that you're using
2 SLICE=inri_sl1
3
4 # optionally, the OF controller that you'd like to use
5 # CONTROLLER = tcp:138.96.116.63:6633
6 # you need to run 'make controllers' for this to take effect
7 # you can also specify a controller per node, e.g.
8 # CONTROLLER_SENDER = <another localtion>
9 # NOTE that hostnames do not seem to be supported as of this writing
10
11 # optionnally, the related ssh (private) key to use
12 SSH_KEY=key_user.rsa
13
14 # optionally, you can change the way nodes are displayed
15 display="$(call solve,$(1))"
16
17 #################### the nodes to use
18 HOST_SENDER=vnode09.pl.sophia.inria.fr
19 HOST_MUX=vnode02.pl.sophia.inria.fr
20 HOST_END1=vnode10.pl.sophia.inria.fr
21 HOST_END2=vnode07.pl.sophia.inria.fr
22
23 # and their related IP and netmask
24 # not that all these MUST fall in the vsys_vnet tag as granted by your planetlab operator
25 # (in this example it is 10.0.100.0/24)
26
27 IP_SENDER=10.0.100.1/24
28 IP_MUX=10.0.100.2/24
29 IP_END1=10.0.100.3/24
30 IP_END2=10.0.100.4/24
31
32 #################### the links to create
33 LINKS :=
34 # add one from SENDER to MUX
35 LINKS += SENDER-MUX 
36 # one from MUX to each of the 2 receivers
37 LINKS += MUX-END1
38 LINKS += MUX-END2
39
40 ####################