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!
Problem....
Moderator: Supporters
Is the services server ulined? For example if you have this:
then make sure you also have this:
Code: Select all
link services.mynetwork.net {
Code: Select all
ulines {
services.mynetwork.net;
};
Computers are machines that cause trouble you wouldn't normally have if you wouldn't have a computer.
-
- Posts: 5
- Joined: Thu May 18, 2006 12:38 am
It should look like this -
In unrealircd.conf:
In services.conf (considering you're running anope):
See if there's anything that does not match your blocks.
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";
# ...................
};
Code: Select all
IRCDModule "unreal32"
# ...................
RemoteServer 1.2.3.4 6667 "services" # Replace with your ircd ip and port
# ...................
ServerName "services.yournetwork.org"
Computers are machines that cause trouble you wouldn't normally have if you wouldn't have a computer.
-
- Posts: 5
- Joined: Thu May 18, 2006 12:38 am