Setting tag sliver-openvswitch-2.2.90-1
[sliver-openvswitch.git] / planetlab / exp-tool / conf.mk.example
index 5c4d895..e2fdaf8 100644 (file)
@@ -1,21 +1,40 @@
+# the slice that you're using
 SLICE=inri_sl1
 
-# f12-32
+# optionally, the OF controller that you'd like to use
+# CONTROLLER = tcp:138.96.116.63:6633
+# you need to run 'make controllers' for this to take effect
+# you can also specify a controller per node, e.g.
+# CONTROLLER_SENDER = <another localtion>
+# NOTE that hostnames do not seem to be supported as of this writing
+
+# optionnally, the related ssh (private) key to use
+SSH_KEY=key_user.rsa
+
+# optionally, you can change the way nodes are displayed
+display="$(call solve,$(1))"
+
+#################### the nodes to use
 HOST_SENDER=vnode09.pl.sophia.inria.fr
-# f12-64
 HOST_MUX=vnode02.pl.sophia.inria.fr
-# f14-32
 HOST_END1=vnode10.pl.sophia.inria.fr
-# f14-64
 HOST_END2=vnode07.pl.sophia.inria.fr
 
+# and their related IP and netmask
+# not that all these MUST fall in the vsys_vnet tag as granted by your planetlab operator
+# (in this example it is 10.0.100.0/24)
+
 IP_SENDER=10.0.100.1/24
 IP_MUX=10.0.100.2/24
 IP_END1=10.0.100.3/24
 IP_END2=10.0.100.4/24
 
-# the ssh key to use; optional
-SSH_KEY=key_user.rsa
+#################### the links to create
+LINKS :=
+# add one from SENDER to MUX
+LINKS += SENDER-MUX 
+# one from MUX to each of the 2 receivers
+LINKS += MUX-END1
+LINKS += MUX-END2
 
-# how to display nodes in messages
-display="$(call solve,$(1))"
+####################