IRC服务-IRCD-Hybrid
2024-05-19 21:34:58 阿炯

IRCD-Hybrid是一款轻量级、高性能的IRC守护进程,为高速与可靠性而设计,于1997年释出。适用于遵守POSIX标准的多操作系统平台,采用C语言编写并在GPLv2协议下授权使用。


A lightweight, high-performance internet relay chat daemon. Designed to be fast and reliable. Powering irc networks since 1997.

特性
SSL client support and server-to-server RSA encryption;
Compressed server links;
Channel exceptions (+e) and invitation exceptions (+I);
New configuration file format;
Halfops (+h) and anti-spam user mode +g;
Dynamically loadable modules;
Channel and nickname RESV's (reservations).

配置文件:ircd-hybrid/etc/ircd.conf

在编辑ircd-hybrid配置之前,必须为ircd生成SSL证书。简略设置如下:
serverinfo {
    name = "ircd.dirtysea.org";
};
auth {
    user = "*@*";
    password = "dirtysea";
    encrypted = no;
};
 
其中encrypted参数是:password是否为加密后的字符(使用“mkpasswd”命令生成加密的密码);简略配置可保证IRC服务器正常运行,可以试运行启动ircd服务,使用6666端口连接测试。ircd服务不能以root权限运行,必须切换非root用户状态。

最新版本:8.2


官方主页:http://www.ircd-hybrid.org/