パッケージから入れたら、SSLが使えない。。。
多分、Ubuntuでもダメだと思う。。。
クライアントから接続すると、
Connecting…
Connected
The operation couldn’t be completed. (kCFStreamErrorDomainSSL error -9844.)
Disconnected
Reconnecting…
以下ループ。。。
SSLは使えるように見えるけど。。
# ngircd -V ngircd 15-SYSLOG+ZLIB+SSL+IRCPLUS+IPv6-x86_64/pc/linux-gnu Copyright (c)2001-2009 Alexander Barton (<alex@barton.de>) and Contributors. Homepage: <http://ngircd.barton.de/> This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
OS・・・Debian Squeeze
ngircd・・・ngircd 15-0.1
SSLを使わなきゃいいんですが、
やってみたくなるのが人情。。。
*******追記(解決)*******
どうやら、Debianでは鍵等を作るときに
OpenSSLを使わず、GunTLSを使えばいいみたいです。
# aptitude install gnutls-bin # certtool --generate-privkey --bits 2048 --outfile server-key.pem # certtool --generate-self-signed --load-privkey server-key.pem --outfile server-cert.pem # certtool --generate-dh-params --bits 4096 --outfile dhparams.pem
(Ubuntuでも同様にすればいけるはずw)