Anope IRC Services

Please login or register.

Login with username, password and session length
Advanced search  

News:

Pages: [1]   Go Down

Author Topic: ERROR: missing password w/ Anope 2.0.1 and Unreal 3.2.10.4  (Read 5796 times)

0 Members and 1 Guest are viewing this topic.

Dash D. Rantic

  • Anope User
  • Offline Offline
  • Posts: 2
ERROR: missing password w/ Anope 2.0.1 and Unreal 3.2.10.4
« on: December 13, 2014, 07:19:35 PM »

Hi,

I'm getting a "missing password" error and Anope is not able to link to Unreal.  Been doing some searching and I believe I have my link blocks set up correctly, here's the output I am getting from "bin/services -support" however:

Code: [Select]
[Dec 13 18:23:17.064205 2014] Debug: Attempting to connect to uplink #1 127.0.0.1 (127.0.0.1), port 6667
[Dec 13 18:23:17.064529 2014] Debug: Successfully connected to uplink #1 127.0.0.1:6667
[Dec 13 18:23:17.064597 2014] Debug: Sent: :00B CAPAB START 1202
[Dec 13 18:23:17.064655 2014] Debug: Sent: :00B CAPAB CAPABILITIES :PROTOCOL=1202
[Dec 13 18:23:17.064711 2014] Debug: Sent: :00B CAPAB END
[Dec 13 18:23:17.064779 2014] Debug: Sent: :00B SERVER services.localhost.net MYPASSWORD 0 00B :Services for Ravaged Universe IRC Network
[Dec 13 18:23:17.065256 2014] Debug: Received: :ravageduniverse.net NOTICE AUTH :*** Looking up your hostname...
[Dec 13 18:23:17.065941 2014] Debug: unexpected non-user source ravageduniverse.net for NOTICE
[Dec 13 18:23:17.066006 2014] Debug: Received: :ravageduniverse.net NOTICE AUTH :*** Found your hostname (cached)
[Dec 13 18:23:17.066067 2014] Debug: unexpected non-user source ravageduniverse.net for NOTICE
[Dec 13 18:23:17.066237 2014] Debug: Received: :ravageduniverse.net 451 CAPAB :You have not registered
[Dec 13 18:23:17.066307 2014] Debug: unknown message from server (:ravageduniverse.net 451 CAPAB :You have not registered)
[Dec 13 18:23:17.066365 2014] Debug: Received: :ravageduniverse.net 451 CAPAB :You have not registered
[Dec 13 18:23:17.066424 2014] Debug: unknown message from server (:ravageduniverse.net 451 CAPAB :You have not registered)
[Dec 13 18:23:17.066478 2014] Debug: Received: :ravageduniverse.net 451 CAPAB :You have not registered
[Dec 13 18:23:17.066536 2014] Debug: unknown message from server (:ravageduniverse.net 451 CAPAB :You have not registered)
[Dec 13 18:23:17.066591 2014] Debug: Received: ERROR :Missing password
[Dec 13 18:23:17.066648 2014] Debug: ERROR: Missing password
[Dec 13 18:23:17.066703 2014] Debug: Received: ERROR :Closing Link: [127.0.0.1] (Missing password)
[Dec 13 18:23:17.066759 2014] Debug: ERROR: Closing Link: [127.0.0.1] (Missing password)
[Dec 13 18:23:17.067619 2014] Debug: Received ERROR from uplink: Closing Link: [127.0.0.1] (Missing password)

Uplink block:
Code: [Select]
uplink
{
        /*
         * The IP or hostname of the IRC server you wish to connect Services to.
         * Usually, you will want to connect Services over 127.0.0.1 (aka localhost).
         *
         * NOTE: On some shell providers, this will not be an option.
         */
        host = "127.0.0.1"

        /*
         * Enable if Services should connect using IPv6.
         */
        ipv6 = no

        /*
         * Enable if Services should connect using SSL.
         * You must have an SSL module loaded for this to work.
         */
        #ssl = yes

        /*
         * The port to connect to.
         * The IRCd *MUST* be configured to listen on this port, and to accept
         * server connections.
         *
         * Refer to your IRCd documentation for how this is to be done.
         */
        port = 7070

        /*
         * The password to send to the IRC server for authentication.
         * This must match the link block on your IRCd.
         *
         * Refer to your IRCd documentation for more information on link blocks.
         */
        password = "MYPASSWORD"
}



on the Unreal side of things:

Code: [Select]
listen  *:7070
{
        options
        {
                serversonly;
        };
};

link            services.localhost.net
{
        username        *;
        hostname        127.0.0.1;
        bind-ip         *;
        port            *;
        hub             *;
        password-connect "MYPASSWORD";
        password-receive "MYPASSWORD";
        class           servers;
};

ulines {
        services.localhost.net;
};

Any thoughts as to what I might be missing?  Thanks!

-Dash
Logged

Charles Kingsley

  • Contributor
  • *
  • Offline Offline
  • Posts: 1405
Re: ERROR: missing password w/ Anope 2.0.1 and Unreal 3.2.10.4
« Reply #1 on: December 13, 2014, 07:21:06 PM »

Have you told services.conf to use unreal instead of the default inspircd protocol module?
Logged

Dash D. Rantic

  • Anope User
  • Offline Offline
  • Posts: 2
Re: ERROR: missing password w/ Anope 2.0.1 and Unreal 3.2.10.4
« Reply #2 on: December 13, 2014, 07:24:17 PM »

...dang, thought I had checked that.  Yes, that was it.  Thank you!

-Dash
Logged

Charles Kingsley

  • Contributor
  • *
  • Offline Offline
  • Posts: 1405
Re: ERROR: missing password w/ Anope 2.0.1 and Unreal 3.2.10.4
« Reply #3 on: December 13, 2014, 07:26:04 PM »

No worries.
Logged
Pages: [1]   Go Up