From 1895a725a18af3d805b51695da0b624c91ee6de2 Mon Sep 17 00:00:00 2001 From: acidvegas Date: Mon, 19 Jun 2023 16:42:26 -0400 Subject: [PATCH] Allow localhost more connections --- doc/conf/unrealircd.remote.conf | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/doc/conf/unrealircd.remote.conf b/doc/conf/unrealircd.remote.conf index b26bf17..f16aeba 100644 --- a/doc/conf/unrealircd.remote.conf +++ b/doc/conf/unrealircd.remote.conf @@ -19,11 +19,12 @@ alias ns { target nickserv; type services; } alias operserv { type services; } alias os { target operserv; type services; } -class clients { pingfreq 120; maxclients 100; sendq 1M; options { nofakelag; } } -class servers { pingfreq 120; maxclients 10; sendq 1M; connfreq 30; } +class clients { pingfreq 120; maxclients 100; sendq 1M; options { nofakelag; } } +class local { pingfreq 300; maxclients 1000; sendq 5M; options { nofakelagl } } +class servers { pingfreq 120; maxclients 10; sendq 1M; connfreq 30; } -allow { mask *; class clients; maxperip 2; global-maxperip 2; } -allow { mask 127.0.0.1; class clients; maxperip 100; global-maxperip 100; } +allow { mask *; class clients; maxperip 2; global-maxperip 2; } +allow { mask 127.0.0.1; class local; maxperip 1000; global-maxperip 1000; } listen { ip *; port 6660–6669; options { clientsonly; } } listen { ip *; port 7000; options { clientsonly; } }