Linking not working

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

Post Reply
Linux19
Posts: 3
Joined: Thu Nov 07, 2024 11:27 am

Linking not working

Post 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
PeGaSuS
Official supporter
Posts: 108
Joined: Tue Jun 27, 2017 4:42 pm
Contact:

Re: Linking not working

Post 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;
	}
}
IRC Network: PTirc - GitHub: TehPeGaSuS - Help and support: #unreal-support
Linux19
Posts: 3
Joined: Thu Nov 07, 2024 11:27 am

Re: Linking not working

Post 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; }
}
CrazyCat
Posts: 241
Joined: Thu Apr 28, 2005 1:05 pm
Location: France
Contact:

Re: Linking not working

Post 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; }
} 
Linux19
Posts: 3
Joined: Thu Nov 07, 2024 11:27 am

Re: Linking not working

Post by Linux19 »

Ah its working now, thanks a lot guys <3 <3
Post Reply