1. NAME

stunnel - universal SSL tunnel

2. SYNOPSIS

stunnel [-c | -T] [-D [facility.]level] [-C cipherlist] [-p pemfile] [-v level] [-A certfile] [-S sources] [-a directory] [-t timeout] [-u ident_username] [-s setuid_user] [-g setgid_group] [-n protocol] [-P { dir/ | filename | none } ] [-B bytes] [-R randfile] [-W] [-E socket] [-d [host:]port [-f] ] [ -r [host:]port | { -l | -L } program [-- progname args] ]

3. DESCRIPTION

The stunnel program is designed to work as SSL encryption wrapper between remote clients and local (inetd-startable) or remote servers. The concept is that having non-SSL aware daemons running on your system you can easily set them up to communicate with clients over secure SSL channels.

stunnel can be used to add SSL functionality to commonly used inetd daemons like POP-2, POP-3, and IMAP servers, to standalone daemons like NNTP, SMTP and HTTP, and in tunneling PPP over network sockets without changes to the source code.

This product includes cryptographic software written by Eric Young (eay@cryptsoft.com)

4. OPTIONS

-h

-V

-D level

-C cipherlist

-c

-T

-p pemfile

-v level

-a directory

-A certfile

-S sources

        0 = ignore all default sources
        1 = use ssl library defaults
        2 = use stunnel defaults
        3 = use both ssl library and stunnel defaults

-t timeout

-N servicename

-u ident_username

-n proto

-E socket

-R filename

-W

-B bytes

-d [host:]port

-f

-l program [-- programname [arg1 arg2 arg3...] ]

-L program [-- programname [arg1 arg2 arg3...] ]

-s username

-g groupname

-P { dir/ | file | none }

-r [host:]port

5. EXAMPLES

In order to provide SSL encapsulation to your local imapd service, use

  stunnel -d 993 -l /usr/sbin/imapd -- imapd

If you want to provide tunneling to your pppd daemon on port 2020, use something like

  stunnel -d 2020 -L /usr/sbin/pppd -- pppd local

6. CERTIFICATES

Each SSL enabled daemon needs to present a valid X.509 certificate to the peer. It also needs a private key to decrypt the incoming data. The easiest way to obtain a certificate and a key is to generate them with the free openssl package. You can find more information on certificates generation on pages listed below.

Two things are important when generating certificate-key pairs for stunnel. The private key cannot be encrypted, because the server has no way to obtain the password from the user. To produce an unencrypted key add the -nodes option when running the req command from the openssl kit.

The order of contents of the .pem file is also important. It should contain the unencrypted private key first, then a signed certificate (not certificate request). There should be also empty lines after certificate and private key. Plaintext certificate information appended on the top of generated certificate should be discarded. So the file should look like this:

  -----BEGIN RSA PRIVATE KEY-----
  [encoded key]
  -----END RSA PRIVATE KEY-----
  [empty line]
  -----BEGIN CERTIFICATE-----
  [encoded certificate]
  -----END CERTIFICATE-----
  [empty line]

7. RANDOMNESS

stunnel needs to seed the PRNG (pseudo random number generator) in order for SSL to use good randomness. The following sources are loaded in order until sufficient random data has been gathered:

With recent (>=OpenSSL 0.9.5a) version of SSL it will stop loading random data automatically when sufficient entropy has been gathered. With previous versions it will continue to gather from all the above sources since no SSL function exists to tell when enough data is available.

Note that on Windows machines that do not have console user interaction (mouse movements, creating windows, etc) the screen contents are not variable enough to be sufficient, and you should provide a random file for use with the -R flag.

Note that the file specified with the -R flag should contain random data -- that means it should contain different information each time stunnel is run. This is handled automatically unless the -W flag is used. If you wish to update this file manually, the openssl rand command in recent versions of OpenSSL, would be useful.

One important note -- if /dev/urandom is available, OpenSSL has a habit of seeding the PRNG with it even when checking the random state, so on systems with /dev/urandom you're likely to use it even though it's listed at the very bottom of the list above. This isn't stunnel's behaviour, it's OpenSSLs.

8. LIMITATIONS

stunnel cannot be used for the FTP daemon because of the nature of the FTP protocol which utilizes multiple ports for data transfers. There are available SSL enabled versions of FTP and telnet daemons, however.

9. SEE ALSO

the tcpd(8) manpage

the inetd(8) manpage

http://stunnel.mirt.net/

http://www.stunnel.org/

http://www.openssl.org/

10. AUTHORS

Michal Trojnara

Adam Hernik

Pawel Krawczyk

PTY support by Dirk O. Siebnich