Anope (LATEST) Proper LINK Block

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
d22552000
Posts: 6
Joined: Mon Nov 12, 2007 6:39 am

Anope (LATEST) Proper LINK Block

Post by d22552000 »

Well , I run ANOPE with -fork -debug and I get this:

Code: Select all

[Nov 11 22:23:42 2007] Anope 1.7.19 (1247) (ircd protocol: UnrealIRCd 3.2+) starting up
[Nov 11 22:23:42 2007] ms_rsend requested unload...
[Nov 11 22:23:42 2007] debug: trying to load core module [ms_rsend]
[Nov 11 22:23:42 2007] debug: status: [6][Module Error, Error during load time or module returned MOD_STOP]

[Nov 11 22:23:43 2007] os_info: Loading configuration directives...
[Nov 11 22:23:43 2007] os_info: OSInfoDBName is not defined in Services configuration file, using default os_info.db

[Nov 11 22:23:44 2007] Error: Your IRCD's link block may not setup correctly, please check unrealircd.conf
[Nov 11 22:23:44 2007] Error: Your IRCD's link block may not setup correctly, please check unrealircd.conf
[Nov 11 22:23:44 2007] Read error from server: No such file or directory (error
num: 2)
I don't even know what to put in my link block... but I have this:

Code: Select all

link            damon.zapto.org
{
    username    *;
    hostname     localhost;
    bind-ip     *;
    port         7029;
    hub             *;
    password-connect "LiNk";
    password-receive "LiNk";
    class           servers;
        options {
            /* Note: You should not use autoconnect when linking services */
            /* autoconnect; */
            zip;
        };
};
My information:

Damon.Zapto.Org is a DIRECT DNS of my ip address. It redirects all ports.

..

WHAT DO I PUT IN MY LINK BLOCK? (ANOPE is on localhost)
d22552000
Posts: 6
Joined: Mon Nov 12, 2007 6:39 am

Re: Anope (LATEST) Proper LINK Block

Post by d22552000 »

ok now , after lots of fiddling...

console output:

Code: Select all

[Nov 11 23:05:06 2007] Error: Your IRCD's link block may not setup correctly, pl
ease check unrealircd.conf
[Nov 11 23:05:06 2007] Error: Your IRCD's link block may not setup correctly, pl
ease check unrealircd.conf
[Nov 11 23:05:06 2007] Read error from server: No such file or directory (error
num: 2)
MY LINK BLOCK:

Code: Select all

link              localhost
{
   username *;
   hostname 127.0.0.1;
   bind-ip *;
   port 7000;
   password-connect PASSWORD;
   password-receive PASSWORD;
   hub *;
   class          servers;
};
MY SERVICES.CONF INFO:

Code: Select all

RemoteServer 127.0.0.1 6667 "PASSWORD"
Why do I sitll get the errors ? please reply!
Jobe
Official supporter
Posts: 1180
Joined: Wed May 03, 2006 7:09 pm
Location: United Kingdom

Re: Anope (LATEST) Proper LINK Block

Post by Jobe »

Can we see the errors sent as server notices from the IRCd please? (will require you to /oper first)
Your IP: Image
Your Country: Image
d22552000
Posts: 6
Joined: Mon Nov 12, 2007 6:39 am

Re: Anope (LATEST) Proper LINK Block

Post by d22552000 »

I gave up on anope and am using IRCSERVICES, (other thread)
SNU
Posts: 19
Joined: Sun Aug 05, 2007 5:30 pm

Re: Anope (LATEST) Proper LINK Block

Post by SNU »

You configured in your unreal configuration to listen on port 7000
in your services.conf you configured connecting to 6667. In the first example you gave us, you had option "zip" enabled which also wouldn't have worked.
Locked