Page 1 of 1

Linking anope 2.0.13 and Unrealircd 6.1.1.1

Posted: Fri Jun 30, 2023 5:33 am
by wzion
hi guys , hope you all do good.
when i try to connect latest anope to , new 6.1 unrealircd , connection always refused , connects but drops , authentication error. and there is a page says
says passwords not same type on each sides. i really did not understand what it means.
i made my own trick , installed old 5 unrealircd , connected. and upgrated to 6 , no problems. my problem solved. reporting in (:
loves

Re: Linking anope 2.0.13 and Unrealircd 6.1.1.1

Posted: Mon Jul 03, 2023 4:05 am
by dktmb
Hi wzion,

(this post more for potentially people with this error as you've resolved yours)


In the conf' files, one on unreal side and the other on anope, you have to configure the link block.

An example for the unreal's conf file :

Code: Select all

link services.example.com
{
        incoming {
                mask ip 127.0.0.1;
        }
        password "your-password-must-be-the-same";
        class servers;
}
And the Anope's side :

Code: Select all

uplink
{
        host = "127.0.0.1"
        ipv6 = no
        ssl = no
        port = xxxx
        password = "your-password-must-be-the-same";
}
The passwords must be the same on the both sides.
More explanations and details here : https://www.unrealircd.org/docs/Linking ... with_anope and/or on the Anope's website.

Hope it will help :)