Services Ports

The UnrealIRCd team does not officially provide support for any services packages that you may be using or want to use. This forum is provided so the community can help each other with services issues.

Moderator: Supporters

Locked
kevthedude
Posts: 5
Joined: Sun Mar 19, 2006 4:24 pm

Services Ports

Post 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 :)
Grunt
Posts: 159
Joined: Mon Jan 09, 2006 7:31 pm
Contact:

Post 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.
Computers are machines that cause trouble you wouldn't normally have if you wouldn't have a computer.
kotori

Post 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]=-
Locked