1LNST-CTL(1) General Commands Manual LNST-CTL(1)
2
3
4
6 lnst-ctl - Linux Network Stack Test controller
7
9 lnst-ctl [OPTION]... ACTION RECIPE...
10
12 Linux Network Stack Test is a tool that supports development and execu‐
13 tion of automated and portable network tests. For detailed description
14 of the architecture of LNST please refer to project website (link
15 listed on INTERNET RESOURCES bellow).
16
17 lnst-ctl is a script used for managing slaves. It reads a recipe XML
18 file as an input and executes tests on the specified slave machines.
19
21 -A, --override-alias name=value
22 Define top-level alias that will override any other definitions
23 in the recipe
24
25 -a, --define-alias name=value
26 Define top-level alias
27
28 -c, --config=file
29 Load a custom configuration file in addition to /etc/lnst-
30 ctl.conf and ~/lnst/lnst-ctl.conf that are loaded by default.
31
32 -d, --debug
33 Toggle emitting debugging messages.
34
35 --dump-config
36 Dumps the join of all loaded configuration files on stdout and
37 exits
38
39 -h, --help
40 Display usage of this command.
41
42 -m, --no-colours
43 Disable coloured terminal output.
44
45 -o, --disable-pool-checks
46 Skip the pool machine availability checks.
47
48 -p, --packet-capture
49 Capture and log all ongoing network communication between the
50 slaves during the test.
51
52 --pools=name[,...]
53 Restricts which pools to use for matching, value is a comma sep‐
54 arated list of values
55
56 --pools=path
57 Restrict which pool to use for matching, value is single path to
58 a pool directory
59
60 -r, --reduce-sync
61 Disable synchronization of module and tool resources to slave
62 machines, when python tasks are used in the recipe. Instead the
63 user can manually synchronize resources from the python task
64 itself. This option has no effect if the recipe only contains
65 xml tasks.
66
67 -s, --xslt-url=URL
68 URL to a XSLT document that will be used when transforming the
69 xml result file, only useful when -t is used as well
70
71 -t, --html=file
72 Generate a formatted result html
73
74 -u, --multi-match
75 Run each recipe with every pool match possible
76
77 -x, --result=file
78 Write results in XML format to the specified file.
79
80 -v, --verbose
81 Extends output of list_pools action
82
83 RECIPE can be either a LNST recipe file or a directory containing
84 recipe files. One or more files/directories can be passed at the same
85 time. Each recipe is a XML file. The format is described in detail in
86 the online documentation available at LNST wiki (link is listed on
87 INTERNET RESOURCES bellow).
88
89 ACTION can be one of run, config_only, deconfigure, match_setup, and
90 list_pools.
91
92 When it is set to run, all provided recipe files will be sequentially
93 executed. The network will be configured accordingly to each recipe
94 file and clean up afterwards.
95
96 In case of config_only, the recipes provided are processed up to the
97 point where all the machines are prepared and properly configured. No
98 tests will be executed and the cleanup phase is omitted as well. This
99 mode of operation is useful if you want to perform some specific
100 actions or tests outside of LNST using the configuration specified in a
101 recipe file.
102
103 In case of deconfigure, the configuration from a previous config_only
104 run will be removed, including dynamically created devices on virtual
105 machines. There is no need to specify a recipe for this action.
106
107 In case of list_pools, lnst-ctl looks up all the pools entered in con‐
108 figs and dumps info about them. When used without -v or --verbose
109 option, only pool names and paths are printed. With verbose option,
110 all viable slave machine configs are printed in more human readable
111 format.
112
113 At last, when the ACTION is set to match_setup, lnst-ctl will only try
114 to match the configuration in the recipe with its local pools and print
115 the resulting match, in case it was successful or an appropriate error
116 message, in case it was not.
117
118
120 lnst-ctl will look for configuration in the following locations:
121
122 /etc/lnst-ctl.conf
123 ~/.lnst/lnst-ctl.conf
124
125 For further description of file format or configuration options avail‐
126 able, please refer to the configuration file itself, where each option
127 is documented.
128
129
131 lnst-ctl will terminate with one of the following statuses:
132
133 0 All tests passed, no errors encountered
134 1 At least one test failed
135 2 There was an error during the execution
136
137
139 Project Homepage: http://lnst-project.org/
140 Online Documentation: https://github.com/jpirko/lnst/wiki#learn
141 Git Source Tree: https://github.com/jpirko/lnst
142 Mailing List: <lnst-developers@lists.fedorahosted.org>
143
144
146 Jiri Pirko <jiri@resnulli.us>
147 Jan Tluka <jtluka@redhat.com>
148 Ondrej Lichtner <olichtne@redhat.com>
149 Jiri Prochazka <jprochaz@redhat.com>
150 Jiri Zupka <jzupka@redhat.com>
151 Radek Pazdera <radek@pazdera.co.uk>
152
154 Copyright (C) 2011-2015 Red Hat, Inc.
155
156 LNST is distributed under the GNU General Public License version 2. See
157 the file "COPYING" in the source distribution for information on terms
158 & conditions for accessing and otherwise using LNST.
159
160
161
162 2018-07-20 LNST-CTL(1)