X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=planetlab%2Fexp-tool%2Fconf.mk.example;h=c554a805b4a414d3f565b60a3c0d9f993eb16bba;hb=23ac66053b47ebd56dca0e8a56363012ff6bf11f;hp=821e9558d4a68f462a2f65958668be4517ca4a28;hpb=e368cad8ecf6dbf272b2a3775b2e3e5e2dc6a5cf;p=sliver-openvswitch.git diff --git a/planetlab/exp-tool/conf.mk.example b/planetlab/exp-tool/conf.mk.example index 821e9558d..c554a805b 100644 --- a/planetlab/exp-tool/conf.mk.example +++ b/planetlab/exp-tool/conf.mk.example @@ -1,21 +1,42 @@ +# 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 = +# 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 -IP_SENDER=10.0.100.1 -IP_MUX=10.0.100.2 -IP_END1=10.0.100.3 -IP_END2=10.0.100.4 +# 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 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 + +#################### -# the ssh key to use; optional -SSH_KEY=key_user.rsa -# how to display nodes in messages -display="$(call solve,$(1))"