Page 1 of 1

Services Ports

Posted: Sun Mar 19, 2006 4:28 pm
by kevthedude
I'm using anope and when I make the services.domainname.com I use the IP to my server but what port would I set it as?

I think that is causing this error:

Code: Select all

 ERROR: Link denied (No matching link configuration)
Thanks for any help :)

Posted: Sun Mar 19, 2006 4:34 pm
by Grunt
The port that you set Unreal to listen to. Usually 6667, but it may be any number between 1024 and 65535. As I see it, you don't have a link block in the unrealircd.conf. Check the documentation.

Posted: Mon Mar 27, 2006 2:33 am
by kotori
I came across this exact same problem, and it was an incredibly easy fix.... [edit] i do realize your using anope, but i'm sure its very similar.

in my "unrealircd.conf" i added this:

Code: Select all

// For Services
listen *:12345;

link services.yourdomain.org {
    username *;
    hostname 127.0.0.1;
    port 12345;
    bind-ip *;
    hub *;
    password-connect "password";
    password-receive "password";
    class servers; // don't know if this was necessary
};

ulines {
	services.yourdomain.org;
	stats.yourdomain.org;
};
in my "ircservices.conf" i added this:

Code: Select all

RemoteServer	127.0.0.1 12345 "password" // the same password from unrealircd.conf.

ServerName	"services.yourdomain.org"

besides the other obvious settings that need to be adjusted, that was it to fix that problem...
I hope this helps.

-=[KOTORI]=-