single config file - LINKS get defined in conf.mk
[sliver-openvswitch.git] / planetlab / exp-tool / conf.mk.example
1 # the slice that you're using
2 SLICE=inri_sl1
3
4 # optionnally, the related ssh (private) key to use
5 SSH_KEY=key_user.rsa
6
7 # optionally, you can change the way nodes are displayed
8 display="$(call solve,$(1))"
9
10 #################### the nodes to use
11 HOST_SENDER=vnode09.pl.sophia.inria.fr
12 HOST_MUX=vnode02.pl.sophia.inria.fr
13 HOST_END1=vnode10.pl.sophia.inria.fr
14 HOST_END2=vnode07.pl.sophia.inria.fr
15
16 # and their related IP and netmask
17 # not that all these MUST fall in the vsys_vnet tag as granted by your planetlab operator
18 # (in this example it is 10.0.100.0/24)
19
20 IP_SENDER=10.0.100.1/24
21 IP_MUX=10.0.100.2/24
22 IP_END1=10.0.100.3/24
23 IP_END2=10.0.100.4/24
24
25 #################### the links to create
26 LINKS :=
27 # add one from SENDER to MUX
28 LINKS += SENDER-MUX 
29 # one from MUX to each of the 2 receivers
30 LINKS += MUX-END1
31 LINKS += MUX-END2
32
33 ####################
34
35