3fd9a81562c27c28ba658f39e2d6b15ac11b9464
[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<-naccept count>]
13 [B<-context id>]
14 [B<-verify depth>]
15 [B<-Verify depth>]
16 [B<-crl_check>]
17 [B<-crl_check_all>]
18 [B<-cert filename>]
19 [B<-certform DER|PEM>]
20 [B<-key keyfile>]
21 [B<-keyform DER|PEM>]
22 [B<-pass arg>]
23 [B<-dcert filename>]
24 [B<-dcertform DER|PEM>]
25 [B<-dkey keyfile>]
26 [B<-dkeyform DER|PEM>]
27 [B<-dpass arg>]
28 [B<-dhparam filename>]
29 [B<-nbio>]
30 [B<-nbio_test>]
31 [B<-crlf>]
32 [B<-debug>]
33 [B<-msg>]
34 [B<-state>]
35 [B<-CApath directory>]
36 [B<-CAfile filename>]
37 [B<-attime timestamp>]
38 [B<-check_ss_sig>]
39 [B<-explicit_policy>]
40 [B<-extended_crl>]
41 [B<-ignore_critical>]
42 [B<-inhibit_any>]
43 [B<-inhibit_map>]
44 [B<-issuer_checks>]
45 [B<-partial_chain>]
46 [B<-policy arg>]
47 [B<-policy_check>]
48 [B<-policy_print>]
49 [B<-purpose purpose>]
50 [B<-suiteB_128>]
51 [B<-suiteB_128_only>]
52 [B<-suiteB_192>]
53 [B<-trusted_first>]
54 [B<-no_alt_chains>]
55 [B<-use_deltas>]
56 [B<-verify_depth num>]
57 [B<-verify_return_error>]
58 [B<-verify_email email>]
59 [B<-verify_hostname hostname>]
60 [B<-verify_ip ip>]
61 [B<-verify_name name>]
62 [B<-x509_strict>]
63 [B<-nocert>]
64 [B<-cipher cipherlist>]
65 [B<-serverpref>]
66 [B<-quiet>]
67 [B<-no_tmp_rsa>]
68 [B<-ssl3>]
69 [B<-tls1>]
70 [B<-dtls>]
71 [B<-dtls1>]
72 [B<-dtls1_2>]
73 [B<-listen>]
74 [B<-no_ssl3>]
75 [B<-no_tls1>]
76 [B<-no_dhe>]
77 [B<-no_ecdhe>]
78 [B<-bugs>]
79 [B<-brief>]
80 [B<-www>]
81 [B<-WWW>]
82 [B<-HTTP>]
83 [B<-engine id>]
84 [B<-tlsextdebug>]
85 [B<-no_ticket>]
86 [B<-id_prefix arg>]
87 [B<-rand file(s)>]
88 [B<-serverinfo file>]
89 [B<-no_resumption_on_reneg>]
90 [B<-status>]
91 [B<-status_verbose>]
92 [B<-status_timeout nsec>]
93 [B<-status_url url>]
94 [B<-nextprotoneg protocols>]
95
96 =head1 DESCRIPTION
97
98 The B<s_server> command implements a generic SSL/TLS server which listens
99 for connections on a given port using SSL/TLS.
100
101 =head1 OPTIONS
102
103 In addition to the options below the B<s_server> utility also supports the
104 common and server only options documented in the
105 L<SSL_CONF_cmd(3)|SSL_CONF_cmd(3)/SUPPORTED COMMAND LINE COMMANDS> manual
106 page.
107
108 =over 4
109
110 =item B<-accept port>
111
112 the TCP port to listen on for connections. If not specified 4433 is used.
113
114 =item B<-naccept count>
115
116 The server will exit after receiving B<number> connections, default unlimited. 
117
118 =item B<-context id>
119
120 sets the SSL context id. It can be given any string value. If this option
121 is not present a default value will be used.
122
123 =item B<-cert certname>
124
125 The certificate to use, most servers cipher suites require the use of a
126 certificate and some require a certificate with a certain public key type:
127 for example the DSS cipher suites require a certificate containing a DSS
128 (DSA) key. If not specified then the filename "server.pem" will be used.
129
130 =item B<-certform format>
131
132 The certificate format to use: DER or PEM. PEM is the default.
133
134 =item B<-key keyfile>
135
136 The private key to use. If not specified then the certificate file will
137 be used.
138
139 =item B<-keyform format>
140
141 The private format to use: DER or PEM. PEM is the default.
142
143 =item B<-pass arg>
144
145 the private key password source. For more information about the format of B<arg>
146 see the B<PASS PHRASE ARGUMENTS> section in L<openssl(1)>.
147
148 =item B<-dcert filename>, B<-dkey keyname>
149
150 specify an additional certificate and private key, these behave in the
151 same manner as the B<-cert> and B<-key> options except there is no default
152 if they are not specified (no additional certificate and key is used). As
153 noted above some cipher suites require a certificate containing a key of
154 a certain type. Some cipher suites need a certificate carrying an RSA key
155 and some a DSS (DSA) key. By using RSA and DSS certificates and keys
156 a server can support clients which only support RSA or DSS cipher suites
157 by using an appropriate certificate.
158
159 =item B<-dcertform format>, B<-dkeyform format>, B<-dpass arg>
160
161 additional certificate and private key format and passphrase respectively.
162
163 =item B<-nocert>
164
165 if this option is set then no certificate is used. This restricts the
166 cipher suites available to the anonymous ones (currently just anonymous
167 DH).
168
169 =item B<-dhparam filename>
170
171 the DH parameter file to use. The ephemeral DH cipher suites generate keys
172 using a set of DH parameters. If not specified then an attempt is made to
173 load the parameters from the server certificate file. If this fails then
174 a static set of parameters hard coded into the s_server program will be used.
175
176 =item B<-no_dhe>
177
178 if this option is set then no DH parameters will be loaded effectively
179 disabling the ephemeral DH cipher suites.
180
181 =item B<-no_ecdhe>
182
183 if this option is set then no ECDH parameters will be loaded effectively
184 disabling the ephemeral ECDH cipher suites.
185
186 =item B<-no_tmp_rsa>
187
188 certain export cipher suites sometimes use a temporary RSA key, this option
189 disables temporary RSA key generation.
190
191 =item B<-crl_check>, B<-crl_check_all>
192
193 Check the peer certificate has not been revoked by its CA.
194 The CRL(s) are appended to the certificate file. With the B<-crl_check_all>
195 option all CRLs of all CAs in the chain are checked.
196
197 =item B<-CApath directory>
198
199 The directory to use for client certificate verification. This directory
200 must be in "hash format", see B<verify> for more information. These are
201 also used when building the server certificate chain.
202
203 =item B<-CAfile file>
204
205 A file containing trusted certificates to use during client authentication
206 and to use when attempting to build the server certificate chain. The list
207 is also used in the list of acceptable client CAs passed to the client when
208 a certificate is requested.
209
210 =item B<-verify depth>, B<-Verify depth>
211
212 The verify depth to use. This specifies the maximum length of the
213 client certificate chain and makes the server request a certificate from
214 the client. With the B<-verify> option a certificate is requested but the
215 client does not have to send one, with the B<-Verify> option the client
216 must supply a certificate or an error occurs.
217
218 If the ciphersuite cannot request a client certificate (for example an
219 anonymous ciphersuite or PSK) this option has no effect.
220
221 =item B<-attime>, B<-check_ss_sig>, B<explicit_policy>, B<-extended_crl>,
222 B<-ignore_critical>, B<-inhibit_any>, B<-inhibit_map>, B<-issuer_checks>,
223 B<-partial_chain>, B<-policy>, B<-policy_check>, B<-policy_print>, B<-purpose>,
224 B<-suiteB_128>, B<-suiteB_128_only>, B<-suiteB_192>, B<-trusted_first>,
225 B<-no_alt_chains>, B<-use_deltas>, B<-verify_depth>, B<-verify_email>,
226 B<-verify_hostname>, B<-verify_ip>, B<-verify_name>, B<-x509_strict>
227
228 Set different peer certificate verification options.
229 See the L<verify(1)> manual page for details.
230
231 =item B<-verify_return_error>
232
233 Verification errors normally just print a message but allow the
234 connection to continue, for debugging purposes.
235 If this option is used, then verification errors close the connection.
236
237 =item B<-state>
238
239 prints out the SSL session states.
240
241 =item B<-debug>
242
243 print extensive debugging information including a hex dump of all traffic.
244
245 =item B<-msg>
246
247 show all protocol messages with hex dump.
248
249 =item B<-trace>
250
251 show verbose trace output of protocol messages. OpenSSL needs to be compiled
252 with B<enable-ssl-trace> for this option to work.
253
254 =item B<-msgfile>
255
256 file to send output of B<-msg> or B<-trace> to, default standard output.
257
258 =item B<-nbio_test>
259
260 tests non blocking I/O
261
262 =item B<-nbio>
263
264 turns on non blocking I/O
265
266 =item B<-crlf>
267
268 this option translated a line feed from the terminal into CR+LF.
269
270 =item B<-quiet>
271
272 inhibit printing of session and certificate information.
273
274 =item B<-psk_hint hint>
275
276 Use the PSK identity hint B<hint> when using a PSK cipher suite.
277
278 =item B<-psk key>
279
280 Use the PSK key B<key> when using a PSK cipher suite. The key is
281 given as a hexadecimal number without leading 0x, for example -psk
282 1a2b3c4d.
283
284 =item B<-ssl3>, B<-tls1>, B<-no_ssl3>, B<-no_tls1>
285
286 these options disable the use of certain SSL or TLS protocols. By default
287 the initial handshake uses a method which should be compatible with all
288 servers and permit them to use SSL v3 or TLS as appropriate.
289
290 =item B<-dtls>, B<-dtls1>, B<-dtls1_2>
291
292 these options make s_server use DTLS protocols instead of TLS. With B<-dtls>
293 s_server will negotiate any supported DTLS protcol version, whilst B<-dtls1> and
294 B<-dtls1_2> will only support DTLS1.0 and DTLS1.2 respectively.
295
296 =item B<-listen>
297
298 this option can only be used in conjunction with one of the DTLS options above.
299 With this option s_server will listen on a UDP port for incoming connections.
300 Any ClientHellos that arrive will be checked to see if they have a cookie in
301 them or not. Any without a cookie will be responded to with a
302 HelloVerifyRequest. If a ClientHello with a cookie is received then s_server
303 will connect to that peer and complete the handshake.
304
305 =item B<-bugs>
306
307 there are several known bug in SSL and TLS implementations. Adding this
308 option enables various workarounds.
309
310 =item B<-brief>
311
312 only provide a brief summary of connection parameters instead of the
313 normal verbose output.
314
315 =item B<-cipher cipherlist>
316
317 this allows the cipher list used by the server to be modified.  When
318 the client sends a list of supported ciphers the first client cipher
319 also included in the server list is used. Because the client specifies
320 the preference order, the order of the server cipherlist irrelevant. See
321 the B<ciphers> command for more information.
322
323 =item B<-serverpref>
324
325 use the server's cipher preferences, rather than the client's preferences.
326
327 =item B<-tlsextdebug>
328
329 print out a hex dump of any TLS extensions received from the server.
330
331 =item B<-no_ticket>
332
333 disable RFC4507bis session ticket support. 
334
335 =item B<-www>
336
337 sends a status message back to the client when it connects. This includes
338 lots of information about the ciphers used and various session parameters.
339 The output is in HTML format so this option will normally be used with a
340 web browser.
341
342 =item B<-WWW>
343
344 emulates a simple web server. Pages will be resolved relative to the
345 current directory, for example if the URL https://myhost/page.html is
346 requested the file ./page.html will be loaded.
347
348 =item B<-HTTP>
349
350 emulates a simple web server. Pages will be resolved relative to the
351 current directory, for example if the URL https://myhost/page.html is
352 requested the file ./page.html will be loaded. The files loaded are
353 assumed to contain a complete and correct HTTP response (lines that
354 are part of the HTTP response line and headers must end with CRLF).
355
356 =item B<-rev>
357
358 simple test server which just reverses the text received from the client
359 and sends it back to the server. Also sets B<-brief>.
360
361 =item B<-engine id>
362
363 specifying an engine (by its unique B<id> string) will cause B<s_server>
364 to attempt to obtain a functional reference to the specified engine,
365 thus initialising it if needed. The engine will then be set as the default
366 for all available algorithms.
367
368 =item B<-id_prefix arg>
369
370 generate SSL/TLS session IDs prefixed by B<arg>. This is mostly useful
371 for testing any SSL/TLS code (eg. proxies) that wish to deal with multiple
372 servers, when each of which might be generating a unique range of session
373 IDs (eg. with a certain prefix).
374
375 =item B<-rand file(s)>
376
377 a file or files containing random data used to seed the random number
378 generator, or an EGD socket (see L<RAND_egd(3)>).
379 Multiple files can be specified separated by a OS-dependent character.
380 The separator is B<;> for MS-Windows, B<,> for OpenVMS, and B<:> for
381 all others.
382
383 =item B<-serverinfo file>
384
385 a file containing one or more blocks of PEM data.  Each PEM block
386 must encode a TLS ServerHello extension (2 bytes type, 2 bytes length,
387 followed by "length" bytes of extension data).  If the client sends
388 an empty TLS ClientHello extension matching the type, the corresponding
389 ServerHello extension will be returned.
390
391 =item B<-no_resumption_on_reneg>
392
393 set SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION flag.
394
395 =item B<-status>
396
397 enables certificate status request support (aka OCSP stapling).
398
399 =item B<-status_verbose>
400
401 enables certificate status request support (aka OCSP stapling) and gives
402 a verbose printout of the OCSP response.
403
404 =item B<-status_timeout nsec>
405
406 sets the timeout for OCSP response to B<nsec> seconds.
407
408 =item B<-status_url url>
409
410 sets a fallback responder URL to use if no responder URL is present in the
411 server certificate. Without this option an error is returned if the server
412 certificate does not contain a responder address.
413
414 =item B<-nextprotoneg protocols>
415
416 enable Next Protocol Negotiation TLS extension and provide a
417 comma-separated list of supported protocol names.
418 The list should contain most wanted protocols first.
419 Protocol names are printable ASCII strings, for example "http/1.1" or
420 "spdy/3".
421
422 =back
423
424 =head1 CONNECTED COMMANDS
425
426 If a connection request is established with an SSL client and neither the
427 B<-www> nor the B<-WWW> option has been used then normally any data received
428 from the client is displayed and any key presses will be sent to the client. 
429
430 Certain single letter commands are also recognized which perform special
431 operations: these are listed below.
432
433 =over 4
434
435 =item B<q>
436
437 end the current SSL connection but still accept new connections.
438
439 =item B<Q>
440
441 end the current SSL connection and exit.
442
443 =item B<r>
444
445 renegotiate the SSL session.
446
447 =item B<R>
448
449 renegotiate the SSL session and request a client certificate.
450
451 =item B<P>
452
453 send some plain text down the underlying TCP connection: this should
454 cause the client to disconnect due to a protocol violation.
455
456 =item B<S>
457
458 print out some session cache status information.
459
460 =back
461
462 =head1 NOTES
463
464 B<s_server> can be used to debug SSL clients. To accept connections from
465 a web browser the command:
466
467  openssl s_server -accept 443 -www
468
469 can be used for example.
470
471 Most web browsers (in particular Netscape and MSIE) only support RSA cipher
472 suites, so they cannot connect to servers which don't use a certificate
473 carrying an RSA key or a version of OpenSSL with RSA disabled.
474
475 Although specifying an empty list of CAs when requesting a client certificate
476 is strictly speaking a protocol violation, some SSL clients interpret this to
477 mean any CA is acceptable. This is useful for debugging purposes.
478
479 The session parameters can printed out using the B<sess_id> program.
480
481 =head1 BUGS
482
483 Because this program has a lot of options and also because some of
484 the techniques used are rather old, the C source of s_server is rather
485 hard to read and not a model of how things should be done. A typical
486 SSL server program would be much simpler.
487
488 The output of common ciphers is wrong: it just gives the list of ciphers that
489 OpenSSL recognizes and the client supports.
490
491 There should be a way for the B<s_server> program to print out details of any
492 unknown cipher suites a client says it supports.
493
494 =head1 SEE ALSO
495
496 L<sess_id(1)>, L<s_client(1)>, L<ciphers(1)>
497
498 =head1 HISTORY
499
500 The -no_alt_chains options was first added to OpenSSL 1.1.0.
501
502 =cut