iRC Network help

These are old archives. They are kept for historic purposes only.
Post Reply
Fill
Posts: 8
Joined: Mon Mar 19, 2007 7:34 pm

iRC Network help

Post by Fill »

i'm running an irc server and now wanted to create an irc network, with some servers linked, however i'm having some problems linking two servers. i guess everything is fine and should work, but it does not work.

Bellow i show some of the configuratons on *.conf file

Server one (main server):

listen *:6667
{
options
{
clientsonly;
};
};

listen *:7000;

THIS IS THE "LISTEN" BLOCK. NOW THE LINK TO SERVER TWO:

link Peace.PcAjuda.Org {
username *;
hostname His_IP_is_here;
bind-ip *;
port 7000;
hub *;
password-connect "***";
password-receive "***";
class servers;
};

And now server two, it's like this:

listen *:6667
{
options
{
clientsonly;
};
};

listen *:7000;

AND THE LINK BLOCK TO SERVER ONE:

link irc.pcajuda.org {
username *;
hostname serverone_ip_here;
bind-ip *;
port 7000;
hub *;
password-connect "***";
password-receive "***";
class servers;
};


I tried to start UnrealIRCd of the server No. 2, it didn't show any error, but it does not link with server 1 !! When I try /map, server two does not appear.

But if i try to connect to server two, i am able to connect, how ever the link with server one is not working, what might me wrong??

Please help........!!!
Stealth
Head of Support
Posts: 2085
Joined: Tue Jun 15, 2004 8:50 pm
Location: Chino Hills, CA, US
Contact:

Post by Stealth »

On server 1 as an oper, type:

Code: Select all

/connect server2
or

Code: Select all

/quote connect server2
(be sure to replace server2 with the name of server2)
Post Reply