gmap_report subcommand
[sliver-openvswitch.git] / planetlab / exp-tool / Makefile.help
1 ==================== usual target
2 make [init+all]
3         shortcut for 'make init all'
4 make init
5         create util subdirs needed by this tool
6 make all
7         initialize the whole topology on all nodes
8 ==================== inspect donfig
9 make showslice
10         show SLICE as defined in conf.mk
11 make shownodes
12 make showhostnames
13 make showips
14 make showlinks
15         show nodes and links declared in conf.mk in various formats
16 make sshchecks
17 make ovsversions
18         try out ssh connectivity to slivers in the slice, or show installed ovs version
19 ==================== For changing the topology on the fly
20 make L/<id1>-<id2>
21         create a link between nodes with ids <id1> and <id2>
22 make U/<id1>-<id2>
23         delete link between nodes with ids <id1> and <id2>
24 ==================== cleanup
25 make clean
26         clean up whatever has been created on the slivers
27 make distclean
28         clean up local cache, useful when restarting from a clean slice
29 ==================== configure (direct switches towards) OF controllers 
30 make showcontrollers
31         show how OF controllers are configured from conf.mk
32         use CONTROLLER_<nodeid> if set, or CONTROLLER as a default otherwise
33 make controllers
34         configure the various switches so they use the configured controllers
35 ==================== devel
36 make update 
37         push a new version of sliver-ovs into the slivers
38         use SLIVER_OVS that should point to the local new version
39 ==================== manually/progressively deploy stuff (done in make all)
40 make dbs
41         initialize ovs db in all slivers
42 make switchs
43         start ovs switch in all slivers
44 make bridges
45         create a bridge interface linked to tap device in each sliver
46 make start 
47         shortcut for make dbs switchs
48 make stop
49         stop all ovs switch in all slivers
50 make status
51         list status of db and switch processes in all slivers
52 ====================