]> arthur.barton.de Git - ngircd-alex.git/blob - doc/SSL.txt
7578ad80704b5ccbe256a7ead42eead4bcbbd653
[ngircd-alex.git] / doc / SSL.txt
1
2                      ngIRCd - Next Generation IRC Server
3
4                       (c)2001-2004 by Alexander Barton,
5                     alex@barton.de, http://www.barton.de/
6
7                ngIRCd is free software and published under the
8                    terms of the GNU General Public License.
9
10                                  -- SSL.txt --
11
12
13 ngIRCd actually doesn't support secure connections for client-server or
14 server-server links using SSL, the Secure Socket Layer, by itself. But you can
15 use the stunnel(8) command to make this work.
16
17   <http://stunnel.mirt.net/>
18   <http://www.stunnel.org/>
19
20 Stefan Sperling (stefan at binarchy dot net) mailed me the following text as a
21 short "how-to", thanks Stefan!
22
23
24 === snip ===
25     ! This guide applies to stunnel 4.x !
26
27     Put this in your stunnel.conf:
28
29         [ircs]
30         accept = 6667
31         connect = 6668
32
33     This makes stunnel listen for incoming connections
34     on port 6667 and forward decrypted data to port 6668.
35     We call the connection 'ircs'. Stunnel will use this
36     name when logging connection attempts via syslog.
37     You can also use the name in /etc/hosts.{allow,deny}
38     if you run tcp-wrappers.
39
40     To make sure ngircd is listening on the port where
41     the decrypted data arrives, set
42
43         Ports = 6668
44
45     in your ngircd.conf.
46
47     Start stunnel and restart ngircd.
48
49     That's it.
50     Don't forget to activate ssl support in your irc client ;)
51 === snip ===
52
53
54 Probably ngIRCd will include support for SSL in the future ...
55
56
57 -- 
58 $Id: SSL.txt,v 1.2 2004/12/27 01:11:40 alex Exp $