「IRC」- InspIRCd | 搭建 IRC 服务 | Ubuntu

该笔记将记录:通过 InspIRCd 来搭建 IRC 服务的方法

认识

官网:https://www.inspircd.org/
文档:https://docs.inspircd.org/
仓库:https://github.com/inspircd/inspircd

InspIRCd is A modular C++ IRC server (ircd). 简而言之,InspIRCd 是个 C++ 开发的 IRC 服务。

构建

Deploying an IRC Server on Ubuntu | Sam Hewitt

第一步、安装服务

apt-get install inspircd

第二步、修改配置

修改 /etc/inspircd/inspircd.conf 配置:

<bind address="<0.0.0.0>" port="<6667>" type="clients">

下面为非必要配置:

<server name="irc.example.com" description="Example IRC Server" network="EXAMPLEIRC">

第三步、启动服务

systemctl start inspircd.service