X-Git-Url: https://code.wpia.club/?a=blobdiff_plain;f=lib%2Fopenssl%2Fdoc%2Fapps%2Fs_time.pod;fp=lib%2Fopenssl%2Fdoc%2Fapps%2Fs_time.pod;h=acadd30025dc6ad84aec2e61bdf2a89818f96eba;hb=02ed66432c92de70694700164f986190aad3cbc5;hp=5a38aa2e03944f29ba3f93b8ea29609fefd4c4f8;hpb=89016837dcbf2775cd15dc8cbaba00dc6379f86e;p=cassiopeia.git diff --git a/lib/openssl/doc/apps/s_time.pod b/lib/openssl/doc/apps/s_time.pod index 5a38aa2..acadd30 100644 --- a/lib/openssl/doc/apps/s_time.pod +++ b/lib/openssl/doc/apps/s_time.pod @@ -1,4 +1,3 @@ - =pod =head1 NAME @@ -8,25 +7,27 @@ s_time - SSL/TLS performance timing program =head1 SYNOPSIS B B +[B<-help>] [B<-connect host:port>] [B<-www page>] [B<-cert filename>] [B<-key filename>] [B<-CApath directory>] [B<-CAfile filename>] +[B<-no-CAfile>] +[B<-no-CApath>] [B<-reuse>] [B<-new>] [B<-verify depth>] [B<-nbio>] [B<-time seconds>] -[B<-ssl2>] [B<-ssl3>] [B<-bugs>] [B<-cipher cipherlist>] =head1 DESCRIPTION -The B command implements a generic SSL/TLS client which connects to a +The B command implements a generic SSL/TLS client which connects to a remote host using SSL/TLS. It can request a page from the server and includes the time to transfer the payload data in its timing measurements. It measures the number of connections within a given timeframe, the amount of data @@ -36,6 +37,10 @@ transferred (if any), and calculates the average time spent for one connection. =over 4 +=item B<-help> + +Print out a usage message. + =item B<-connect host:port> This specifies the host and optional port to connect to. @@ -76,6 +81,14 @@ also used when building the client certificate chain. A file containing trusted certificates to use during server authentication and to use when attempting to build the client certificate chain. +=item B<-no-CAfile> + +Do not load the trusted CA certificates from the default file location + +=item B<-no-CApath> + +Do not load the trusted CA certificates from the default directory location + =item B<-new> performs the timing test using a new session ID for each connection. @@ -92,18 +105,17 @@ specified, they are both on by default and executed in sequence. turns on non-blocking I/O. -=item B<-ssl2>, B<-ssl3> +=item B<-ssl3> these options disable the use of certain SSL or TLS protocols. By default the initial handshake uses a method which should be compatible with all -servers and permit them to use SSL v3, SSL v2 or TLS as appropriate. +servers and permit them to use SSL v3 or TLS as appropriate. The timing program is not as rich in options to turn protocols on and off as -the L program and may not connect to all servers. +the L program and may not connect to all servers. Unfortunately there are a lot of ancient and broken servers in use which cannot handle this technique and will fail to connect. Some servers only -work if TLS is turned off with the B<-ssl3> option; others -will only support SSL v2 and may need the B<-ssl2> option. +work if TLS is turned off with the B<-ssl3> option. =item B<-bugs> @@ -115,7 +127,7 @@ option enables various workarounds. this allows the cipher list sent by the client to be modified. Although the server determines which cipher suite is used it should take the first supported cipher in the list sent by the client. -See the L command for more information. +See the L command for more information. =item B<-time length> @@ -127,17 +139,17 @@ and the link speed determine how many connections B can establish. =head1 NOTES -B can be used to measure the performance of an SSL connection. +B can be used to measure the performance of an SSL connection. To connect to an SSL HTTP server and get the default page the command openssl s_time -connect servername:443 -www / -CApath yourdir -CAfile yourfile.pem -cipher commoncipher [-ssl3] would typically be used (https uses port 443). 'commoncipher' is a cipher to -which both client and server can agree, see the L command +which both client and server can agree, see the L command for details. If the handshake fails then there are several possible causes, if it is -nothing obvious like no client certificate then the B<-bugs>, B<-ssl2>, +nothing obvious like no client certificate then the B<-bugs> and B<-ssl3> options can be tried in case it is a buggy server. In particular you should play with these options B submitting a bug report to an OpenSSL mailing list. @@ -146,10 +158,10 @@ A frequent problem when attempting to get client certificates working is that a web client complains it has no certificates or gives an empty list to choose from. This is normally because the server is not sending the clients certificate authority in its "acceptable CA list" when it -requests a certificate. By using L the CA list can be +requests a certificate. By using L the CA list can be viewed and checked. However some servers only request client authentication after a specific URL is requested. To obtain the list in this case it -is necessary to use the B<-prexit> option of L and +is necessary to use the B<-prexit> option of L and send an HTTP request for an appropriate page. If a certificate is specified on the command line using the B<-cert> @@ -160,7 +172,7 @@ on the command line is no guarantee that the certificate works. =head1 BUGS Because this program does not have all the options of the -L program to turn protocols on and off, you may not be +L program to turn protocols on and off, you may not be able to measure the performance of all protocols with all servers. The B<-verify> option should really exit if the server verification @@ -168,6 +180,15 @@ fails. =head1 SEE ALSO -L, L, L +L, L, L + +=head1 COPYRIGHT + +Copyright 2004-2016 The OpenSSL Project Authors. All Rights Reserved. + +Licensed under the OpenSSL license (the "License"). You may not use +this file except in compliance with the License. You can obtain a copy +in the file LICENSE in the source distribution or at +L. =cut