SSL.txt 1.5 KB

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