b58687464546a8480f366d2aa2493a073e86b2a9
[openssl.git] / doc / apps / s_server.pod
1
2 =pod
3
4 =head1 NAME
5
6 s_server - SSL/TLS server program
7
8 =head1 SYNOPSIS
9
10 B<openssl> B<s_server>
11 [B<-accept port>]
12 [B<-context id>]
13 [B<-verify depth>]
14 [B<-Verify depth>]
15 [B<-cert filename>]
16 [B<-certform DER|PEM>]
17 [B<-key keyfile>]
18 [B<-keyform DER|PEM>]
19 [B<-pass arg>]
20 [B<-dcert filename>]
21 [B<-dcertform DER|PEM>]
22 [B<-dkey keyfile>]
23 [B<-dkeyform DER|PEM>]
24 [B<-dpass arg>]
25 [B<-dhparam filename>]
26 [B<-nbio>]
27 [B<-nbio_test>]
28 [B<-crlf>]
29 [B<-debug>]
30 [B<-msg>]
31 [B<-state>]
32 [B<-CApath directory>]
33 [B<-CAfile filename>]
34 [B<-nocert>]
35 [B<-cipher cipherlist>]
36 [B<-quiet>]
37 [B<-no_tmp_rsa>]
38 [B<-ssl2>]
39 [B<-ssl3>]
40 [B<-tls1>]
41 [B<-no_ssl2>]
42 [B<-no_ssl3>]
43 [B<-no_tls1>]
44 [B<-no_dhe>]
45 [B<-bugs>]
46 [B<-hack>]
47 [B<-www>]
48 [B<-WWW>]
49 [B<-HTTP>]
50 [B<-engine id>]
51 [B<-tlsextdebug>]
52 [B<-no_ticket>]
53 [B<-id_prefix arg>]
54 [B<-rand file(s)>]
55
56 =head1 DESCRIPTION
57
58 The B<s_server> command implements a generic SSL/TLS server which listens
59 for connections on a given port using SSL/TLS.
60
61 =head1 OPTIONS
62
63 =over 4
64
65 =item B<-accept port>
66
67 the TCP port to listen on for connections. If not specified 4433 is used.
68
69 =item B<-context id>
70
71 sets the SSL context id. It can be given any string value. If this option
72 is not present a default value will be used.
73
74 =item B<-cert certname>
75
76 The certificate to use, most servers cipher suites require the use of a
77 certificate and some require a certificate with a certain public key type:
78 for example the DSS cipher suites require a certificate containing a DSS
79 (DSA) key. If not specified then the filename "server.pem" will be used.
80
81 =item B<-certform format>
82
83 The certificate format to use: DER or PEM. PEM is the default.
84
85 =item B<-key keyfile>
86
87 The private key to use. If not specified then the certificate file will
88 be used.
89
90 =item B<-keyform format>
91
92 The private format to use: DER or PEM. PEM is the default.
93
94 =item B<-pass arg>
95
96 the private key password source. For more information about the format of B<arg>
97 see the B<PASS PHRASE ARGUMENTS> section in L<openssl(1)|openssl(1)>.
98
99 =item B<-dcert filename>, B<-dkey keyname>
100
101 specify an additional certificate and private key, these behave in the
102 same manner as the B<-cert> and B<-key> options except there is no default
103 if they are not specified (no additional certificate and key is used). As
104 noted above some cipher suites require a certificate containing a key of
105 a certain type. Some cipher suites need a certificate carrying an RSA key
106 and some a DSS (DSA) key. By using RSA and DSS certificates and keys
107 a server can support clients which only support RSA or DSS cipher suites
108 by using an appropriate certificate.
109
110 =item B<-dcertform format>, B<-dkeyform format>, B<-dpass arg>
111
112 addtional certificate and private key format and passphrase respectively.
113
114 =item B<-nocert>
115
116 if this option is set then no certificate is used. This restricts the
117 cipher suites available to the anonymous ones (currently just anonymous
118 DH).
119
120 =item B<-dhparam filename>
121
122 the DH parameter file to use. The ephemeral DH cipher suites generate keys
123 using a set of DH parameters. If not specified then an attempt is made to
124 load the parameters from the server certificate file. If this fails then
125 a static set of parameters hard coded into the s_server program will be used.
126
127 =item B<-no_dhe>
128
129 if this option is set then no DH parameters will be loaded effectively
130 disabling the ephemeral DH cipher suites.
131
132 =item B<-no_tmp_rsa>
133
134 certain export cipher suites sometimes use a temporary RSA key, this option
135 disables temporary RSA key generation.
136
137 =item B<-verify depth>, B<-Verify depth>
138
139 The verify depth to use. This specifies the maximum length of the
140 client certificate chain and makes the server request a certificate from
141 the client. With the B<-verify> option a certificate is requested but the
142 client does not have to send one, with the B<-Verify> option the client
143 must supply a certificate or an error occurs.
144
145 =item B<-CApath directory>
146
147 The directory to use for client certificate verification. This directory
148 must be in "hash format", see B<verify> for more information. These are
149 also used when building the server certificate chain.
150
151 =item B<-CAfile file>
152
153 A file containing trusted certificates to use during client authentication
154 and to use when attempting to build the server certificate chain. The list
155 is also used in the list of acceptable client CAs passed to the client when
156 a certificate is requested.
157
158 =item B<-state>
159
160 prints out the SSL session states.
161
162 =item B<-debug>
163
164 print extensive debugging information including a hex dump of all traffic.
165
166 =item B<-msg>
167
168 show all protocol messages with hex dump.
169
170 =item B<-nbio_test>
171
172 tests non blocking I/O
173
174 =item B<-nbio>
175
176 turns on non blocking I/O
177
178 =item B<-crlf>
179
180 this option translated a line feed from the terminal into CR+LF.
181
182 =item B<-quiet>
183
184 inhibit printing of session and certificate information.
185
186 =item B<-psk_hint hint>
187
188 Use the PSK identity hint B<hint> when using a PSK cipher suite.
189
190 =item B<-psk key>
191
192 Use the PSK key B<key> when using a PSK cipher suite. The key is
193 given as a hexadecimal number without leading 0x, for example -psk
194 1a2b3c4d.
195
196 =item B<-ssl2>, B<-ssl3>, B<-tls1>, B<-no_ssl2>, B<-no_ssl3>, B<-no_tls1>
197
198 these options disable the use of certain SSL or TLS protocols. By default
199 the initial handshake uses a method which should be compatible with all
200 servers and permit them to use SSL v3, SSL v2 or TLS as appropriate.
201
202 =item B<-bugs>
203
204 there are several known bug in SSL and TLS implementations. Adding this
205 option enables various workarounds.
206
207 =item B<-hack>
208
209 this option enables a further workaround for some some early Netscape
210 SSL code (?).
211
212 =item B<-cipher cipherlist>
213
214 this allows the cipher list used by the server to be modified.  When
215 the client sends a list of supported ciphers the first client cipher
216 also included in the server list is used. Because the client specifies
217 the preference order, the order of the server cipherlist irrelevant. See
218 the B<ciphers> command for more information.
219
220 =item B<-tlsextdebug>
221
222 print out a hex dump of any TLS extensions received from the server.
223
224 =item B<-no_ticket>
225
226 disable RFC4507bis session ticket support. 
227
228 =item B<-www>
229
230 sends a status message back to the client when it connects. This includes
231 lots of information about the ciphers used and various session parameters.
232 The output is in HTML format so this option will normally be used with a
233 web browser.
234
235 =item B<-WWW>
236
237 emulates a simple web server. Pages will be resolved relative to the
238 current directory, for example if the URL https://myhost/page.html is
239 requested the file ./page.html will be loaded.
240
241 =item B<-HTTP>
242
243 emulates a simple web server. Pages will be resolved relative to the
244 current directory, for example if the URL https://myhost/page.html is
245 requested the file ./page.html will be loaded. The files loaded are
246 assumed to contain a complete and correct HTTP response (lines that
247 are part of the HTTP response line and headers must end with CRLF).
248
249 =item B<-engine id>
250
251 specifying an engine (by it's unique B<id> string) will cause B<s_server>
252 to attempt to obtain a functional reference to the specified engine,
253 thus initialising it if needed. The engine will then be set as the default
254 for all available algorithms.
255
256 =item B<-id_prefix arg>
257
258 generate SSL/TLS session IDs prefixed by B<arg>. This is mostly useful
259 for testing any SSL/TLS code (eg. proxies) that wish to deal with multiple
260 servers, when each of which might be generating a unique range of session
261 IDs (eg. with a certain prefix).
262
263 =item B<-rand file(s)>
264
265 a file or files containing random data used to seed the random number
266 generator, or an EGD socket (see L<RAND_egd(3)|RAND_egd(3)>).
267 Multiple files can be specified separated by a OS-dependent character.
268 The separator is B<;> for MS-Windows, B<,> for OpenVMS, and B<:> for
269 all others.
270
271 =back
272
273 =head1 CONNECTED COMMANDS
274
275 If a connection request is established with an SSL client and neither the
276 B<-www> nor the B<-WWW> option has been used then normally any data received
277 from the client is displayed and any key presses will be sent to the client. 
278
279 Certain single letter commands are also recognized which perform special
280 operations: these are listed below.
281
282 =over 4
283
284 =item B<q>
285
286 end the current SSL connection but still accept new connections.
287
288 =item B<Q>
289
290 end the current SSL connection and exit.
291
292 =item B<r>
293
294 renegotiate the SSL session.
295
296 =item B<R>
297
298 renegotiate the SSL session and request a client certificate.
299
300 =item B<P>
301
302 send some plain text down the underlying TCP connection: this should
303 cause the client to disconnect due to a protocol violation.
304
305 =item B<S>
306
307 print out some session cache status information.
308
309 =back
310
311 =head1 NOTES
312
313 B<s_server> can be used to debug SSL clients. To accept connections from
314 a web browser the command:
315
316  openssl s_server -accept 443 -www
317
318 can be used for example.
319
320 Most web browsers (in particular Netscape and MSIE) only support RSA cipher
321 suites, so they cannot connect to servers which don't use a certificate
322 carrying an RSA key or a version of OpenSSL with RSA disabled.
323
324 Although specifying an empty list of CAs when requesting a client certificate
325 is strictly speaking a protocol violation, some SSL clients interpret this to
326 mean any CA is acceptable. This is useful for debugging purposes.
327
328 The session parameters can printed out using the B<sess_id> program.
329
330 =head1 BUGS
331
332 Because this program has a lot of options and also because some of
333 the techniques used are rather old, the C source of s_server is rather
334 hard to read and not a model of how things should be done. A typical
335 SSL server program would be much simpler.
336
337 The output of common ciphers is wrong: it just gives the list of ciphers that
338 OpenSSL recognizes and the client supports.
339
340 There should be a way for the B<s_server> program to print out details of any
341 unknown cipher suites a client says it supports.
342
343 =head1 SEE ALSO
344
345 L<sess_id(1)|sess_id(1)>, L<s_client(1)|s_client(1)>, L<ciphers(1)|ciphers(1)>
346
347 =cut