Problem....

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
master2004134
Posts: 5
Joined: Thu May 18, 2006 12:38 am

Problem....

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

Post by Grunt »

Is the services server ulined? For example if you have this:

Code: Select all

link services.mynetwork.net {
then make sure you also have this:

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.
master2004134
Posts: 5
Joined: Thu May 18, 2006 12:38 am

Post by master2004134 »

Yes, it is ulined, that was one of the first things I checked....

Im stumped.....
Grunt
Posts: 159
Joined: Mon Jan 09, 2006 7:31 pm
Contact:

Post 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.
Computers are machines that cause trouble you wouldn't normally have if you wouldn't have a computer.
master2004134
Posts: 5
Joined: Thu May 18, 2006 12:38 am

Post by master2004134 »

I feel stupid....

The IRCDModule wasn't Unreal32, it was Hybrid, from when I was trying another server.... :oops:

Anyways, thanks! It works now! :D
Locked