Blob


2 ngIRCd - Next Generation IRC Server
4 (c)2001-2004 by Alexander Barton,
5 alex@barton.de, http://www.barton.de/
7 ngIRCd is free software and published under the
8 terms of the GNU General Public License.
10 -- SSL.txt --
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.
17 <http://stunnel.mirt.net/>
18 <http://www.stunnel.org/>
20 Stefan Sperling (stefan at binarchy dot net) mailed me the following text as a
21 short "how-to", thanks Stefan!
24 === snip ===
25 ! This guide applies to stunnel 4.x !
27 Put this in your stunnel.conf:
29 [ircs]
30 accept = 6667
31 connect = 6668
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.
40 To make sure ngircd is listening on the port where
41 the decrypted data arrives, set
43 Ports = 6668
45 in your ngircd.conf.
47 Start stunnel and restart ngircd.
49 That's it.
50 Don't forget to activate ssl support in your irc client ;)
51 === snip ===
54 Probably ngIRCd will include support for SSL in the future ...
57 --
58 $Id: SSL.txt,v 1.2 2004/12/27 01:11:40 alex Exp $