Page 1 of 1
Problem....
Posted: Thu May 18, 2006 12:42 am
by master2004134
Okay, I was able to install and configure (after 3 DAYS!) UnrealIRCD and Anope so they detect each other. However, every single time I get Authentication Failed when Anope tries to connect to the server. I know I have the passwords exact on both unrealircd.conf and services.conf, so I don't know the other cause. I even tried 12345 as a password to no avail....
Any ideas? I'm so close to running my own server!
Posted: Thu May 18, 2006 4:29 am
by Grunt
Is the services server ulined? For example if you have this:
then make sure you also have this:
Code: Select all
ulines {
services.mynetwork.net;
};
Posted: Thu May 18, 2006 10:21 am
by master2004134
Yes, it is ulined, that was one of the first things I checked....
Im stumped.....
Posted: Thu May 18, 2006 1:09 pm
by Grunt
It should look like this -
In unrealircd.conf:
Code: Select all
link services.yournetwork.org {
username *;
hostname 1.2.3.4; // Your service server IP
port 2006;
bind-ip *;
password-connect "services";
password-receive "services";
class servers;
};
# ...................
ulines {
services.yournetwork.org;
};
# ...................
set {
# ...................
services-server "services.yournetwork.org";
# ...................
};
In services.conf (considering you're running anope):
Code: Select all
IRCDModule "unreal32"
# ...................
RemoteServer 1.2.3.4 6667 "services" # Replace with your ircd ip and port
# ...................
ServerName "services.yournetwork.org"
See if there's anything that does not match your blocks.
Posted: Thu May 18, 2006 5:51 pm
by master2004134
I feel stupid....
The IRCDModule wasn't Unreal32, it was Hybrid, from when I was trying another server....
Anyways, thanks! It works now!
