Jump to content

Stunnel

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by Mtrojnar (talk | contribs) at 13:18, 2 February 2011 (Updated new homepage and maintainer list). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Stunnel
Developer(s)Michał Trojnara
Stable release
4.34[1] / September 19, 2010
Operating systemMulti-platform
TypeProxy, Encryption
LicenseGNU General Public License
Websitewww.stunnel.org

Stunnel is a free multi-platform computer program, used to provide universal TLS/SSL tunnelling service.

Stunnel can be used to provide secure encrypted connections for clients or servers that do not speak TLS or SSL natively. It runs on a variety of operating systems, including most Unix-like operating systems and Windows. It relies on a separate library such as OpenSSL or SSLeay to implement the underlying TLS or SSL protocol.

Stunnel uses Public-key cryptography with X.509 digital certificates to secure the SSL connection. Clients can optionally be authenticated via a certificate too.

If linked against libwrap, it can be configured to act as a proxy-firewall service as well.

Stunnel is maintained by Michał Trojnara. Released under the terms of the GNU General Public License.

Example scenario

The application can present an external secure SSL port that is mapped to an internal unsecured TCP or UDP port of an existing application.

For example, to provide a secure SSL connection to an existing SMTP mail server, Stunnel might map the SSL port 465 to port 25 of the mail server. Network traffic from clients connecting to the mail server on port 465 would initially pass over SSL to the Stunnel application, which would then transparently forward unsecured traffic to port 25 of the mail server. The Stunnel process could be running on the same or a different server from the unsecured mail application; however, both machines would typically be behind a firewall on a secure internal network.

References