Anope Services with Unreal [Authentication Failed]

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
BrownLeopard
Posts: 2
Joined: Tue Sep 08, 2009 4:57 pm

Anope Services with Unreal [Authentication Failed]

Post by BrownLeopard »

I am running Unreal 3.2 with Anope services. I have setup the ircd config and Anope with the same passwords for the services (copy/pasted them to make sure there were no typos) and made sure my u:line block, link block and RemoteServer are correct. Pasted are the link areas with a basic password I've also tried.

From the Anope config:

Code: Select all

ServerName  "services.yellowdogclub.com"
RemoteServer    localhost 7000 "password"
From the Unreal config:

Code: Select all

link services.yellowdogclub.com
{
username *;
hostname *;
bind-ip *;
port 7000;
hub *;
password-connect “password”;
password-receive “password”;
class servers;
options {
};
};
/*
 *
 * NEW: ulines {}
 * OLD: U:Line
 * U-lines give servers more power/commands, this should ONLY be set
 * for services/stats servers and NEVER for normal UnrealIRCd servers!
 * Syntax is as follows:
 * ulines {
 *	(server to uline);
 *	(server to uline);
 *  [etc]
 * };
*/
ulines {
	services.yellowdogclub.com;
};

Code: Select all

-yellowdogclub.com- *** LocOps -- Link denied (Authentication failed [Bad password?]) [@127.0.0.1.2085] 
Jobe
Official supporter
Posts: 1180
Joined: Wed May 03, 2006 7:09 pm
Location: United Kingdom

Re: Anope Services with Unreal [Authentication Failed]

Post by Jobe »

Looking at what you pasted, it could be the "'s you used in unrealircd.conf, since theyre not the standard ones that UnrealIRCd expects.
Your IP: Image
Your Country: Image
BrownLeopard
Posts: 2
Joined: Tue Sep 08, 2009 4:57 pm

Re: Anope Services with Unreal [Authentication Failed]

Post by BrownLeopard »

Heh, I knew it'd be something so inane. I had been staring at those text files for almost 2 hours trying to look for a typo. Never even thought about the quotes. Thank you!
Locked