mirror of
git://git.acid.vegas/unrealircd.git
synced 2024-11-14 12:06:41 +00:00
Allow localhost more connections
This commit is contained in:
parent
606c88f8c3
commit
1895a725a1
@ -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; } }
|
||||
|
Loading…
Reference in New Issue
Block a user