1 <?xml version="1.0" encoding="iso-8859-1"?>
2 <!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
3 <refentry id="smbtorture.1">
6 <refentrytitle>smbtorture</refentrytitle>
7 <manvolnum>1</manvolnum>
8 <refmiscinfo class="source">Samba</refmiscinfo>
9 <refmiscinfo class="manual">Test Suite</refmiscinfo>
10 <refmiscinfo class="version">4.0</refmiscinfo>
15 <refname>smbtorture</refname>
16 <refpurpose>Run a series of tests against a SMB server</refpurpose>
21 <command>smbtorture</command>
25 <command>smbtorture</command>
26 <arg choice="req">//server/share</arg>
27 <arg choice="opt">-d debuglevel</arg>
28 <arg choice="opt">-U user%pass</arg>
29 <arg choice="opt">-k</arg>
30 <arg choice="opt">-N numprocs</arg>
31 <arg choice="opt">-n netbios_name</arg>
32 <arg choice="opt">-W workgroup</arg>
33 <arg choice="opt">-o num_operations</arg>
34 <arg choice="opt">-e num files(entries)</arg>
35 <arg choice="opt">-O socket_options</arg>
36 <arg choice="opt">-m maximum_protocol</arg>
37 <arg choice="opt">-L</arg>
38 <arg choice="opt">-c CLIENT.TXT</arg>
39 <arg choice="opt">-t timelimit</arg>
40 <arg choice="opt">-C filename</arg>
41 <arg choice="opt">-A</arg>
42 <arg choice="opt">-p port</arg>
43 <arg choice="opt">-s seed</arg>
44 <arg choice="opt">-f max_failures</arg>
45 <arg choice="opt">-X</arg>
46 <arg choice="req">BINDING-STRING|UNC</arg>
47 <arg choice="req">TEST1</arg>
48 <arg choice="opt">TEST2</arg>
49 <arg choice="opt">...</arg>
55 <title>DESCRIPTION</title>
57 <para>smbtorture is a testsuite that runs several tests
58 against a SMB server. All tests are known to succeed
59 against a Windows 2003 server (?). Smbtorture's primary
60 goal is finding differences in implementations of the SMB protocol
61 and testing SMB servers.
64 <para>Any number of tests can be specified
65 on the command-line. If no tests are specified, all tests
68 <para>If no arguments are specified at all, all available options
69 and tests are listed.</para>
72 <title>Binding string format</title>
74 <para>The binding string format is:</para>
76 <para>TRANSPORT:host[flags]</para>
78 <para>Where TRANSPORT is either ncacn_np for SMB, ncacn_ip_tcp for RPC/TCP or ncalrpc for local connections.
82 'host' is an IP or hostname or netbios name. If the binding string
83 identifies the server side of an endpoint, 'host' may be an empty
88 'flags' can include a SMB pipe name if using the ncacn_np transport or
89 a TCP port number if using the ncacn_ip_tcp transport, otherwise they
90 will be auto-determined.
94 other recognised flags are:
98 <varlistentry><term>sign</term>
99 <listitem><para>enable ntlmssp signing</para></listitem>
102 <varlistentry><term>seal</term>
103 <listitem><para>enable ntlmssp sealing</para></listitem>
106 <varlistentry><term>connect</term>
107 <listitem><para>enable rpc connect level auth (auth, but no sign or seal)</para></listitem>
110 <varlistentry><term>validate</term>
111 <listitem><para>enable the NDR validator</para></listitem>
114 <varlistentry><term>print</term>
115 <listitem><para>enable debugging of the packets</para></listitem>
118 <varlistentry><term>bigendian</term>
119 <listitem><para>use bigendian RPC</para></listitem>
122 <varlistentry><term>padcheck</term>
123 <listitem><para>check reply data for non-zero pad bytes</para></listitem>
127 <para>For example, these all connect to the samr pipe:</para>
130 <listitem><para>ncacn_np:myserver</para></listitem>
131 <listitem><para>ncacn_np:myserver[samr]</para></listitem>
132 <listitem><para>ncacn_np:myserver[\\pipe\\samr]</para></listitem>
133 <listitem><para>ncacn_np:myserver[/pipe/samr]</para></listitem>
134 <listitem><para>ncacn_np:myserver[samr,sign,print]</para></listitem>
135 <listitem><para>ncacn_np:myserver[\\pipe\\samr,sign,seal,bigendian]</para></listitem>
136 <listitem><para>ncacn_np:myserver[/pipe/samr,seal,validate]</para></listitem>
137 <listitem><para>ncacn_np:</para></listitem>
138 <listitem><para>ncacn_np:[/pipe/samr]</para></listitem>
139 <listitem><para>ncacn_ip_tcp:myserver</para></listitem>
140 <listitem><para>ncacn_ip_tcp:myserver[1024]</para></listitem>
141 <listitem><para>ncacn_ip_tcp:myserver[1024,sign,seal]</para></listitem>
142 <listitem><para>ncalrpc:</para></listitem>
148 <title>UNC Format</title>
150 <para>The UNC format is:</para>
152 <para>//server/share</para>
159 <title>OPTIONS</title>
162 <varlistentry><term>-d debuglevel</term>
163 <listitem><para>Use the specified Samba debug level. A higher debug level
164 means more output.</para></listitem>
166 <varlistentry><term>-U user%pass</term>
167 <listitem><para>Use the specified username/password combination when logging in to a remote server.</para></listitem>
169 <varlistentry><term>-k</term>
170 <listitem><para>Use kerberos when authenticating.</para></listitem>
172 <varlistentry><term>-W workgroup</term>
173 <listitem><para>Use specified name as our workgroup name.</para></listitem>
175 <varlistentry><term>-n netbios_name</term>
176 <listitem><para>Use specified name as our NetBIOS name.</para></listitem>
179 <varlistentry><term>-O socket_options</term>
180 <listitem><para>Use specified socket options, equivalent of the smb.conf option <quote>socket options</quote>. See the smb.conf(5) manpage for details.</para></listitem>
183 <varlistentry><term>-m max_protocol</term>
184 <listitem><para>Specify the maximum SMB dialect that should be used. Possible values are: CORE, COREPLUS, LANMAN1, LANMAN2, NT1</para></listitem>
187 <varlistentry><term>-s seed</term>
188 <listitem><para>Initialize the randomizer using <replaceable>seed</replaceable> as seed.</para></listitem>
191 <varlistentry><term>-L</term>
192 <listitem><para>Use oplocks.</para></listitem>
195 <varlistentry><term>-X</term>
196 <listitem><para>Enable dangerous tests. Use with care! This might crash your server...</para></listitem>
199 <varlistentry><term>-t timelimit</term>
200 <listitem><para>Specify the NBENCH time limit in seconds. Defaults to 600.</para></listitem>
203 <varlistentry><term>-p ports</term>
204 <listitem><para>Specify ports to connect to.</para></listitem>
207 <varlistentry><term>-c file</term>
208 <listitem><para>Read NBENCH commands from <replaceable>file</replaceable> instead of from CLIENT.TXT.</para></listitem>
211 <varlistentry><term>-A</term>
212 <listitem><para>Show not just OK or FAILED but more detailed
213 output. Used only by DENY test at the moment.</para></listitem>
216 <varlistentry><term>-C filename</term>
217 <listitem><para>Load a list of UNC names from the specified filename. Smbtorture instances will connect to a random host from this list.</para></listitem>
220 <varlistentry><term>-N numprocs</term>
221 <listitem><para>Specify number of smbtorture processes to launch.</para></listitem>
224 <varlistentry><term>-o num_operations</term>
225 <listitem><para>Number of times some operations should be tried before assuming they're output is consistent (default:100).</para></listitem>
228 <varlistentry><term>-e num_files</term>
229 <listitem><para>Number of entries to use in certain tests (such as creating X files) (default: 1000).</para></listitem>
232 <varlistentry><term>-f max_failures</term>
233 <listitem><para>Number of failures before aborting a test (default: 1).</para></listitem>
239 <title>VERSION</title>
241 <para>This man page is correct for version 4.0 of the Samba suite.</para>
245 <title>SEE ALSO</title>
252 <title>AUTHOR</title>
254 <para>This utility is part of the <ulink url="http://www.samba.org/">Samba</ulink> suite, which is developed by the global <ulink url="http://www.samba.org/samba/team/">Samba Team</ulink>.</para>
256 <para>smbtorture was written by Andrew Tridgell.</para>
258 <para>This manpage was written by Jelmer Vernooij.</para>