help please

This forum is for everyone having trouble with linking two UnrealIRCd servers

Moderator: Supporters

Locked
Tazmania
Posts: 2
Joined: Tue Mar 19, 2019 5:53 pm

help please

Post by Tazmania »

trying to config unrealircd on windows
I got 2 errors both at line 216
link:outgoing port is missing
error 2 link:password is missing

what am I missing in the setup ?
CrazyCat
Posts: 214
Joined: Thu Apr 28, 2005 1:05 pm
Location: France
Contact:

Re: help please

Post by CrazyCat »

Show us your link block. You may have forgot 2 lines...
Here is an example of link block:

Code: Select all

link target.my.net {
        incoming {
                mask 127.0.0.1;
        };
        outgoing {
                bind-ip *;
                hostname 127.0.0.1;
                port 7000; # You may have forget this
                options { };
        };
        password "elgiig8qNhgmlkKEMCtz7XETloZAybMdklWduLCeo9JE=" { spkifp; }; # And this too
        class servers;
};
Locked