1. NAME

stunnel - universal SSL tunnel

2. SYNOPSIS

stunnel [-c | -T] [-D [facility.]level] [-O a|l|r:option=value[:value]] [-o file] [-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] [-I host] [-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

-O a|l|r:option=value[:value]

-o file

-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

-I host

-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. ENVIRONMENT

If Stunnel is used to create local processes using the -l or -L options, it will set the following environment variables

REMOTE_HOST

SSL_CLIENT_DN

SSL_CLIENT_I_DN

7. CERTIFICATES

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

8. RANDOMNESS

9. LIMITATIONS

10. SEE ALSO

11. AUTHOR