install ircd by yum
한참의 삽질 끝에 설치했다 --;
# yum search ircd
ircd-hybrid.i386 : Internet Relay Chat Server
# yum install irc-hybrid.i386
# cp /usr/share/doc/ircd-hybrid-7.2.3/simple.conf /etc/ircd/ircd.conf
<!-- Default로 주어지는 conf 파일을 버리고 simple.conf 파일로 덮는게 관건이다 -_- !-->
# vi /etc/ircd/ircd.conf
serverinfo {
name = "irc.example.com";
sid = "_CHANGE_ME_";
description = "Test IRC Server";
hub = no;
};
를 아래와 같이 변경
serverinfo {
name = "irc.example.com";
sid = "001";
description = "Test IRC Server";
hub = no;
};
auth {
user = "*@*";
class = "users";
};
를 아래와 같이 변경
auth {
user = "*@*";
class = "users";
password = "thisispassword";
};
Reference - http://blog.livedoor.jp/takeshiyako/archives/51533328.html