Page 1 of 1

Linking not working

Posted: Thu Nov 07, 2024 11:39 am
by Linux19
Trying to link but its getting reset by peer.

[Nov 07 11:18:26.173123 2024] Debug: Loading databases...
[Nov 07 11:18:26.173223 2024] DB_FLATFILE: Unable to open data/anope.db for reading!
[Nov 07 11:18:26.173243 2024] Debug: Databases loaded
[Nov 07 11:18:26.173809 2024] Debug: Attempting to connect to uplink #1 127.0.0.1 (127.0.0.1/7000) with protocol UnrealIRCd 4+
[Nov 07 11:18:26.173954 2024] Debug: Successfully connected to uplink #1 127.0.0.1:7000
[Nov 07 11:18:26.174081 2024] Debug: Sent: :00B PASS :*********
[Nov 07 11:18:26.174126 2024] Debug: Sent: :00B PROTOCTL NICKv2 VHP UMODE2 NICKIP SJOIN SJOIN2 SJ3 NOQUIT TKLEXT MLOCK SID MTAGS
[Nov 07 11:18:26.174171 2024] Debug: Sent: :00B PROTOCTL EAUTH=services.ZettaKnights.com,,,Anope-2.0.16
[Nov 07 11:18:26.174214 2024] Debug: Sent: :00B PROTOCTL SID=00B
[Nov 07 11:18:26.175185 2024] Debug: Sent: :00B SERVER services.ZettaKnights.com 1 :Services for Zetta IRC Networks
[Nov 07 11:18:36.057618 2024] Debug: Lost connection from uplink #1 (127.0.0.1:7000): Connection reset by peer
I have the same pass on both conf files, adding part of their blocks for u here
link services.ZettaKnights.com
{
incoming {
mask 127.0.0.1;
}
password "*******";

class servers;
}
ulines {
services.ZettaKnights.com;
}
And Anope side has this
define
{
name = "services.host"
value = "services.ZettaKnights.com"
}
uplink
{
host = "127.0.0.1"

ipv6 = no

ssl = no

port = 7000

password = "*****"
}
Any help is extremely appreciated <3

Re: Linking not working

Posted: Thu Nov 07, 2024 1:08 pm
by PeGaSuS
Do you have a listen block like the following, in your unrealircd.conf?

Code: Select all

listen {
	ip 127.0.0.1;
	port 7000;
	options {
		serversonly;
	}
}

Re: Linking not working

Posted: Fri Nov 08, 2024 12:33 pm
by Linux19
I have these blocks on unreal conf
listen {
ip *;
port 6667;
}

/* Standard IRC SSL/TLS port 6697 */
listen {
ip *;
port 6697;
options { tls; }
}

/* Special SSL/TLS servers-only port for linking */
listen {
ip *;
port 6900;
options { tls; serversonly; }
}

listen {
ip *;
port 7000;
options { tls; serversonly; }
}

Re: Linking not working

Posted: Fri Nov 08, 2024 1:24 pm
by CrazyCat
Remove the tls option in the listen 7000 (and fix it to 127.0.0.1 rather than to all IP)
You setted anope to not use ssl.

Code: Select all

listen {
   ip 127.0.0.1;
   port 7000;
   options { serversonly; }
} 

Re: Linking not working

Posted: Fri Nov 08, 2024 1:31 pm
by Linux19
Ah its working now, thanks a lot guys <3 <3